diff --git a/examples/1.9.x/client-android/java/account/create-anonymous-session.md b/examples/1.9.x/client-android/java/account/create-anonymous-session.md index a48b8ea0c..5ac978c4d 100644 --- a/examples/1.9.x/client-android/java/account/create-anonymous-session.md +++ b/examples/1.9.x/client-android/java/account/create-anonymous-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-email-password-session.md b/examples/1.9.x/client-android/java/account/create-email-password-session.md index be91e8ef3..6c5e213e8 100644 --- a/examples/1.9.x/client-android/java/account/create-email-password-session.md +++ b/examples/1.9.x/client-android/java/account/create-email-password-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-email-token.md b/examples/1.9.x/client-android/java/account/create-email-token.md index d1acde230..9ee14e995 100644 --- a/examples/1.9.x/client-android/java/account/create-email-token.md +++ b/examples/1.9.x/client-android/java/account/create-email-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-email-verification.md b/examples/1.9.x/client-android/java/account/create-email-verification.md index c7f559a87..d8c21f1eb 100644 --- a/examples/1.9.x/client-android/java/account/create-email-verification.md +++ b/examples/1.9.x/client-android/java/account/create-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-jwt.md b/examples/1.9.x/client-android/java/account/create-jwt.md index f05bbcaf6..13d964437 100644 --- a/examples/1.9.x/client-android/java/account/create-jwt.md +++ b/examples/1.9.x/client-android/java/account/create-jwt.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-magic-url-token.md b/examples/1.9.x/client-android/java/account/create-magic-url-token.md index 6a18e65cc..ffec4faa9 100644 --- a/examples/1.9.x/client-android/java/account/create-magic-url-token.md +++ b/examples/1.9.x/client-android/java/account/create-magic-url-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-mfa-authenticator.md b/examples/1.9.x/client-android/java/account/create-mfa-authenticator.md index 404e04209..32ddc2836 100644 --- a/examples/1.9.x/client-android/java/account/create-mfa-authenticator.md +++ b/examples/1.9.x/client-android/java/account/create-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.AuthenticatorType; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-mfa-challenge.md b/examples/1.9.x/client-android/java/account/create-mfa-challenge.md index 2cb46fdc0..08bc8dcd8 100644 --- a/examples/1.9.x/client-android/java/account/create-mfa-challenge.md +++ b/examples/1.9.x/client-android/java/account/create-mfa-challenge.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.AuthenticationFactor; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-mfa-recovery-codes.md b/examples/1.9.x/client-android/java/account/create-mfa-recovery-codes.md index e97714c6f..d967a08d1 100644 --- a/examples/1.9.x/client-android/java/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/client-android/java/account/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-o-auth-2-session.md b/examples/1.9.x/client-android/java/account/create-o-auth-2-session.md index b34bcf76c..b2cb2fad7 100644 --- a/examples/1.9.x/client-android/java/account/create-o-auth-2-session.md +++ b/examples/1.9.x/client-android/java/account/create-o-auth-2-session.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.OAuthProvider; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-o-auth-2-token.md b/examples/1.9.x/client-android/java/account/create-o-auth-2-token.md index a69666549..654b8d680 100644 --- a/examples/1.9.x/client-android/java/account/create-o-auth-2-token.md +++ b/examples/1.9.x/client-android/java/account/create-o-auth-2-token.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.OAuthProvider; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-phone-token.md b/examples/1.9.x/client-android/java/account/create-phone-token.md index 0808373d2..710a6b0c8 100644 --- a/examples/1.9.x/client-android/java/account/create-phone-token.md +++ b/examples/1.9.x/client-android/java/account/create-phone-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-phone-verification.md b/examples/1.9.x/client-android/java/account/create-phone-verification.md index fa6bf74c3..87367eb52 100644 --- a/examples/1.9.x/client-android/java/account/create-phone-verification.md +++ b/examples/1.9.x/client-android/java/account/create-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-push-target.md b/examples/1.9.x/client-android/java/account/create-push-target.md index 6842e5ba7..8cd57202e 100644 --- a/examples/1.9.x/client-android/java/account/create-push-target.md +++ b/examples/1.9.x/client-android/java/account/create-push-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-recovery.md b/examples/1.9.x/client-android/java/account/create-recovery.md index 5647bac48..fbacfccd9 100644 --- a/examples/1.9.x/client-android/java/account/create-recovery.md +++ b/examples/1.9.x/client-android/java/account/create-recovery.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-session.md b/examples/1.9.x/client-android/java/account/create-session.md index e8bb63e28..6dd1e8238 100644 --- a/examples/1.9.x/client-android/java/account/create-session.md +++ b/examples/1.9.x/client-android/java/account/create-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create-verification.md b/examples/1.9.x/client-android/java/account/create-verification.md index ab3d39396..8fd0db80d 100644 --- a/examples/1.9.x/client-android/java/account/create-verification.md +++ b/examples/1.9.x/client-android/java/account/create-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/create.md b/examples/1.9.x/client-android/java/account/create.md index 333b1f36f..9157328f0 100644 --- a/examples/1.9.x/client-android/java/account/create.md +++ b/examples/1.9.x/client-android/java/account/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/delete-identity.md b/examples/1.9.x/client-android/java/account/delete-identity.md index 807f11a3b..fd843ff57 100644 --- a/examples/1.9.x/client-android/java/account/delete-identity.md +++ b/examples/1.9.x/client-android/java/account/delete-identity.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/delete-mfa-authenticator.md b/examples/1.9.x/client-android/java/account/delete-mfa-authenticator.md index d04093399..cd4a43a24 100644 --- a/examples/1.9.x/client-android/java/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/client-android/java/account/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.AuthenticatorType; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/delete-push-target.md b/examples/1.9.x/client-android/java/account/delete-push-target.md index 75afef203..1ac74dbca 100644 --- a/examples/1.9.x/client-android/java/account/delete-push-target.md +++ b/examples/1.9.x/client-android/java/account/delete-push-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/delete-session.md b/examples/1.9.x/client-android/java/account/delete-session.md index 6536a7d7a..ba05222a9 100644 --- a/examples/1.9.x/client-android/java/account/delete-session.md +++ b/examples/1.9.x/client-android/java/account/delete-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/delete-sessions.md b/examples/1.9.x/client-android/java/account/delete-sessions.md index 391d701b0..72b023e71 100644 --- a/examples/1.9.x/client-android/java/account/delete-sessions.md +++ b/examples/1.9.x/client-android/java/account/delete-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/get-mfa-recovery-codes.md b/examples/1.9.x/client-android/java/account/get-mfa-recovery-codes.md index 5aa0df203..4934c6901 100644 --- a/examples/1.9.x/client-android/java/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/client-android/java/account/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/get-prefs.md b/examples/1.9.x/client-android/java/account/get-prefs.md index 8c08a8470..2478d0b3c 100644 --- a/examples/1.9.x/client-android/java/account/get-prefs.md +++ b/examples/1.9.x/client-android/java/account/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/get-session.md b/examples/1.9.x/client-android/java/account/get-session.md index a499beaec..dae1b1803 100644 --- a/examples/1.9.x/client-android/java/account/get-session.md +++ b/examples/1.9.x/client-android/java/account/get-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/get.md b/examples/1.9.x/client-android/java/account/get.md index 6d649b991..813c031cf 100644 --- a/examples/1.9.x/client-android/java/account/get.md +++ b/examples/1.9.x/client-android/java/account/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/list-identities.md b/examples/1.9.x/client-android/java/account/list-identities.md index 78848d43f..aa8a1ec3c 100644 --- a/examples/1.9.x/client-android/java/account/list-identities.md +++ b/examples/1.9.x/client-android/java/account/list-identities.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/list-logs.md b/examples/1.9.x/client-android/java/account/list-logs.md index e4114920b..a56b254be 100644 --- a/examples/1.9.x/client-android/java/account/list-logs.md +++ b/examples/1.9.x/client-android/java/account/list-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/list-mfa-factors.md b/examples/1.9.x/client-android/java/account/list-mfa-factors.md index 869701ddb..02a925c13 100644 --- a/examples/1.9.x/client-android/java/account/list-mfa-factors.md +++ b/examples/1.9.x/client-android/java/account/list-mfa-factors.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/list-sessions.md b/examples/1.9.x/client-android/java/account/list-sessions.md index 44b453f5d..f3f5fea99 100644 --- a/examples/1.9.x/client-android/java/account/list-sessions.md +++ b/examples/1.9.x/client-android/java/account/list-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-email-verification.md b/examples/1.9.x/client-android/java/account/update-email-verification.md index f3563cfc2..a8ef7818d 100644 --- a/examples/1.9.x/client-android/java/account/update-email-verification.md +++ b/examples/1.9.x/client-android/java/account/update-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-email.md b/examples/1.9.x/client-android/java/account/update-email.md index d9a421488..b0fda651d 100644 --- a/examples/1.9.x/client-android/java/account/update-email.md +++ b/examples/1.9.x/client-android/java/account/update-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-magic-url-session.md b/examples/1.9.x/client-android/java/account/update-magic-url-session.md index 666d0b015..98b42d0a5 100644 --- a/examples/1.9.x/client-android/java/account/update-magic-url-session.md +++ b/examples/1.9.x/client-android/java/account/update-magic-url-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-mfa-authenticator.md b/examples/1.9.x/client-android/java/account/update-mfa-authenticator.md index 492a12bd9..0603bcff5 100644 --- a/examples/1.9.x/client-android/java/account/update-mfa-authenticator.md +++ b/examples/1.9.x/client-android/java/account/update-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.AuthenticatorType; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-mfa-challenge.md b/examples/1.9.x/client-android/java/account/update-mfa-challenge.md index 857009ad4..eee0a7f85 100644 --- a/examples/1.9.x/client-android/java/account/update-mfa-challenge.md +++ b/examples/1.9.x/client-android/java/account/update-mfa-challenge.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-mfa-recovery-codes.md b/examples/1.9.x/client-android/java/account/update-mfa-recovery-codes.md index bf2818d50..b1f028772 100644 --- a/examples/1.9.x/client-android/java/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/client-android/java/account/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-mfa.md b/examples/1.9.x/client-android/java/account/update-mfa.md index c1937c0cc..87bf5fa02 100644 --- a/examples/1.9.x/client-android/java/account/update-mfa.md +++ b/examples/1.9.x/client-android/java/account/update-mfa.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-name.md b/examples/1.9.x/client-android/java/account/update-name.md index a64dd6ed2..4583f0718 100644 --- a/examples/1.9.x/client-android/java/account/update-name.md +++ b/examples/1.9.x/client-android/java/account/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-password.md b/examples/1.9.x/client-android/java/account/update-password.md index 075a869b1..dbee34d9d 100644 --- a/examples/1.9.x/client-android/java/account/update-password.md +++ b/examples/1.9.x/client-android/java/account/update-password.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-phone-session.md b/examples/1.9.x/client-android/java/account/update-phone-session.md index d15a5c49e..a90a20f8c 100644 --- a/examples/1.9.x/client-android/java/account/update-phone-session.md +++ b/examples/1.9.x/client-android/java/account/update-phone-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-phone-verification.md b/examples/1.9.x/client-android/java/account/update-phone-verification.md index 8f1b41533..263d23e2b 100644 --- a/examples/1.9.x/client-android/java/account/update-phone-verification.md +++ b/examples/1.9.x/client-android/java/account/update-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-phone.md b/examples/1.9.x/client-android/java/account/update-phone.md index da17d4b82..5123d4a15 100644 --- a/examples/1.9.x/client-android/java/account/update-phone.md +++ b/examples/1.9.x/client-android/java/account/update-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-prefs.md b/examples/1.9.x/client-android/java/account/update-prefs.md index 1996e6055..e421dbddb 100644 --- a/examples/1.9.x/client-android/java/account/update-prefs.md +++ b/examples/1.9.x/client-android/java/account/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-push-target.md b/examples/1.9.x/client-android/java/account/update-push-target.md index 67acc1bc5..ddf16ff52 100644 --- a/examples/1.9.x/client-android/java/account/update-push-target.md +++ b/examples/1.9.x/client-android/java/account/update-push-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-recovery.md b/examples/1.9.x/client-android/java/account/update-recovery.md index 2ea21c97b..69ce866cd 100644 --- a/examples/1.9.x/client-android/java/account/update-recovery.md +++ b/examples/1.9.x/client-android/java/account/update-recovery.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-session.md b/examples/1.9.x/client-android/java/account/update-session.md index 978d7a440..515c31353 100644 --- a/examples/1.9.x/client-android/java/account/update-session.md +++ b/examples/1.9.x/client-android/java/account/update-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-status.md b/examples/1.9.x/client-android/java/account/update-status.md index 308df1167..e5501bc1a 100644 --- a/examples/1.9.x/client-android/java/account/update-status.md +++ b/examples/1.9.x/client-android/java/account/update-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/account/update-verification.md b/examples/1.9.x/client-android/java/account/update-verification.md index e1819262d..c8bd49eb1 100644 --- a/examples/1.9.x/client-android/java/account/update-verification.md +++ b/examples/1.9.x/client-android/java/account/update-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Account account = new Account(client); diff --git a/examples/1.9.x/client-android/java/avatars/get-browser.md b/examples/1.9.x/client-android/java/avatars/get-browser.md index f107aee61..3c2e10a04 100644 --- a/examples/1.9.x/client-android/java/avatars/get-browser.md +++ b/examples/1.9.x/client-android/java/avatars/get-browser.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars; import io.appwrite.enums.Browser; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Avatars avatars = new Avatars(client); diff --git a/examples/1.9.x/client-android/java/avatars/get-credit-card.md b/examples/1.9.x/client-android/java/avatars/get-credit-card.md index 40fb5660e..5cf0b8b30 100644 --- a/examples/1.9.x/client-android/java/avatars/get-credit-card.md +++ b/examples/1.9.x/client-android/java/avatars/get-credit-card.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars; import io.appwrite.enums.CreditCard; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Avatars avatars = new Avatars(client); diff --git a/examples/1.9.x/client-android/java/avatars/get-favicon.md b/examples/1.9.x/client-android/java/avatars/get-favicon.md index 3427b59d3..b7da264cb 100644 --- a/examples/1.9.x/client-android/java/avatars/get-favicon.md +++ b/examples/1.9.x/client-android/java/avatars/get-favicon.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Avatars avatars = new Avatars(client); diff --git a/examples/1.9.x/client-android/java/avatars/get-flag.md b/examples/1.9.x/client-android/java/avatars/get-flag.md index 812282ff7..f38b69827 100644 --- a/examples/1.9.x/client-android/java/avatars/get-flag.md +++ b/examples/1.9.x/client-android/java/avatars/get-flag.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars; import io.appwrite.enums.Flag; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Avatars avatars = new Avatars(client); diff --git a/examples/1.9.x/client-android/java/avatars/get-image.md b/examples/1.9.x/client-android/java/avatars/get-image.md index 1289ec1f6..75ab54d7e 100644 --- a/examples/1.9.x/client-android/java/avatars/get-image.md +++ b/examples/1.9.x/client-android/java/avatars/get-image.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Avatars avatars = new Avatars(client); diff --git a/examples/1.9.x/client-android/java/avatars/get-initials.md b/examples/1.9.x/client-android/java/avatars/get-initials.md index 419ca5e5d..6d788fde7 100644 --- a/examples/1.9.x/client-android/java/avatars/get-initials.md +++ b/examples/1.9.x/client-android/java/avatars/get-initials.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Avatars avatars = new Avatars(client); diff --git a/examples/1.9.x/client-android/java/avatars/get-qr.md b/examples/1.9.x/client-android/java/avatars/get-qr.md index be4d11c37..c14b582f1 100644 --- a/examples/1.9.x/client-android/java/avatars/get-qr.md +++ b/examples/1.9.x/client-android/java/avatars/get-qr.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Avatars avatars = new Avatars(client); diff --git a/examples/1.9.x/client-android/java/avatars/get-screenshot.md b/examples/1.9.x/client-android/java/avatars/get-screenshot.md index 2f261c5fd..02d21f5ee 100644 --- a/examples/1.9.x/client-android/java/avatars/get-screenshot.md +++ b/examples/1.9.x/client-android/java/avatars/get-screenshot.md @@ -2,13 +2,13 @@ import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; -import io.appwrite.enums.Theme; +import io.appwrite.enums.BrowserTheme; import io.appwrite.enums.Timezone; import io.appwrite.enums.BrowserPermission; import io.appwrite.enums.ImageFormat; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Avatars avatars = new Avatars(client); @@ -22,7 +22,7 @@ avatars.getScreenshot( 1920, // viewportWidth (optional) 1080, // viewportHeight (optional) 2, // scale (optional) - Theme.LIGHT, // theme (optional) + BrowserTheme.LIGHT, // theme (optional) "Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15", // userAgent (optional) true, // fullpage (optional) "en-US", // locale (optional) diff --git a/examples/1.9.x/client-android/java/databases/create-document.md b/examples/1.9.x/client-android/java/databases/create-document.md index 44ff1d27b..5fc561d44 100644 --- a/examples/1.9.x/client-android/java/databases/create-document.md +++ b/examples/1.9.x/client-android/java/databases/create-document.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/create-operations.md b/examples/1.9.x/client-android/java/databases/create-operations.md index e7e0a7f56..4987ea703 100644 --- a/examples/1.9.x/client-android/java/databases/create-operations.md +++ b/examples/1.9.x/client-android/java/databases/create-operations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/create-transaction.md b/examples/1.9.x/client-android/java/databases/create-transaction.md index 253e9650b..f292e50f2 100644 --- a/examples/1.9.x/client-android/java/databases/create-transaction.md +++ b/examples/1.9.x/client-android/java/databases/create-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/decrement-document-attribute.md b/examples/1.9.x/client-android/java/databases/decrement-document-attribute.md index 2c881a6a8..6a38a0243 100644 --- a/examples/1.9.x/client-android/java/databases/decrement-document-attribute.md +++ b/examples/1.9.x/client-android/java/databases/decrement-document-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/delete-document.md b/examples/1.9.x/client-android/java/databases/delete-document.md index a1a0e11b5..cfbe4f3fd 100644 --- a/examples/1.9.x/client-android/java/databases/delete-document.md +++ b/examples/1.9.x/client-android/java/databases/delete-document.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/delete-transaction.md b/examples/1.9.x/client-android/java/databases/delete-transaction.md index e6f8ee203..aed78143e 100644 --- a/examples/1.9.x/client-android/java/databases/delete-transaction.md +++ b/examples/1.9.x/client-android/java/databases/delete-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/get-document.md b/examples/1.9.x/client-android/java/databases/get-document.md index cb3d6bb9f..bc9737b76 100644 --- a/examples/1.9.x/client-android/java/databases/get-document.md +++ b/examples/1.9.x/client-android/java/databases/get-document.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/get-transaction.md b/examples/1.9.x/client-android/java/databases/get-transaction.md index 812dcc21f..425174f42 100644 --- a/examples/1.9.x/client-android/java/databases/get-transaction.md +++ b/examples/1.9.x/client-android/java/databases/get-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/increment-document-attribute.md b/examples/1.9.x/client-android/java/databases/increment-document-attribute.md index 38ab4fa3e..0380cd53f 100644 --- a/examples/1.9.x/client-android/java/databases/increment-document-attribute.md +++ b/examples/1.9.x/client-android/java/databases/increment-document-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/list-documents.md b/examples/1.9.x/client-android/java/databases/list-documents.md index 7edbec36d..639bb9019 100644 --- a/examples/1.9.x/client-android/java/databases/list-documents.md +++ b/examples/1.9.x/client-android/java/databases/list-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/list-transactions.md b/examples/1.9.x/client-android/java/databases/list-transactions.md index 73bdb0506..d6c47ed90 100644 --- a/examples/1.9.x/client-android/java/databases/list-transactions.md +++ b/examples/1.9.x/client-android/java/databases/list-transactions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/update-document.md b/examples/1.9.x/client-android/java/databases/update-document.md index fc9dae293..f72f918a2 100644 --- a/examples/1.9.x/client-android/java/databases/update-document.md +++ b/examples/1.9.x/client-android/java/databases/update-document.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/update-transaction.md b/examples/1.9.x/client-android/java/databases/update-transaction.md index 6260ebc2a..73219e328 100644 --- a/examples/1.9.x/client-android/java/databases/update-transaction.md +++ b/examples/1.9.x/client-android/java/databases/update-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/databases/upsert-document.md b/examples/1.9.x/client-android/java/databases/upsert-document.md index f69223cf3..a3ddce5aa 100644 --- a/examples/1.9.x/client-android/java/databases/upsert-document.md +++ b/examples/1.9.x/client-android/java/databases/upsert-document.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Databases; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Databases databases = new Databases(client); diff --git a/examples/1.9.x/client-android/java/functions/create-execution.md b/examples/1.9.x/client-android/java/functions/create-execution.md index 14e1a5c4a..f253bb573 100644 --- a/examples/1.9.x/client-android/java/functions/create-execution.md +++ b/examples/1.9.x/client-android/java/functions/create-execution.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions; import io.appwrite.enums.ExecutionMethod; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Functions functions = new Functions(client); diff --git a/examples/1.9.x/client-android/java/functions/get-execution.md b/examples/1.9.x/client-android/java/functions/get-execution.md index 276f048cc..8c1d4d283 100644 --- a/examples/1.9.x/client-android/java/functions/get-execution.md +++ b/examples/1.9.x/client-android/java/functions/get-execution.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Functions functions = new Functions(client); diff --git a/examples/1.9.x/client-android/java/functions/list-executions.md b/examples/1.9.x/client-android/java/functions/list-executions.md index d1244a515..5335b6c22 100644 --- a/examples/1.9.x/client-android/java/functions/list-executions.md +++ b/examples/1.9.x/client-android/java/functions/list-executions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Functions functions = new Functions(client); diff --git a/examples/1.9.x/client-android/java/graphql/mutation.md b/examples/1.9.x/client-android/java/graphql/mutation.md index 0e932f14c..51cfeb6fb 100644 --- a/examples/1.9.x/client-android/java/graphql/mutation.md +++ b/examples/1.9.x/client-android/java/graphql/mutation.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Graphql; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Graphql graphql = new Graphql(client); diff --git a/examples/1.9.x/client-android/java/graphql/query.md b/examples/1.9.x/client-android/java/graphql/query.md index 17d19ee1e..e888c785c 100644 --- a/examples/1.9.x/client-android/java/graphql/query.md +++ b/examples/1.9.x/client-android/java/graphql/query.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Graphql; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Graphql graphql = new Graphql(client); diff --git a/examples/1.9.x/client-android/java/locale/get.md b/examples/1.9.x/client-android/java/locale/get.md index 2416447b7..73d2fd482 100644 --- a/examples/1.9.x/client-android/java/locale/get.md +++ b/examples/1.9.x/client-android/java/locale/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Locale locale = new Locale(client); diff --git a/examples/1.9.x/client-android/java/locale/list-codes.md b/examples/1.9.x/client-android/java/locale/list-codes.md index c27f9ef2b..03b88fc90 100644 --- a/examples/1.9.x/client-android/java/locale/list-codes.md +++ b/examples/1.9.x/client-android/java/locale/list-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Locale locale = new Locale(client); diff --git a/examples/1.9.x/client-android/java/locale/list-continents.md b/examples/1.9.x/client-android/java/locale/list-continents.md index 64debed3b..d54edd9b2 100644 --- a/examples/1.9.x/client-android/java/locale/list-continents.md +++ b/examples/1.9.x/client-android/java/locale/list-continents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Locale locale = new Locale(client); diff --git a/examples/1.9.x/client-android/java/locale/list-countries-eu.md b/examples/1.9.x/client-android/java/locale/list-countries-eu.md index 768cc906a..f66e3605e 100644 --- a/examples/1.9.x/client-android/java/locale/list-countries-eu.md +++ b/examples/1.9.x/client-android/java/locale/list-countries-eu.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Locale locale = new Locale(client); diff --git a/examples/1.9.x/client-android/java/locale/list-countries-phones.md b/examples/1.9.x/client-android/java/locale/list-countries-phones.md index 90622f1a0..d719e9d16 100644 --- a/examples/1.9.x/client-android/java/locale/list-countries-phones.md +++ b/examples/1.9.x/client-android/java/locale/list-countries-phones.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Locale locale = new Locale(client); diff --git a/examples/1.9.x/client-android/java/locale/list-countries.md b/examples/1.9.x/client-android/java/locale/list-countries.md index 0ba921277..c49fdf72d 100644 --- a/examples/1.9.x/client-android/java/locale/list-countries.md +++ b/examples/1.9.x/client-android/java/locale/list-countries.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Locale locale = new Locale(client); diff --git a/examples/1.9.x/client-android/java/locale/list-currencies.md b/examples/1.9.x/client-android/java/locale/list-currencies.md index 10b53124e..a42216109 100644 --- a/examples/1.9.x/client-android/java/locale/list-currencies.md +++ b/examples/1.9.x/client-android/java/locale/list-currencies.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Locale locale = new Locale(client); diff --git a/examples/1.9.x/client-android/java/locale/list-languages.md b/examples/1.9.x/client-android/java/locale/list-languages.md index 35687ab6c..0a992d7b0 100644 --- a/examples/1.9.x/client-android/java/locale/list-languages.md +++ b/examples/1.9.x/client-android/java/locale/list-languages.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Locale locale = new Locale(client); diff --git a/examples/1.9.x/client-android/java/messaging/create-subscriber.md b/examples/1.9.x/client-android/java/messaging/create-subscriber.md index be1bfc579..8d3f251fb 100644 --- a/examples/1.9.x/client-android/java/messaging/create-subscriber.md +++ b/examples/1.9.x/client-android/java/messaging/create-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Messaging messaging = new Messaging(client); diff --git a/examples/1.9.x/client-android/java/messaging/delete-subscriber.md b/examples/1.9.x/client-android/java/messaging/delete-subscriber.md index c8c089f4a..94a49e96a 100644 --- a/examples/1.9.x/client-android/java/messaging/delete-subscriber.md +++ b/examples/1.9.x/client-android/java/messaging/delete-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Messaging messaging = new Messaging(client); diff --git a/examples/1.9.x/client-android/java/presences/delete.md b/examples/1.9.x/client-android/java/presences/delete.md index 04dace36f..ae9d7eabb 100644 --- a/examples/1.9.x/client-android/java/presences/delete.md +++ b/examples/1.9.x/client-android/java/presences/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Presences; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Presences presences = new Presences(client); diff --git a/examples/1.9.x/client-android/java/presences/get.md b/examples/1.9.x/client-android/java/presences/get.md index 8417a5664..fe6b50587 100644 --- a/examples/1.9.x/client-android/java/presences/get.md +++ b/examples/1.9.x/client-android/java/presences/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Presences; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Presences presences = new Presences(client); diff --git a/examples/1.9.x/client-android/java/presences/list.md b/examples/1.9.x/client-android/java/presences/list.md index e23f49a2e..88ca7820e 100644 --- a/examples/1.9.x/client-android/java/presences/list.md +++ b/examples/1.9.x/client-android/java/presences/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Presences; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Presences presences = new Presences(client); diff --git a/examples/1.9.x/client-android/java/presences/update.md b/examples/1.9.x/client-android/java/presences/update.md index b38a10f04..54bdf12e3 100644 --- a/examples/1.9.x/client-android/java/presences/update.md +++ b/examples/1.9.x/client-android/java/presences/update.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Presences; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Presences presences = new Presences(client); diff --git a/examples/1.9.x/client-android/java/presences/upsert.md b/examples/1.9.x/client-android/java/presences/upsert.md index 3e1ef96bd..b2c445799 100644 --- a/examples/1.9.x/client-android/java/presences/upsert.md +++ b/examples/1.9.x/client-android/java/presences/upsert.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Presences; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Presences presences = new Presences(client); diff --git a/examples/1.9.x/client-android/java/storage/create-file.md b/examples/1.9.x/client-android/java/storage/create-file.md index 3b73523bf..dccb12eb4 100644 --- a/examples/1.9.x/client-android/java/storage/create-file.md +++ b/examples/1.9.x/client-android/java/storage/create-file.md @@ -7,7 +7,7 @@ import io.appwrite.Role; import io.appwrite.services.Storage; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Storage storage = new Storage(client); diff --git a/examples/1.9.x/client-android/java/storage/delete-file.md b/examples/1.9.x/client-android/java/storage/delete-file.md index fdd9e8ba5..6a801b878 100644 --- a/examples/1.9.x/client-android/java/storage/delete-file.md +++ b/examples/1.9.x/client-android/java/storage/delete-file.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Storage storage = new Storage(client); diff --git a/examples/1.9.x/client-android/java/storage/get-file-download.md b/examples/1.9.x/client-android/java/storage/get-file-download.md index 91d91b7d0..2ab9adbd5 100644 --- a/examples/1.9.x/client-android/java/storage/get-file-download.md +++ b/examples/1.9.x/client-android/java/storage/get-file-download.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Storage storage = new Storage(client); diff --git a/examples/1.9.x/client-android/java/storage/get-file-preview.md b/examples/1.9.x/client-android/java/storage/get-file-preview.md index 9355dc68a..301b546d8 100644 --- a/examples/1.9.x/client-android/java/storage/get-file-preview.md +++ b/examples/1.9.x/client-android/java/storage/get-file-preview.md @@ -6,7 +6,7 @@ import io.appwrite.enums.ImageGravity; import io.appwrite.enums.ImageFormat; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Storage storage = new Storage(client); diff --git a/examples/1.9.x/client-android/java/storage/get-file-view.md b/examples/1.9.x/client-android/java/storage/get-file-view.md index 66762c2b6..5c4f6f640 100644 --- a/examples/1.9.x/client-android/java/storage/get-file-view.md +++ b/examples/1.9.x/client-android/java/storage/get-file-view.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Storage storage = new Storage(client); diff --git a/examples/1.9.x/client-android/java/storage/get-file.md b/examples/1.9.x/client-android/java/storage/get-file.md index 173626577..871b63d06 100644 --- a/examples/1.9.x/client-android/java/storage/get-file.md +++ b/examples/1.9.x/client-android/java/storage/get-file.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Storage storage = new Storage(client); diff --git a/examples/1.9.x/client-android/java/storage/list-files.md b/examples/1.9.x/client-android/java/storage/list-files.md index 3b4288ffd..9e82a27f0 100644 --- a/examples/1.9.x/client-android/java/storage/list-files.md +++ b/examples/1.9.x/client-android/java/storage/list-files.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Storage storage = new Storage(client); diff --git a/examples/1.9.x/client-android/java/storage/update-file.md b/examples/1.9.x/client-android/java/storage/update-file.md index a8ff797d7..9fc9537ba 100644 --- a/examples/1.9.x/client-android/java/storage/update-file.md +++ b/examples/1.9.x/client-android/java/storage/update-file.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Storage; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Storage storage = new Storage(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/create-operations.md b/examples/1.9.x/client-android/java/tablesdb/create-operations.md index 8ab0f41f7..e904af2c0 100644 --- a/examples/1.9.x/client-android/java/tablesdb/create-operations.md +++ b/examples/1.9.x/client-android/java/tablesdb/create-operations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/create-row.md b/examples/1.9.x/client-android/java/tablesdb/create-row.md index 772a4e079..0073fb300 100644 --- a/examples/1.9.x/client-android/java/tablesdb/create-row.md +++ b/examples/1.9.x/client-android/java/tablesdb/create-row.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/create-transaction.md b/examples/1.9.x/client-android/java/tablesdb/create-transaction.md index abf0aba1e..fa3a6fa4d 100644 --- a/examples/1.9.x/client-android/java/tablesdb/create-transaction.md +++ b/examples/1.9.x/client-android/java/tablesdb/create-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/decrement-row-column.md b/examples/1.9.x/client-android/java/tablesdb/decrement-row-column.md index 50225726c..c268ffc94 100644 --- a/examples/1.9.x/client-android/java/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/client-android/java/tablesdb/decrement-row-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/delete-row.md b/examples/1.9.x/client-android/java/tablesdb/delete-row.md index 146f97f95..a977d277d 100644 --- a/examples/1.9.x/client-android/java/tablesdb/delete-row.md +++ b/examples/1.9.x/client-android/java/tablesdb/delete-row.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/delete-transaction.md b/examples/1.9.x/client-android/java/tablesdb/delete-transaction.md index aa6498623..0c3778f67 100644 --- a/examples/1.9.x/client-android/java/tablesdb/delete-transaction.md +++ b/examples/1.9.x/client-android/java/tablesdb/delete-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/get-row.md b/examples/1.9.x/client-android/java/tablesdb/get-row.md index df07780e3..734d57b2f 100644 --- a/examples/1.9.x/client-android/java/tablesdb/get-row.md +++ b/examples/1.9.x/client-android/java/tablesdb/get-row.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/get-transaction.md b/examples/1.9.x/client-android/java/tablesdb/get-transaction.md index 086c9f171..5463d9f26 100644 --- a/examples/1.9.x/client-android/java/tablesdb/get-transaction.md +++ b/examples/1.9.x/client-android/java/tablesdb/get-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/increment-row-column.md b/examples/1.9.x/client-android/java/tablesdb/increment-row-column.md index 1cad78570..7b7eb3d80 100644 --- a/examples/1.9.x/client-android/java/tablesdb/increment-row-column.md +++ b/examples/1.9.x/client-android/java/tablesdb/increment-row-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/list-rows.md b/examples/1.9.x/client-android/java/tablesdb/list-rows.md index 6ab5489d4..e4c51e84a 100644 --- a/examples/1.9.x/client-android/java/tablesdb/list-rows.md +++ b/examples/1.9.x/client-android/java/tablesdb/list-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/list-transactions.md b/examples/1.9.x/client-android/java/tablesdb/list-transactions.md index 81c41237d..14c20527e 100644 --- a/examples/1.9.x/client-android/java/tablesdb/list-transactions.md +++ b/examples/1.9.x/client-android/java/tablesdb/list-transactions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/update-row.md b/examples/1.9.x/client-android/java/tablesdb/update-row.md index 96cb1b9e8..255a88b9a 100644 --- a/examples/1.9.x/client-android/java/tablesdb/update-row.md +++ b/examples/1.9.x/client-android/java/tablesdb/update-row.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/update-transaction.md b/examples/1.9.x/client-android/java/tablesdb/update-transaction.md index ef6783e0d..a407b165b 100644 --- a/examples/1.9.x/client-android/java/tablesdb/update-transaction.md +++ b/examples/1.9.x/client-android/java/tablesdb/update-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/tablesdb/upsert-row.md b/examples/1.9.x/client-android/java/tablesdb/upsert-row.md index e4d7228e9..c14196ad8 100644 --- a/examples/1.9.x/client-android/java/tablesdb/upsert-row.md +++ b/examples/1.9.x/client-android/java/tablesdb/upsert-row.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.TablesDB; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID TablesDB tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-android/java/teams/create-membership.md b/examples/1.9.x/client-android/java/teams/create-membership.md index 8ec9e0fab..27dece620 100644 --- a/examples/1.9.x/client-android/java/teams/create-membership.md +++ b/examples/1.9.x/client-android/java/teams/create-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/create.md b/examples/1.9.x/client-android/java/teams/create.md index b31554cee..ea9b8410f 100644 --- a/examples/1.9.x/client-android/java/teams/create.md +++ b/examples/1.9.x/client-android/java/teams/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/delete-membership.md b/examples/1.9.x/client-android/java/teams/delete-membership.md index 8680f1271..c9e7542cd 100644 --- a/examples/1.9.x/client-android/java/teams/delete-membership.md +++ b/examples/1.9.x/client-android/java/teams/delete-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/delete.md b/examples/1.9.x/client-android/java/teams/delete.md index 2055157f7..72c32a90a 100644 --- a/examples/1.9.x/client-android/java/teams/delete.md +++ b/examples/1.9.x/client-android/java/teams/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/get-membership.md b/examples/1.9.x/client-android/java/teams/get-membership.md index 04f90637f..bc35f3467 100644 --- a/examples/1.9.x/client-android/java/teams/get-membership.md +++ b/examples/1.9.x/client-android/java/teams/get-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/get-prefs.md b/examples/1.9.x/client-android/java/teams/get-prefs.md index ff7dc4264..55fd61ac9 100644 --- a/examples/1.9.x/client-android/java/teams/get-prefs.md +++ b/examples/1.9.x/client-android/java/teams/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/get.md b/examples/1.9.x/client-android/java/teams/get.md index cfa9242e1..342d516ad 100644 --- a/examples/1.9.x/client-android/java/teams/get.md +++ b/examples/1.9.x/client-android/java/teams/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/list-memberships.md b/examples/1.9.x/client-android/java/teams/list-memberships.md index ed9b27448..14608c001 100644 --- a/examples/1.9.x/client-android/java/teams/list-memberships.md +++ b/examples/1.9.x/client-android/java/teams/list-memberships.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/list.md b/examples/1.9.x/client-android/java/teams/list.md index 07acaf8d2..d5371d2ea 100644 --- a/examples/1.9.x/client-android/java/teams/list.md +++ b/examples/1.9.x/client-android/java/teams/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/update-membership-status.md b/examples/1.9.x/client-android/java/teams/update-membership-status.md index bcb46d819..74ac26a6e 100644 --- a/examples/1.9.x/client-android/java/teams/update-membership-status.md +++ b/examples/1.9.x/client-android/java/teams/update-membership-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/update-membership.md b/examples/1.9.x/client-android/java/teams/update-membership.md index c2a0b980c..a86e4d025 100644 --- a/examples/1.9.x/client-android/java/teams/update-membership.md +++ b/examples/1.9.x/client-android/java/teams/update-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/update-name.md b/examples/1.9.x/client-android/java/teams/update-name.md index 6a49b27c2..6888a2d10 100644 --- a/examples/1.9.x/client-android/java/teams/update-name.md +++ b/examples/1.9.x/client-android/java/teams/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/java/teams/update-prefs.md b/examples/1.9.x/client-android/java/teams/update-prefs.md index bedb83b3d..5e8834167 100644 --- a/examples/1.9.x/client-android/java/teams/update-prefs.md +++ b/examples/1.9.x/client-android/java/teams/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject(""); // Your project ID Teams teams = new Teams(client); diff --git a/examples/1.9.x/client-android/kotlin/account/create-anonymous-session.md b/examples/1.9.x/client-android/kotlin/account/create-anonymous-session.md index 0cc36e1f6..4e932a8f6 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-anonymous-session.md +++ b/examples/1.9.x/client-android/kotlin/account/create-anonymous-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-email-password-session.md b/examples/1.9.x/client-android/kotlin/account/create-email-password-session.md index 6100e4834..0f174bbb6 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-email-password-session.md +++ b/examples/1.9.x/client-android/kotlin/account/create-email-password-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-email-token.md b/examples/1.9.x/client-android/kotlin/account/create-email-token.md index 01dda3d64..4e6925cda 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-email-token.md +++ b/examples/1.9.x/client-android/kotlin/account/create-email-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-email-verification.md b/examples/1.9.x/client-android/kotlin/account/create-email-verification.md index 2a0d00e97..e06e2ecbd 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-email-verification.md +++ b/examples/1.9.x/client-android/kotlin/account/create-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-jwt.md b/examples/1.9.x/client-android/kotlin/account/create-jwt.md index 79d7b0993..cdf7eefcc 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-jwt.md +++ b/examples/1.9.x/client-android/kotlin/account/create-jwt.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-magic-url-token.md b/examples/1.9.x/client-android/kotlin/account/create-magic-url-token.md index 62904044f..4e84b643b 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-magic-url-token.md +++ b/examples/1.9.x/client-android/kotlin/account/create-magic-url-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-mfa-authenticator.md b/examples/1.9.x/client-android/kotlin/account/create-mfa-authenticator.md index 132bf749e..245e52f16 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-mfa-authenticator.md +++ b/examples/1.9.x/client-android/kotlin/account/create-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.AuthenticatorType val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-mfa-challenge.md b/examples/1.9.x/client-android/kotlin/account/create-mfa-challenge.md index 92206faba..fc304c4ce 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-mfa-challenge.md +++ b/examples/1.9.x/client-android/kotlin/account/create-mfa-challenge.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.AuthenticationFactor val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-mfa-recovery-codes.md b/examples/1.9.x/client-android/kotlin/account/create-mfa-recovery-codes.md index d91a3eb39..f12c6afe4 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/client-android/kotlin/account/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-o-auth-2-session.md b/examples/1.9.x/client-android/kotlin/account/create-o-auth-2-session.md index cde941c78..66822c8a1 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-o-auth-2-session.md +++ b/examples/1.9.x/client-android/kotlin/account/create-o-auth-2-session.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.OAuthProvider val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-o-auth-2-token.md b/examples/1.9.x/client-android/kotlin/account/create-o-auth-2-token.md index 5e9056494..bde0c5be1 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-o-auth-2-token.md +++ b/examples/1.9.x/client-android/kotlin/account/create-o-auth-2-token.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.OAuthProvider val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-phone-token.md b/examples/1.9.x/client-android/kotlin/account/create-phone-token.md index 3a61bac79..d91f80815 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-phone-token.md +++ b/examples/1.9.x/client-android/kotlin/account/create-phone-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-phone-verification.md b/examples/1.9.x/client-android/kotlin/account/create-phone-verification.md index 77705b8fd..397a2d51e 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-phone-verification.md +++ b/examples/1.9.x/client-android/kotlin/account/create-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-push-target.md b/examples/1.9.x/client-android/kotlin/account/create-push-target.md index 22d64cb9e..3ca5fe3c8 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-push-target.md +++ b/examples/1.9.x/client-android/kotlin/account/create-push-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-recovery.md b/examples/1.9.x/client-android/kotlin/account/create-recovery.md index 1a89ccccb..24c2691f3 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-recovery.md +++ b/examples/1.9.x/client-android/kotlin/account/create-recovery.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-session.md b/examples/1.9.x/client-android/kotlin/account/create-session.md index b86495cfb..41ce8e4ab 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-session.md +++ b/examples/1.9.x/client-android/kotlin/account/create-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create-verification.md b/examples/1.9.x/client-android/kotlin/account/create-verification.md index d8ad1bc51..1ab8df8ef 100644 --- a/examples/1.9.x/client-android/kotlin/account/create-verification.md +++ b/examples/1.9.x/client-android/kotlin/account/create-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/create.md b/examples/1.9.x/client-android/kotlin/account/create.md index 9f80913a3..ac8d6fa5f 100644 --- a/examples/1.9.x/client-android/kotlin/account/create.md +++ b/examples/1.9.x/client-android/kotlin/account/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/delete-identity.md b/examples/1.9.x/client-android/kotlin/account/delete-identity.md index 7efc1d7c9..7282c7622 100644 --- a/examples/1.9.x/client-android/kotlin/account/delete-identity.md +++ b/examples/1.9.x/client-android/kotlin/account/delete-identity.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/delete-mfa-authenticator.md b/examples/1.9.x/client-android/kotlin/account/delete-mfa-authenticator.md index 77a68a075..4e46496fb 100644 --- a/examples/1.9.x/client-android/kotlin/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/client-android/kotlin/account/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.AuthenticatorType val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/delete-push-target.md b/examples/1.9.x/client-android/kotlin/account/delete-push-target.md index 6fce7b7c3..630efa542 100644 --- a/examples/1.9.x/client-android/kotlin/account/delete-push-target.md +++ b/examples/1.9.x/client-android/kotlin/account/delete-push-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/delete-session.md b/examples/1.9.x/client-android/kotlin/account/delete-session.md index de9381177..cf02577df 100644 --- a/examples/1.9.x/client-android/kotlin/account/delete-session.md +++ b/examples/1.9.x/client-android/kotlin/account/delete-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/delete-sessions.md b/examples/1.9.x/client-android/kotlin/account/delete-sessions.md index ff404dbc1..9dfd07872 100644 --- a/examples/1.9.x/client-android/kotlin/account/delete-sessions.md +++ b/examples/1.9.x/client-android/kotlin/account/delete-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/get-mfa-recovery-codes.md b/examples/1.9.x/client-android/kotlin/account/get-mfa-recovery-codes.md index 5d9e1e4a6..227e3539a 100644 --- a/examples/1.9.x/client-android/kotlin/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/client-android/kotlin/account/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/get-prefs.md b/examples/1.9.x/client-android/kotlin/account/get-prefs.md index 8e963ca82..26fab4b7b 100644 --- a/examples/1.9.x/client-android/kotlin/account/get-prefs.md +++ b/examples/1.9.x/client-android/kotlin/account/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/get-session.md b/examples/1.9.x/client-android/kotlin/account/get-session.md index 29bac94c2..a06c206fd 100644 --- a/examples/1.9.x/client-android/kotlin/account/get-session.md +++ b/examples/1.9.x/client-android/kotlin/account/get-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/get.md b/examples/1.9.x/client-android/kotlin/account/get.md index e2dfe542a..67fe3f403 100644 --- a/examples/1.9.x/client-android/kotlin/account/get.md +++ b/examples/1.9.x/client-android/kotlin/account/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/list-identities.md b/examples/1.9.x/client-android/kotlin/account/list-identities.md index 9037c0e68..3079c78e4 100644 --- a/examples/1.9.x/client-android/kotlin/account/list-identities.md +++ b/examples/1.9.x/client-android/kotlin/account/list-identities.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/list-logs.md b/examples/1.9.x/client-android/kotlin/account/list-logs.md index 0bccbf256..c27d27256 100644 --- a/examples/1.9.x/client-android/kotlin/account/list-logs.md +++ b/examples/1.9.x/client-android/kotlin/account/list-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/list-mfa-factors.md b/examples/1.9.x/client-android/kotlin/account/list-mfa-factors.md index b12f25c86..f5f97e2b5 100644 --- a/examples/1.9.x/client-android/kotlin/account/list-mfa-factors.md +++ b/examples/1.9.x/client-android/kotlin/account/list-mfa-factors.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/list-sessions.md b/examples/1.9.x/client-android/kotlin/account/list-sessions.md index 8c261a2d3..432d41737 100644 --- a/examples/1.9.x/client-android/kotlin/account/list-sessions.md +++ b/examples/1.9.x/client-android/kotlin/account/list-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-email-verification.md b/examples/1.9.x/client-android/kotlin/account/update-email-verification.md index cfc5d6714..cc83b29bd 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-email-verification.md +++ b/examples/1.9.x/client-android/kotlin/account/update-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-email.md b/examples/1.9.x/client-android/kotlin/account/update-email.md index dc4bcbf3b..d53ee6592 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-email.md +++ b/examples/1.9.x/client-android/kotlin/account/update-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-magic-url-session.md b/examples/1.9.x/client-android/kotlin/account/update-magic-url-session.md index d943ac6ad..c5bd6b9af 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-magic-url-session.md +++ b/examples/1.9.x/client-android/kotlin/account/update-magic-url-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-mfa-authenticator.md b/examples/1.9.x/client-android/kotlin/account/update-mfa-authenticator.md index 9befabe94..2a55c03aa 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-mfa-authenticator.md +++ b/examples/1.9.x/client-android/kotlin/account/update-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.AuthenticatorType val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-mfa-challenge.md b/examples/1.9.x/client-android/kotlin/account/update-mfa-challenge.md index 6f2e99c0f..eb6746807 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-mfa-challenge.md +++ b/examples/1.9.x/client-android/kotlin/account/update-mfa-challenge.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-mfa-recovery-codes.md b/examples/1.9.x/client-android/kotlin/account/update-mfa-recovery-codes.md index dfdbd95d8..555916a95 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/client-android/kotlin/account/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-mfa.md b/examples/1.9.x/client-android/kotlin/account/update-mfa.md index 6acd1e701..8de4c2dae 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-mfa.md +++ b/examples/1.9.x/client-android/kotlin/account/update-mfa.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-name.md b/examples/1.9.x/client-android/kotlin/account/update-name.md index ed40f240e..fcd739460 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-name.md +++ b/examples/1.9.x/client-android/kotlin/account/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-password.md b/examples/1.9.x/client-android/kotlin/account/update-password.md index ce9ae9049..cbf41b459 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-password.md +++ b/examples/1.9.x/client-android/kotlin/account/update-password.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-phone-session.md b/examples/1.9.x/client-android/kotlin/account/update-phone-session.md index ea5f25b58..1f2288804 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-phone-session.md +++ b/examples/1.9.x/client-android/kotlin/account/update-phone-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-phone-verification.md b/examples/1.9.x/client-android/kotlin/account/update-phone-verification.md index c68d213aa..62bf9fd5d 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-phone-verification.md +++ b/examples/1.9.x/client-android/kotlin/account/update-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-phone.md b/examples/1.9.x/client-android/kotlin/account/update-phone.md index b7e669b0b..61b3c56c5 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-phone.md +++ b/examples/1.9.x/client-android/kotlin/account/update-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-prefs.md b/examples/1.9.x/client-android/kotlin/account/update-prefs.md index 4444fb968..d58792576 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-prefs.md +++ b/examples/1.9.x/client-android/kotlin/account/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-push-target.md b/examples/1.9.x/client-android/kotlin/account/update-push-target.md index 0e16e2fe7..0e74ab5b8 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-push-target.md +++ b/examples/1.9.x/client-android/kotlin/account/update-push-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-recovery.md b/examples/1.9.x/client-android/kotlin/account/update-recovery.md index 8e16074e3..6c754aa81 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-recovery.md +++ b/examples/1.9.x/client-android/kotlin/account/update-recovery.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-session.md b/examples/1.9.x/client-android/kotlin/account/update-session.md index b29ece551..3601b0f83 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-session.md +++ b/examples/1.9.x/client-android/kotlin/account/update-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-status.md b/examples/1.9.x/client-android/kotlin/account/update-status.md index d22c9ce41..fafd739c9 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-status.md +++ b/examples/1.9.x/client-android/kotlin/account/update-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/account/update-verification.md b/examples/1.9.x/client-android/kotlin/account/update-verification.md index 1c4af79e8..01abcf7d3 100644 --- a/examples/1.9.x/client-android/kotlin/account/update-verification.md +++ b/examples/1.9.x/client-android/kotlin/account/update-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val account = Account(client) diff --git a/examples/1.9.x/client-android/kotlin/avatars/get-browser.md b/examples/1.9.x/client-android/kotlin/avatars/get-browser.md index 7c32ad2d9..5d191cc91 100644 --- a/examples/1.9.x/client-android/kotlin/avatars/get-browser.md +++ b/examples/1.9.x/client-android/kotlin/avatars/get-browser.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars import io.appwrite.enums.Browser val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val avatars = Avatars(client) diff --git a/examples/1.9.x/client-android/kotlin/avatars/get-credit-card.md b/examples/1.9.x/client-android/kotlin/avatars/get-credit-card.md index 54244acc9..56ab142a8 100644 --- a/examples/1.9.x/client-android/kotlin/avatars/get-credit-card.md +++ b/examples/1.9.x/client-android/kotlin/avatars/get-credit-card.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars import io.appwrite.enums.CreditCard val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val avatars = Avatars(client) diff --git a/examples/1.9.x/client-android/kotlin/avatars/get-favicon.md b/examples/1.9.x/client-android/kotlin/avatars/get-favicon.md index d55a0b424..a11c4186a 100644 --- a/examples/1.9.x/client-android/kotlin/avatars/get-favicon.md +++ b/examples/1.9.x/client-android/kotlin/avatars/get-favicon.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val avatars = Avatars(client) diff --git a/examples/1.9.x/client-android/kotlin/avatars/get-flag.md b/examples/1.9.x/client-android/kotlin/avatars/get-flag.md index c03ccb3f9..d58677c51 100644 --- a/examples/1.9.x/client-android/kotlin/avatars/get-flag.md +++ b/examples/1.9.x/client-android/kotlin/avatars/get-flag.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars import io.appwrite.enums.Flag val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val avatars = Avatars(client) diff --git a/examples/1.9.x/client-android/kotlin/avatars/get-image.md b/examples/1.9.x/client-android/kotlin/avatars/get-image.md index 4e22185de..6230a1284 100644 --- a/examples/1.9.x/client-android/kotlin/avatars/get-image.md +++ b/examples/1.9.x/client-android/kotlin/avatars/get-image.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val avatars = Avatars(client) diff --git a/examples/1.9.x/client-android/kotlin/avatars/get-initials.md b/examples/1.9.x/client-android/kotlin/avatars/get-initials.md index 1cb76a185..fe7a2e344 100644 --- a/examples/1.9.x/client-android/kotlin/avatars/get-initials.md +++ b/examples/1.9.x/client-android/kotlin/avatars/get-initials.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val avatars = Avatars(client) diff --git a/examples/1.9.x/client-android/kotlin/avatars/get-qr.md b/examples/1.9.x/client-android/kotlin/avatars/get-qr.md index e962ef309..0c37e4bf9 100644 --- a/examples/1.9.x/client-android/kotlin/avatars/get-qr.md +++ b/examples/1.9.x/client-android/kotlin/avatars/get-qr.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val avatars = Avatars(client) diff --git a/examples/1.9.x/client-android/kotlin/avatars/get-screenshot.md b/examples/1.9.x/client-android/kotlin/avatars/get-screenshot.md index 94551fdb5..4dbdbb2bf 100644 --- a/examples/1.9.x/client-android/kotlin/avatars/get-screenshot.md +++ b/examples/1.9.x/client-android/kotlin/avatars/get-screenshot.md @@ -2,13 +2,13 @@ import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars -import io.appwrite.enums.Theme +import io.appwrite.enums.BrowserTheme import io.appwrite.enums.Timezone import io.appwrite.enums.BrowserPermission import io.appwrite.enums.ImageFormat val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val avatars = Avatars(client) @@ -22,11 +22,11 @@ val result = avatars.getScreenshot( viewportWidth = 1920, // (optional) viewportHeight = 1080, // (optional) scale = 2, // (optional) - theme = theme.LIGHT, // (optional) + theme = BrowserTheme.LIGHT, // (optional) userAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15", // (optional) fullpage = true, // (optional) locale = "en-US", // (optional) - timezone = timezone.AFRICA_ABIDJAN, // (optional) + timezone = Timezone.AFRICA_ABIDJAN, // (optional) latitude = 37.7749, // (optional) longitude = -122.4194, // (optional) accuracy = 100, // (optional) diff --git a/examples/1.9.x/client-android/kotlin/databases/create-document.md b/examples/1.9.x/client-android/kotlin/databases/create-document.md index 7105df5c1..fe2a5b52a 100644 --- a/examples/1.9.x/client-android/kotlin/databases/create-document.md +++ b/examples/1.9.x/client-android/kotlin/databases/create-document.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/create-operations.md b/examples/1.9.x/client-android/kotlin/databases/create-operations.md index 3bd7ae5d5..5754b2af4 100644 --- a/examples/1.9.x/client-android/kotlin/databases/create-operations.md +++ b/examples/1.9.x/client-android/kotlin/databases/create-operations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/create-transaction.md b/examples/1.9.x/client-android/kotlin/databases/create-transaction.md index 59a3c12f6..67b87ce4d 100644 --- a/examples/1.9.x/client-android/kotlin/databases/create-transaction.md +++ b/examples/1.9.x/client-android/kotlin/databases/create-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/decrement-document-attribute.md b/examples/1.9.x/client-android/kotlin/databases/decrement-document-attribute.md index 9ca780fd9..c884da3a6 100644 --- a/examples/1.9.x/client-android/kotlin/databases/decrement-document-attribute.md +++ b/examples/1.9.x/client-android/kotlin/databases/decrement-document-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/delete-document.md b/examples/1.9.x/client-android/kotlin/databases/delete-document.md index c31bdb9fd..14b55e8e7 100644 --- a/examples/1.9.x/client-android/kotlin/databases/delete-document.md +++ b/examples/1.9.x/client-android/kotlin/databases/delete-document.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/delete-transaction.md b/examples/1.9.x/client-android/kotlin/databases/delete-transaction.md index 101bd8cda..6b11b4a27 100644 --- a/examples/1.9.x/client-android/kotlin/databases/delete-transaction.md +++ b/examples/1.9.x/client-android/kotlin/databases/delete-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/get-document.md b/examples/1.9.x/client-android/kotlin/databases/get-document.md index 5c54be0ca..1f145b3b2 100644 --- a/examples/1.9.x/client-android/kotlin/databases/get-document.md +++ b/examples/1.9.x/client-android/kotlin/databases/get-document.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/get-transaction.md b/examples/1.9.x/client-android/kotlin/databases/get-transaction.md index 2f08ad611..0a34ca167 100644 --- a/examples/1.9.x/client-android/kotlin/databases/get-transaction.md +++ b/examples/1.9.x/client-android/kotlin/databases/get-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/increment-document-attribute.md b/examples/1.9.x/client-android/kotlin/databases/increment-document-attribute.md index 20afc996d..036f416a3 100644 --- a/examples/1.9.x/client-android/kotlin/databases/increment-document-attribute.md +++ b/examples/1.9.x/client-android/kotlin/databases/increment-document-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/list-documents.md b/examples/1.9.x/client-android/kotlin/databases/list-documents.md index b42b7dd8a..9304d8718 100644 --- a/examples/1.9.x/client-android/kotlin/databases/list-documents.md +++ b/examples/1.9.x/client-android/kotlin/databases/list-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/list-transactions.md b/examples/1.9.x/client-android/kotlin/databases/list-transactions.md index 3cabd79f3..3899bffbd 100644 --- a/examples/1.9.x/client-android/kotlin/databases/list-transactions.md +++ b/examples/1.9.x/client-android/kotlin/databases/list-transactions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/update-document.md b/examples/1.9.x/client-android/kotlin/databases/update-document.md index 5c8a5e313..6164b21c3 100644 --- a/examples/1.9.x/client-android/kotlin/databases/update-document.md +++ b/examples/1.9.x/client-android/kotlin/databases/update-document.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/update-transaction.md b/examples/1.9.x/client-android/kotlin/databases/update-transaction.md index 88360b276..baea4b838 100644 --- a/examples/1.9.x/client-android/kotlin/databases/update-transaction.md +++ b/examples/1.9.x/client-android/kotlin/databases/update-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/databases/upsert-document.md b/examples/1.9.x/client-android/kotlin/databases/upsert-document.md index edecb8630..0a3b273b9 100644 --- a/examples/1.9.x/client-android/kotlin/databases/upsert-document.md +++ b/examples/1.9.x/client-android/kotlin/databases/upsert-document.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val databases = Databases(client) diff --git a/examples/1.9.x/client-android/kotlin/functions/create-execution.md b/examples/1.9.x/client-android/kotlin/functions/create-execution.md index 13654e65e..7a499137c 100644 --- a/examples/1.9.x/client-android/kotlin/functions/create-execution.md +++ b/examples/1.9.x/client-android/kotlin/functions/create-execution.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions import io.appwrite.enums.ExecutionMethod val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val functions = Functions(client) diff --git a/examples/1.9.x/client-android/kotlin/functions/get-execution.md b/examples/1.9.x/client-android/kotlin/functions/get-execution.md index c092909e9..0ab122150 100644 --- a/examples/1.9.x/client-android/kotlin/functions/get-execution.md +++ b/examples/1.9.x/client-android/kotlin/functions/get-execution.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val functions = Functions(client) diff --git a/examples/1.9.x/client-android/kotlin/functions/list-executions.md b/examples/1.9.x/client-android/kotlin/functions/list-executions.md index 5fb16f85a..0d2167801 100644 --- a/examples/1.9.x/client-android/kotlin/functions/list-executions.md +++ b/examples/1.9.x/client-android/kotlin/functions/list-executions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val functions = Functions(client) diff --git a/examples/1.9.x/client-android/kotlin/graphql/mutation.md b/examples/1.9.x/client-android/kotlin/graphql/mutation.md index 0cdb78e6d..f97ddd494 100644 --- a/examples/1.9.x/client-android/kotlin/graphql/mutation.md +++ b/examples/1.9.x/client-android/kotlin/graphql/mutation.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Graphql val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val graphql = Graphql(client) diff --git a/examples/1.9.x/client-android/kotlin/graphql/query.md b/examples/1.9.x/client-android/kotlin/graphql/query.md index 3359822a5..48ddcce31 100644 --- a/examples/1.9.x/client-android/kotlin/graphql/query.md +++ b/examples/1.9.x/client-android/kotlin/graphql/query.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Graphql val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val graphql = Graphql(client) diff --git a/examples/1.9.x/client-android/kotlin/locale/get.md b/examples/1.9.x/client-android/kotlin/locale/get.md index 151971612..723727805 100644 --- a/examples/1.9.x/client-android/kotlin/locale/get.md +++ b/examples/1.9.x/client-android/kotlin/locale/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val locale = Locale(client) diff --git a/examples/1.9.x/client-android/kotlin/locale/list-codes.md b/examples/1.9.x/client-android/kotlin/locale/list-codes.md index d70521444..729b19a02 100644 --- a/examples/1.9.x/client-android/kotlin/locale/list-codes.md +++ b/examples/1.9.x/client-android/kotlin/locale/list-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val locale = Locale(client) diff --git a/examples/1.9.x/client-android/kotlin/locale/list-continents.md b/examples/1.9.x/client-android/kotlin/locale/list-continents.md index 03e917e43..8b3e40840 100644 --- a/examples/1.9.x/client-android/kotlin/locale/list-continents.md +++ b/examples/1.9.x/client-android/kotlin/locale/list-continents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val locale = Locale(client) diff --git a/examples/1.9.x/client-android/kotlin/locale/list-countries-eu.md b/examples/1.9.x/client-android/kotlin/locale/list-countries-eu.md index a933ed85b..0e4a83583 100644 --- a/examples/1.9.x/client-android/kotlin/locale/list-countries-eu.md +++ b/examples/1.9.x/client-android/kotlin/locale/list-countries-eu.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val locale = Locale(client) diff --git a/examples/1.9.x/client-android/kotlin/locale/list-countries-phones.md b/examples/1.9.x/client-android/kotlin/locale/list-countries-phones.md index 8d4c7534e..fd0e2af67 100644 --- a/examples/1.9.x/client-android/kotlin/locale/list-countries-phones.md +++ b/examples/1.9.x/client-android/kotlin/locale/list-countries-phones.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val locale = Locale(client) diff --git a/examples/1.9.x/client-android/kotlin/locale/list-countries.md b/examples/1.9.x/client-android/kotlin/locale/list-countries.md index e67b5fe7c..1a3b99ee8 100644 --- a/examples/1.9.x/client-android/kotlin/locale/list-countries.md +++ b/examples/1.9.x/client-android/kotlin/locale/list-countries.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val locale = Locale(client) diff --git a/examples/1.9.x/client-android/kotlin/locale/list-currencies.md b/examples/1.9.x/client-android/kotlin/locale/list-currencies.md index fb0087d7c..8cff2ebf0 100644 --- a/examples/1.9.x/client-android/kotlin/locale/list-currencies.md +++ b/examples/1.9.x/client-android/kotlin/locale/list-currencies.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val locale = Locale(client) diff --git a/examples/1.9.x/client-android/kotlin/locale/list-languages.md b/examples/1.9.x/client-android/kotlin/locale/list-languages.md index 30fb65bf0..a8c01987e 100644 --- a/examples/1.9.x/client-android/kotlin/locale/list-languages.md +++ b/examples/1.9.x/client-android/kotlin/locale/list-languages.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val locale = Locale(client) diff --git a/examples/1.9.x/client-android/kotlin/messaging/create-subscriber.md b/examples/1.9.x/client-android/kotlin/messaging/create-subscriber.md index 09c28349f..476692503 100644 --- a/examples/1.9.x/client-android/kotlin/messaging/create-subscriber.md +++ b/examples/1.9.x/client-android/kotlin/messaging/create-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val messaging = Messaging(client) diff --git a/examples/1.9.x/client-android/kotlin/messaging/delete-subscriber.md b/examples/1.9.x/client-android/kotlin/messaging/delete-subscriber.md index 7247e1290..d1bef44b8 100644 --- a/examples/1.9.x/client-android/kotlin/messaging/delete-subscriber.md +++ b/examples/1.9.x/client-android/kotlin/messaging/delete-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val messaging = Messaging(client) diff --git a/examples/1.9.x/client-android/kotlin/presences/delete.md b/examples/1.9.x/client-android/kotlin/presences/delete.md index d74aae005..a315a4330 100644 --- a/examples/1.9.x/client-android/kotlin/presences/delete.md +++ b/examples/1.9.x/client-android/kotlin/presences/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Presences val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val presences = Presences(client) diff --git a/examples/1.9.x/client-android/kotlin/presences/get.md b/examples/1.9.x/client-android/kotlin/presences/get.md index c12a51821..875a8ba28 100644 --- a/examples/1.9.x/client-android/kotlin/presences/get.md +++ b/examples/1.9.x/client-android/kotlin/presences/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Presences val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val presences = Presences(client) diff --git a/examples/1.9.x/client-android/kotlin/presences/list.md b/examples/1.9.x/client-android/kotlin/presences/list.md index 6496a3e26..1232ec18e 100644 --- a/examples/1.9.x/client-android/kotlin/presences/list.md +++ b/examples/1.9.x/client-android/kotlin/presences/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Presences val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val presences = Presences(client) diff --git a/examples/1.9.x/client-android/kotlin/presences/update.md b/examples/1.9.x/client-android/kotlin/presences/update.md index c6626913a..309d29a29 100644 --- a/examples/1.9.x/client-android/kotlin/presences/update.md +++ b/examples/1.9.x/client-android/kotlin/presences/update.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val presences = Presences(client) diff --git a/examples/1.9.x/client-android/kotlin/presences/upsert.md b/examples/1.9.x/client-android/kotlin/presences/upsert.md index d868a1dd0..cf32dbe73 100644 --- a/examples/1.9.x/client-android/kotlin/presences/upsert.md +++ b/examples/1.9.x/client-android/kotlin/presences/upsert.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val presences = Presences(client) diff --git a/examples/1.9.x/client-android/kotlin/storage/create-file.md b/examples/1.9.x/client-android/kotlin/storage/create-file.md index df33a5a27..a7c369cad 100644 --- a/examples/1.9.x/client-android/kotlin/storage/create-file.md +++ b/examples/1.9.x/client-android/kotlin/storage/create-file.md @@ -7,7 +7,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val storage = Storage(client) diff --git a/examples/1.9.x/client-android/kotlin/storage/delete-file.md b/examples/1.9.x/client-android/kotlin/storage/delete-file.md index 831ea2b2c..2d5f61823 100644 --- a/examples/1.9.x/client-android/kotlin/storage/delete-file.md +++ b/examples/1.9.x/client-android/kotlin/storage/delete-file.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val storage = Storage(client) diff --git a/examples/1.9.x/client-android/kotlin/storage/get-file-download.md b/examples/1.9.x/client-android/kotlin/storage/get-file-download.md index d60b5fa4a..1e823b619 100644 --- a/examples/1.9.x/client-android/kotlin/storage/get-file-download.md +++ b/examples/1.9.x/client-android/kotlin/storage/get-file-download.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val storage = Storage(client) diff --git a/examples/1.9.x/client-android/kotlin/storage/get-file-preview.md b/examples/1.9.x/client-android/kotlin/storage/get-file-preview.md index 2bb8cffd8..ee0607da2 100644 --- a/examples/1.9.x/client-android/kotlin/storage/get-file-preview.md +++ b/examples/1.9.x/client-android/kotlin/storage/get-file-preview.md @@ -6,7 +6,7 @@ import io.appwrite.enums.ImageGravity import io.appwrite.enums.ImageFormat val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val storage = Storage(client) diff --git a/examples/1.9.x/client-android/kotlin/storage/get-file-view.md b/examples/1.9.x/client-android/kotlin/storage/get-file-view.md index 6e6e77f46..3f89ec0c7 100644 --- a/examples/1.9.x/client-android/kotlin/storage/get-file-view.md +++ b/examples/1.9.x/client-android/kotlin/storage/get-file-view.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val storage = Storage(client) diff --git a/examples/1.9.x/client-android/kotlin/storage/get-file.md b/examples/1.9.x/client-android/kotlin/storage/get-file.md index ac456abf5..4a78fe49f 100644 --- a/examples/1.9.x/client-android/kotlin/storage/get-file.md +++ b/examples/1.9.x/client-android/kotlin/storage/get-file.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val storage = Storage(client) diff --git a/examples/1.9.x/client-android/kotlin/storage/list-files.md b/examples/1.9.x/client-android/kotlin/storage/list-files.md index 7ad2ebeee..946bcadf5 100644 --- a/examples/1.9.x/client-android/kotlin/storage/list-files.md +++ b/examples/1.9.x/client-android/kotlin/storage/list-files.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val storage = Storage(client) diff --git a/examples/1.9.x/client-android/kotlin/storage/update-file.md b/examples/1.9.x/client-android/kotlin/storage/update-file.md index 532c815b8..6530eae8d 100644 --- a/examples/1.9.x/client-android/kotlin/storage/update-file.md +++ b/examples/1.9.x/client-android/kotlin/storage/update-file.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val storage = Storage(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/create-operations.md b/examples/1.9.x/client-android/kotlin/tablesdb/create-operations.md index 93c32c54a..551660654 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/create-operations.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/create-operations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/create-row.md b/examples/1.9.x/client-android/kotlin/tablesdb/create-row.md index e6e75051f..c3c443577 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/create-row.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/create-row.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/create-transaction.md b/examples/1.9.x/client-android/kotlin/tablesdb/create-transaction.md index dcf640c38..7329d3289 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/create-transaction.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/create-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/decrement-row-column.md b/examples/1.9.x/client-android/kotlin/tablesdb/decrement-row-column.md index 848eea979..a35349290 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/decrement-row-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/delete-row.md b/examples/1.9.x/client-android/kotlin/tablesdb/delete-row.md index 976a7f88f..9d206f8cc 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/delete-row.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/delete-row.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/delete-transaction.md b/examples/1.9.x/client-android/kotlin/tablesdb/delete-transaction.md index d3237744f..c0ae87f54 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/delete-transaction.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/delete-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/get-row.md b/examples/1.9.x/client-android/kotlin/tablesdb/get-row.md index e40856a3c..2845a70aa 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/get-row.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/get-row.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/get-transaction.md b/examples/1.9.x/client-android/kotlin/tablesdb/get-transaction.md index fd0e5ee61..d59827e6e 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/get-transaction.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/get-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/increment-row-column.md b/examples/1.9.x/client-android/kotlin/tablesdb/increment-row-column.md index 85c037919..8da6db9f7 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/increment-row-column.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/increment-row-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/list-rows.md b/examples/1.9.x/client-android/kotlin/tablesdb/list-rows.md index a428290a9..21dc9cd3e 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/list-rows.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/list-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/list-transactions.md b/examples/1.9.x/client-android/kotlin/tablesdb/list-transactions.md index 03c9d5b4a..56b778eec 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/list-transactions.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/list-transactions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/update-row.md b/examples/1.9.x/client-android/kotlin/tablesdb/update-row.md index fcba331bc..c40e11a31 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/update-row.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/update-row.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/update-transaction.md b/examples/1.9.x/client-android/kotlin/tablesdb/update-transaction.md index 4843e5b72..5db75bfd1 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/update-transaction.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/update-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/tablesdb/upsert-row.md b/examples/1.9.x/client-android/kotlin/tablesdb/upsert-row.md index d0b52793b..304a8130e 100644 --- a/examples/1.9.x/client-android/kotlin/tablesdb/upsert-row.md +++ b/examples/1.9.x/client-android/kotlin/tablesdb/upsert-row.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/create-membership.md b/examples/1.9.x/client-android/kotlin/teams/create-membership.md index e5289e645..fbcf7b378 100644 --- a/examples/1.9.x/client-android/kotlin/teams/create-membership.md +++ b/examples/1.9.x/client-android/kotlin/teams/create-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/create.md b/examples/1.9.x/client-android/kotlin/teams/create.md index 7b4bfcbc5..ead57a450 100644 --- a/examples/1.9.x/client-android/kotlin/teams/create.md +++ b/examples/1.9.x/client-android/kotlin/teams/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/delete-membership.md b/examples/1.9.x/client-android/kotlin/teams/delete-membership.md index 4c1cebeab..c6bda85cf 100644 --- a/examples/1.9.x/client-android/kotlin/teams/delete-membership.md +++ b/examples/1.9.x/client-android/kotlin/teams/delete-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/delete.md b/examples/1.9.x/client-android/kotlin/teams/delete.md index 03f319f87..788d1472c 100644 --- a/examples/1.9.x/client-android/kotlin/teams/delete.md +++ b/examples/1.9.x/client-android/kotlin/teams/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/get-membership.md b/examples/1.9.x/client-android/kotlin/teams/get-membership.md index cc85d6fb5..616c00cf1 100644 --- a/examples/1.9.x/client-android/kotlin/teams/get-membership.md +++ b/examples/1.9.x/client-android/kotlin/teams/get-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/get-prefs.md b/examples/1.9.x/client-android/kotlin/teams/get-prefs.md index 3fa7fb3f3..d4a7e3435 100644 --- a/examples/1.9.x/client-android/kotlin/teams/get-prefs.md +++ b/examples/1.9.x/client-android/kotlin/teams/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/get.md b/examples/1.9.x/client-android/kotlin/teams/get.md index a01167ca1..22905c2fd 100644 --- a/examples/1.9.x/client-android/kotlin/teams/get.md +++ b/examples/1.9.x/client-android/kotlin/teams/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/list-memberships.md b/examples/1.9.x/client-android/kotlin/teams/list-memberships.md index 438194247..f259c2620 100644 --- a/examples/1.9.x/client-android/kotlin/teams/list-memberships.md +++ b/examples/1.9.x/client-android/kotlin/teams/list-memberships.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/list.md b/examples/1.9.x/client-android/kotlin/teams/list.md index d38ba4743..d85a067c2 100644 --- a/examples/1.9.x/client-android/kotlin/teams/list.md +++ b/examples/1.9.x/client-android/kotlin/teams/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/update-membership-status.md b/examples/1.9.x/client-android/kotlin/teams/update-membership-status.md index cc4fb2fb6..023c6240c 100644 --- a/examples/1.9.x/client-android/kotlin/teams/update-membership-status.md +++ b/examples/1.9.x/client-android/kotlin/teams/update-membership-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/update-membership.md b/examples/1.9.x/client-android/kotlin/teams/update-membership.md index 6e721d4ec..5a87da1ec 100644 --- a/examples/1.9.x/client-android/kotlin/teams/update-membership.md +++ b/examples/1.9.x/client-android/kotlin/teams/update-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/update-name.md b/examples/1.9.x/client-android/kotlin/teams/update-name.md index 0248d2468..1f391c413 100644 --- a/examples/1.9.x/client-android/kotlin/teams/update-name.md +++ b/examples/1.9.x/client-android/kotlin/teams/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-android/kotlin/teams/update-prefs.md b/examples/1.9.x/client-android/kotlin/teams/update-prefs.md index fd6e44eb8..891da7751 100644 --- a/examples/1.9.x/client-android/kotlin/teams/update-prefs.md +++ b/examples/1.9.x/client-android/kotlin/teams/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client(context) - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID val teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-anonymous-session.md b/examples/1.9.x/client-apple/examples/account/create-anonymous-session.md index eeeb552a1..01c64c9b6 100644 --- a/examples/1.9.x/client-apple/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/client-apple/examples/account/create-anonymous-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-email-password-session.md b/examples/1.9.x/client-apple/examples/account/create-email-password-session.md index 7233b7399..9e1bc8c05 100644 --- a/examples/1.9.x/client-apple/examples/account/create-email-password-session.md +++ b/examples/1.9.x/client-apple/examples/account/create-email-password-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-email-token.md b/examples/1.9.x/client-apple/examples/account/create-email-token.md index eb21e9bc0..475aac7ee 100644 --- a/examples/1.9.x/client-apple/examples/account/create-email-token.md +++ b/examples/1.9.x/client-apple/examples/account/create-email-token.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-email-verification.md b/examples/1.9.x/client-apple/examples/account/create-email-verification.md index 841ddd68d..87a8cb1ad 100644 --- a/examples/1.9.x/client-apple/examples/account/create-email-verification.md +++ b/examples/1.9.x/client-apple/examples/account/create-email-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-jwt.md b/examples/1.9.x/client-apple/examples/account/create-jwt.md index 96c867f7f..c1896497a 100644 --- a/examples/1.9.x/client-apple/examples/account/create-jwt.md +++ b/examples/1.9.x/client-apple/examples/account/create-jwt.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-magic-url-token.md b/examples/1.9.x/client-apple/examples/account/create-magic-url-token.md index dd60fa939..90fa57864 100644 --- a/examples/1.9.x/client-apple/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/client-apple/examples/account/create-magic-url-token.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-mfa-authenticator.md b/examples/1.9.x/client-apple/examples/account/create-mfa-authenticator.md index b42fc7fdc..86145b055 100644 --- a/examples/1.9.x/client-apple/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/client-apple/examples/account/create-mfa-authenticator.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-mfa-challenge.md b/examples/1.9.x/client-apple/examples/account/create-mfa-challenge.md index dfb50487e..368379704 100644 --- a/examples/1.9.x/client-apple/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/client-apple/examples/account/create-mfa-challenge.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/client-apple/examples/account/create-mfa-recovery-codes.md index fb1b22de7..7f2e14f78 100644 --- a/examples/1.9.x/client-apple/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/client-apple/examples/account/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-o-auth-2-session.md b/examples/1.9.x/client-apple/examples/account/create-o-auth-2-session.md index 3552fda80..3d7242289 100644 --- a/examples/1.9.x/client-apple/examples/account/create-o-auth-2-session.md +++ b/examples/1.9.x/client-apple/examples/account/create-o-auth-2-session.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-o-auth-2-token.md b/examples/1.9.x/client-apple/examples/account/create-o-auth-2-token.md index 1a22fb32c..69b8ade7a 100644 --- a/examples/1.9.x/client-apple/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/client-apple/examples/account/create-o-auth-2-token.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-phone-token.md b/examples/1.9.x/client-apple/examples/account/create-phone-token.md index bdf53c43b..979d53749 100644 --- a/examples/1.9.x/client-apple/examples/account/create-phone-token.md +++ b/examples/1.9.x/client-apple/examples/account/create-phone-token.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-phone-verification.md b/examples/1.9.x/client-apple/examples/account/create-phone-verification.md index 1259af838..1febf4b6e 100644 --- a/examples/1.9.x/client-apple/examples/account/create-phone-verification.md +++ b/examples/1.9.x/client-apple/examples/account/create-phone-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-push-target.md b/examples/1.9.x/client-apple/examples/account/create-push-target.md index 2507d9660..6c2112256 100644 --- a/examples/1.9.x/client-apple/examples/account/create-push-target.md +++ b/examples/1.9.x/client-apple/examples/account/create-push-target.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-recovery.md b/examples/1.9.x/client-apple/examples/account/create-recovery.md index 3d2e2d1b4..d4e3488a4 100644 --- a/examples/1.9.x/client-apple/examples/account/create-recovery.md +++ b/examples/1.9.x/client-apple/examples/account/create-recovery.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-session.md b/examples/1.9.x/client-apple/examples/account/create-session.md index 1cec5939d..3f726b6e6 100644 --- a/examples/1.9.x/client-apple/examples/account/create-session.md +++ b/examples/1.9.x/client-apple/examples/account/create-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create-verification.md b/examples/1.9.x/client-apple/examples/account/create-verification.md index 054d7657c..b787dbd95 100644 --- a/examples/1.9.x/client-apple/examples/account/create-verification.md +++ b/examples/1.9.x/client-apple/examples/account/create-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/create.md b/examples/1.9.x/client-apple/examples/account/create.md index 6faa4daf8..53443793f 100644 --- a/examples/1.9.x/client-apple/examples/account/create.md +++ b/examples/1.9.x/client-apple/examples/account/create.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/delete-identity.md b/examples/1.9.x/client-apple/examples/account/delete-identity.md index 0e63ea0cf..5f9a47d5e 100644 --- a/examples/1.9.x/client-apple/examples/account/delete-identity.md +++ b/examples/1.9.x/client-apple/examples/account/delete-identity.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/client-apple/examples/account/delete-mfa-authenticator.md index e8ef91a81..12f1a03f5 100644 --- a/examples/1.9.x/client-apple/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/client-apple/examples/account/delete-mfa-authenticator.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/delete-push-target.md b/examples/1.9.x/client-apple/examples/account/delete-push-target.md index cf613b553..a2e2a6ca9 100644 --- a/examples/1.9.x/client-apple/examples/account/delete-push-target.md +++ b/examples/1.9.x/client-apple/examples/account/delete-push-target.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/delete-session.md b/examples/1.9.x/client-apple/examples/account/delete-session.md index 79e0aa2c6..924707449 100644 --- a/examples/1.9.x/client-apple/examples/account/delete-session.md +++ b/examples/1.9.x/client-apple/examples/account/delete-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/delete-sessions.md b/examples/1.9.x/client-apple/examples/account/delete-sessions.md index 7e524f2d6..3b3c5463f 100644 --- a/examples/1.9.x/client-apple/examples/account/delete-sessions.md +++ b/examples/1.9.x/client-apple/examples/account/delete-sessions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/client-apple/examples/account/get-mfa-recovery-codes.md index 31e9e5b88..a94d2b346 100644 --- a/examples/1.9.x/client-apple/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/client-apple/examples/account/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/get-prefs.md b/examples/1.9.x/client-apple/examples/account/get-prefs.md index 0235e0d8d..11cbba23d 100644 --- a/examples/1.9.x/client-apple/examples/account/get-prefs.md +++ b/examples/1.9.x/client-apple/examples/account/get-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/get-session.md b/examples/1.9.x/client-apple/examples/account/get-session.md index 8c22074a6..4ee08cf22 100644 --- a/examples/1.9.x/client-apple/examples/account/get-session.md +++ b/examples/1.9.x/client-apple/examples/account/get-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/get.md b/examples/1.9.x/client-apple/examples/account/get.md index 3ddbca44d..4009bf7fc 100644 --- a/examples/1.9.x/client-apple/examples/account/get.md +++ b/examples/1.9.x/client-apple/examples/account/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/list-identities.md b/examples/1.9.x/client-apple/examples/account/list-identities.md index eb5874c59..180449530 100644 --- a/examples/1.9.x/client-apple/examples/account/list-identities.md +++ b/examples/1.9.x/client-apple/examples/account/list-identities.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/list-logs.md b/examples/1.9.x/client-apple/examples/account/list-logs.md index a82fd503b..49caf388f 100644 --- a/examples/1.9.x/client-apple/examples/account/list-logs.md +++ b/examples/1.9.x/client-apple/examples/account/list-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/list-mfa-factors.md b/examples/1.9.x/client-apple/examples/account/list-mfa-factors.md index 534ccbe2b..7874538a6 100644 --- a/examples/1.9.x/client-apple/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/client-apple/examples/account/list-mfa-factors.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/list-sessions.md b/examples/1.9.x/client-apple/examples/account/list-sessions.md index 2932881f0..8539becff 100644 --- a/examples/1.9.x/client-apple/examples/account/list-sessions.md +++ b/examples/1.9.x/client-apple/examples/account/list-sessions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-email-verification.md b/examples/1.9.x/client-apple/examples/account/update-email-verification.md index 823cc4128..531eddb0e 100644 --- a/examples/1.9.x/client-apple/examples/account/update-email-verification.md +++ b/examples/1.9.x/client-apple/examples/account/update-email-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-email.md b/examples/1.9.x/client-apple/examples/account/update-email.md index f13a4d5f1..a6b1e574d 100644 --- a/examples/1.9.x/client-apple/examples/account/update-email.md +++ b/examples/1.9.x/client-apple/examples/account/update-email.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-magic-url-session.md b/examples/1.9.x/client-apple/examples/account/update-magic-url-session.md index c55827099..b2d9a0d61 100644 --- a/examples/1.9.x/client-apple/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/client-apple/examples/account/update-magic-url-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-mfa-authenticator.md b/examples/1.9.x/client-apple/examples/account/update-mfa-authenticator.md index 75c37f229..78306c597 100644 --- a/examples/1.9.x/client-apple/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/client-apple/examples/account/update-mfa-authenticator.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-mfa-challenge.md b/examples/1.9.x/client-apple/examples/account/update-mfa-challenge.md index 6bc6e47ab..70b74906b 100644 --- a/examples/1.9.x/client-apple/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/client-apple/examples/account/update-mfa-challenge.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/client-apple/examples/account/update-mfa-recovery-codes.md index 5445ab215..368718c7c 100644 --- a/examples/1.9.x/client-apple/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/client-apple/examples/account/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-mfa.md b/examples/1.9.x/client-apple/examples/account/update-mfa.md index 9a509efa9..22f1a4d77 100644 --- a/examples/1.9.x/client-apple/examples/account/update-mfa.md +++ b/examples/1.9.x/client-apple/examples/account/update-mfa.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-name.md b/examples/1.9.x/client-apple/examples/account/update-name.md index 72d0b7a26..ca288d9e4 100644 --- a/examples/1.9.x/client-apple/examples/account/update-name.md +++ b/examples/1.9.x/client-apple/examples/account/update-name.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-password.md b/examples/1.9.x/client-apple/examples/account/update-password.md index fe287d71c..026cbfd3a 100644 --- a/examples/1.9.x/client-apple/examples/account/update-password.md +++ b/examples/1.9.x/client-apple/examples/account/update-password.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-phone-session.md b/examples/1.9.x/client-apple/examples/account/update-phone-session.md index bc3ae963d..f9a29afe4 100644 --- a/examples/1.9.x/client-apple/examples/account/update-phone-session.md +++ b/examples/1.9.x/client-apple/examples/account/update-phone-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-phone-verification.md b/examples/1.9.x/client-apple/examples/account/update-phone-verification.md index 11f7f91ac..4bea5d64e 100644 --- a/examples/1.9.x/client-apple/examples/account/update-phone-verification.md +++ b/examples/1.9.x/client-apple/examples/account/update-phone-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-phone.md b/examples/1.9.x/client-apple/examples/account/update-phone.md index 098bb06b3..545cfc611 100644 --- a/examples/1.9.x/client-apple/examples/account/update-phone.md +++ b/examples/1.9.x/client-apple/examples/account/update-phone.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-prefs.md b/examples/1.9.x/client-apple/examples/account/update-prefs.md index 43ebb2461..d62deaa53 100644 --- a/examples/1.9.x/client-apple/examples/account/update-prefs.md +++ b/examples/1.9.x/client-apple/examples/account/update-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-push-target.md b/examples/1.9.x/client-apple/examples/account/update-push-target.md index 7b4ce8bd9..83c616ce7 100644 --- a/examples/1.9.x/client-apple/examples/account/update-push-target.md +++ b/examples/1.9.x/client-apple/examples/account/update-push-target.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-recovery.md b/examples/1.9.x/client-apple/examples/account/update-recovery.md index f0a43c505..b883f5923 100644 --- a/examples/1.9.x/client-apple/examples/account/update-recovery.md +++ b/examples/1.9.x/client-apple/examples/account/update-recovery.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-session.md b/examples/1.9.x/client-apple/examples/account/update-session.md index 2e9849b47..54193d9cd 100644 --- a/examples/1.9.x/client-apple/examples/account/update-session.md +++ b/examples/1.9.x/client-apple/examples/account/update-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-status.md b/examples/1.9.x/client-apple/examples/account/update-status.md index a6198d68f..d9c6daab1 100644 --- a/examples/1.9.x/client-apple/examples/account/update-status.md +++ b/examples/1.9.x/client-apple/examples/account/update-status.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/account/update-verification.md b/examples/1.9.x/client-apple/examples/account/update-verification.md index d4a251c5a..b189289e4 100644 --- a/examples/1.9.x/client-apple/examples/account/update-verification.md +++ b/examples/1.9.x/client-apple/examples/account/update-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let account = Account(client) diff --git a/examples/1.9.x/client-apple/examples/avatars/get-browser.md b/examples/1.9.x/client-apple/examples/avatars/get-browser.md index 9825d8804..54dfe9d78 100644 --- a/examples/1.9.x/client-apple/examples/avatars/get-browser.md +++ b/examples/1.9.x/client-apple/examples/avatars/get-browser.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let avatars = Avatars(client) diff --git a/examples/1.9.x/client-apple/examples/avatars/get-credit-card.md b/examples/1.9.x/client-apple/examples/avatars/get-credit-card.md index a294929a6..21260dfff 100644 --- a/examples/1.9.x/client-apple/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/client-apple/examples/avatars/get-credit-card.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let avatars = Avatars(client) diff --git a/examples/1.9.x/client-apple/examples/avatars/get-favicon.md b/examples/1.9.x/client-apple/examples/avatars/get-favicon.md index 0d5435214..acc6a75a0 100644 --- a/examples/1.9.x/client-apple/examples/avatars/get-favicon.md +++ b/examples/1.9.x/client-apple/examples/avatars/get-favicon.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let avatars = Avatars(client) diff --git a/examples/1.9.x/client-apple/examples/avatars/get-flag.md b/examples/1.9.x/client-apple/examples/avatars/get-flag.md index ae4586067..9ea9aa1c2 100644 --- a/examples/1.9.x/client-apple/examples/avatars/get-flag.md +++ b/examples/1.9.x/client-apple/examples/avatars/get-flag.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let avatars = Avatars(client) diff --git a/examples/1.9.x/client-apple/examples/avatars/get-image.md b/examples/1.9.x/client-apple/examples/avatars/get-image.md index 0cbc666ae..1233663f7 100644 --- a/examples/1.9.x/client-apple/examples/avatars/get-image.md +++ b/examples/1.9.x/client-apple/examples/avatars/get-image.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let avatars = Avatars(client) diff --git a/examples/1.9.x/client-apple/examples/avatars/get-initials.md b/examples/1.9.x/client-apple/examples/avatars/get-initials.md index d1f6d7c2d..f268f5109 100644 --- a/examples/1.9.x/client-apple/examples/avatars/get-initials.md +++ b/examples/1.9.x/client-apple/examples/avatars/get-initials.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let avatars = Avatars(client) diff --git a/examples/1.9.x/client-apple/examples/avatars/get-qr.md b/examples/1.9.x/client-apple/examples/avatars/get-qr.md index 86a43fba1..378b500de 100644 --- a/examples/1.9.x/client-apple/examples/avatars/get-qr.md +++ b/examples/1.9.x/client-apple/examples/avatars/get-qr.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let avatars = Avatars(client) diff --git a/examples/1.9.x/client-apple/examples/avatars/get-screenshot.md b/examples/1.9.x/client-apple/examples/avatars/get-screenshot.md index 7711677f4..870858848 100644 --- a/examples/1.9.x/client-apple/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/client-apple/examples/avatars/get-screenshot.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let avatars = Avatars(client) diff --git a/examples/1.9.x/client-apple/examples/databases/create-document.md b/examples/1.9.x/client-apple/examples/databases/create-document.md index 973bb324e..e47cec6b5 100644 --- a/examples/1.9.x/client-apple/examples/databases/create-document.md +++ b/examples/1.9.x/client-apple/examples/databases/create-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/create-operations.md b/examples/1.9.x/client-apple/examples/databases/create-operations.md index c9d59976f..9d6ca5eb7 100644 --- a/examples/1.9.x/client-apple/examples/databases/create-operations.md +++ b/examples/1.9.x/client-apple/examples/databases/create-operations.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/create-transaction.md b/examples/1.9.x/client-apple/examples/databases/create-transaction.md index 29bb609ec..fac8c7b95 100644 --- a/examples/1.9.x/client-apple/examples/databases/create-transaction.md +++ b/examples/1.9.x/client-apple/examples/databases/create-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/decrement-document-attribute.md b/examples/1.9.x/client-apple/examples/databases/decrement-document-attribute.md index 0e08625b8..c4654b5fc 100644 --- a/examples/1.9.x/client-apple/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/client-apple/examples/databases/decrement-document-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/delete-document.md b/examples/1.9.x/client-apple/examples/databases/delete-document.md index 6cd36430b..dc4cc9794 100644 --- a/examples/1.9.x/client-apple/examples/databases/delete-document.md +++ b/examples/1.9.x/client-apple/examples/databases/delete-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/delete-transaction.md b/examples/1.9.x/client-apple/examples/databases/delete-transaction.md index 4a3a7e29e..82b067a50 100644 --- a/examples/1.9.x/client-apple/examples/databases/delete-transaction.md +++ b/examples/1.9.x/client-apple/examples/databases/delete-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/get-document.md b/examples/1.9.x/client-apple/examples/databases/get-document.md index c7cc142a6..7972a2e1d 100644 --- a/examples/1.9.x/client-apple/examples/databases/get-document.md +++ b/examples/1.9.x/client-apple/examples/databases/get-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/get-transaction.md b/examples/1.9.x/client-apple/examples/databases/get-transaction.md index 9e2c76c59..3cd8cd8a9 100644 --- a/examples/1.9.x/client-apple/examples/databases/get-transaction.md +++ b/examples/1.9.x/client-apple/examples/databases/get-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/increment-document-attribute.md b/examples/1.9.x/client-apple/examples/databases/increment-document-attribute.md index 0228b214c..738ffa662 100644 --- a/examples/1.9.x/client-apple/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/client-apple/examples/databases/increment-document-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/list-documents.md b/examples/1.9.x/client-apple/examples/databases/list-documents.md index 801424eaf..a08649bb2 100644 --- a/examples/1.9.x/client-apple/examples/databases/list-documents.md +++ b/examples/1.9.x/client-apple/examples/databases/list-documents.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/list-transactions.md b/examples/1.9.x/client-apple/examples/databases/list-transactions.md index 15c823f51..c70097298 100644 --- a/examples/1.9.x/client-apple/examples/databases/list-transactions.md +++ b/examples/1.9.x/client-apple/examples/databases/list-transactions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/update-document.md b/examples/1.9.x/client-apple/examples/databases/update-document.md index 0963c234a..5a47cab8b 100644 --- a/examples/1.9.x/client-apple/examples/databases/update-document.md +++ b/examples/1.9.x/client-apple/examples/databases/update-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/update-transaction.md b/examples/1.9.x/client-apple/examples/databases/update-transaction.md index e4e0eb62a..fee6f4e37 100644 --- a/examples/1.9.x/client-apple/examples/databases/update-transaction.md +++ b/examples/1.9.x/client-apple/examples/databases/update-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/databases/upsert-document.md b/examples/1.9.x/client-apple/examples/databases/upsert-document.md index 9e8aea690..b139a9b31 100644 --- a/examples/1.9.x/client-apple/examples/databases/upsert-document.md +++ b/examples/1.9.x/client-apple/examples/databases/upsert-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) diff --git a/examples/1.9.x/client-apple/examples/functions/create-execution.md b/examples/1.9.x/client-apple/examples/functions/create-execution.md index 9597fd9d3..65c9d7477 100644 --- a/examples/1.9.x/client-apple/examples/functions/create-execution.md +++ b/examples/1.9.x/client-apple/examples/functions/create-execution.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let functions = Functions(client) diff --git a/examples/1.9.x/client-apple/examples/functions/get-execution.md b/examples/1.9.x/client-apple/examples/functions/get-execution.md index fbd787f4c..03179ccb5 100644 --- a/examples/1.9.x/client-apple/examples/functions/get-execution.md +++ b/examples/1.9.x/client-apple/examples/functions/get-execution.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let functions = Functions(client) diff --git a/examples/1.9.x/client-apple/examples/functions/list-executions.md b/examples/1.9.x/client-apple/examples/functions/list-executions.md index e0204619f..b8c0d6ee2 100644 --- a/examples/1.9.x/client-apple/examples/functions/list-executions.md +++ b/examples/1.9.x/client-apple/examples/functions/list-executions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let functions = Functions(client) diff --git a/examples/1.9.x/client-apple/examples/graphql/mutation.md b/examples/1.9.x/client-apple/examples/graphql/mutation.md index 86894fea9..e0b0c8e33 100644 --- a/examples/1.9.x/client-apple/examples/graphql/mutation.md +++ b/examples/1.9.x/client-apple/examples/graphql/mutation.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let graphql = Graphql(client) diff --git a/examples/1.9.x/client-apple/examples/graphql/query.md b/examples/1.9.x/client-apple/examples/graphql/query.md index e01c78df1..0bada9ece 100644 --- a/examples/1.9.x/client-apple/examples/graphql/query.md +++ b/examples/1.9.x/client-apple/examples/graphql/query.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let graphql = Graphql(client) diff --git a/examples/1.9.x/client-apple/examples/locale/get.md b/examples/1.9.x/client-apple/examples/locale/get.md index f87854a1d..a9dbed13b 100644 --- a/examples/1.9.x/client-apple/examples/locale/get.md +++ b/examples/1.9.x/client-apple/examples/locale/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let locale = Locale(client) diff --git a/examples/1.9.x/client-apple/examples/locale/list-codes.md b/examples/1.9.x/client-apple/examples/locale/list-codes.md index d524b5e2a..fa96cf620 100644 --- a/examples/1.9.x/client-apple/examples/locale/list-codes.md +++ b/examples/1.9.x/client-apple/examples/locale/list-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let locale = Locale(client) diff --git a/examples/1.9.x/client-apple/examples/locale/list-continents.md b/examples/1.9.x/client-apple/examples/locale/list-continents.md index dfad5ced7..762897f86 100644 --- a/examples/1.9.x/client-apple/examples/locale/list-continents.md +++ b/examples/1.9.x/client-apple/examples/locale/list-continents.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let locale = Locale(client) diff --git a/examples/1.9.x/client-apple/examples/locale/list-countries-eu.md b/examples/1.9.x/client-apple/examples/locale/list-countries-eu.md index ee6a97f92..106ff69d3 100644 --- a/examples/1.9.x/client-apple/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/client-apple/examples/locale/list-countries-eu.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let locale = Locale(client) diff --git a/examples/1.9.x/client-apple/examples/locale/list-countries-phones.md b/examples/1.9.x/client-apple/examples/locale/list-countries-phones.md index d9267a684..94e8ff3e5 100644 --- a/examples/1.9.x/client-apple/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/client-apple/examples/locale/list-countries-phones.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let locale = Locale(client) diff --git a/examples/1.9.x/client-apple/examples/locale/list-countries.md b/examples/1.9.x/client-apple/examples/locale/list-countries.md index 2b79063db..df30bdc4a 100644 --- a/examples/1.9.x/client-apple/examples/locale/list-countries.md +++ b/examples/1.9.x/client-apple/examples/locale/list-countries.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let locale = Locale(client) diff --git a/examples/1.9.x/client-apple/examples/locale/list-currencies.md b/examples/1.9.x/client-apple/examples/locale/list-currencies.md index ccd5c92e1..7da752054 100644 --- a/examples/1.9.x/client-apple/examples/locale/list-currencies.md +++ b/examples/1.9.x/client-apple/examples/locale/list-currencies.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let locale = Locale(client) diff --git a/examples/1.9.x/client-apple/examples/locale/list-languages.md b/examples/1.9.x/client-apple/examples/locale/list-languages.md index 7132b1bfe..b41529a77 100644 --- a/examples/1.9.x/client-apple/examples/locale/list-languages.md +++ b/examples/1.9.x/client-apple/examples/locale/list-languages.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let locale = Locale(client) diff --git a/examples/1.9.x/client-apple/examples/messaging/create-subscriber.md b/examples/1.9.x/client-apple/examples/messaging/create-subscriber.md index a7e96e552..a2f1cf29b 100644 --- a/examples/1.9.x/client-apple/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/client-apple/examples/messaging/create-subscriber.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let messaging = Messaging(client) diff --git a/examples/1.9.x/client-apple/examples/messaging/delete-subscriber.md b/examples/1.9.x/client-apple/examples/messaging/delete-subscriber.md index 7e68489b6..fecc33506 100644 --- a/examples/1.9.x/client-apple/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/client-apple/examples/messaging/delete-subscriber.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let messaging = Messaging(client) diff --git a/examples/1.9.x/client-apple/examples/presences/delete.md b/examples/1.9.x/client-apple/examples/presences/delete.md index 6df012b51..7add7da0c 100644 --- a/examples/1.9.x/client-apple/examples/presences/delete.md +++ b/examples/1.9.x/client-apple/examples/presences/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let presences = Presences(client) diff --git a/examples/1.9.x/client-apple/examples/presences/get.md b/examples/1.9.x/client-apple/examples/presences/get.md index 9e8ae6ac2..1ec2af9de 100644 --- a/examples/1.9.x/client-apple/examples/presences/get.md +++ b/examples/1.9.x/client-apple/examples/presences/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let presences = Presences(client) diff --git a/examples/1.9.x/client-apple/examples/presences/list.md b/examples/1.9.x/client-apple/examples/presences/list.md index e24323535..4d88264e2 100644 --- a/examples/1.9.x/client-apple/examples/presences/list.md +++ b/examples/1.9.x/client-apple/examples/presences/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let presences = Presences(client) diff --git a/examples/1.9.x/client-apple/examples/presences/update.md b/examples/1.9.x/client-apple/examples/presences/update.md index 1dce7b7d3..6a7eaf8c9 100644 --- a/examples/1.9.x/client-apple/examples/presences/update.md +++ b/examples/1.9.x/client-apple/examples/presences/update.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let presences = Presences(client) diff --git a/examples/1.9.x/client-apple/examples/presences/upsert.md b/examples/1.9.x/client-apple/examples/presences/upsert.md index 23e495015..63199a5c1 100644 --- a/examples/1.9.x/client-apple/examples/presences/upsert.md +++ b/examples/1.9.x/client-apple/examples/presences/upsert.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let presences = Presences(client) diff --git a/examples/1.9.x/client-apple/examples/storage/create-file.md b/examples/1.9.x/client-apple/examples/storage/create-file.md index c4460774c..0ab488879 100644 --- a/examples/1.9.x/client-apple/examples/storage/create-file.md +++ b/examples/1.9.x/client-apple/examples/storage/create-file.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let storage = Storage(client) diff --git a/examples/1.9.x/client-apple/examples/storage/delete-file.md b/examples/1.9.x/client-apple/examples/storage/delete-file.md index dee1c64b2..ac2d53b71 100644 --- a/examples/1.9.x/client-apple/examples/storage/delete-file.md +++ b/examples/1.9.x/client-apple/examples/storage/delete-file.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let storage = Storage(client) diff --git a/examples/1.9.x/client-apple/examples/storage/get-file-download.md b/examples/1.9.x/client-apple/examples/storage/get-file-download.md index c46d0723a..15375603e 100644 --- a/examples/1.9.x/client-apple/examples/storage/get-file-download.md +++ b/examples/1.9.x/client-apple/examples/storage/get-file-download.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let storage = Storage(client) diff --git a/examples/1.9.x/client-apple/examples/storage/get-file-preview.md b/examples/1.9.x/client-apple/examples/storage/get-file-preview.md index 5ba403231..a9c5ba0c5 100644 --- a/examples/1.9.x/client-apple/examples/storage/get-file-preview.md +++ b/examples/1.9.x/client-apple/examples/storage/get-file-preview.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let storage = Storage(client) diff --git a/examples/1.9.x/client-apple/examples/storage/get-file-view.md b/examples/1.9.x/client-apple/examples/storage/get-file-view.md index 1364d8ef6..9da01afbc 100644 --- a/examples/1.9.x/client-apple/examples/storage/get-file-view.md +++ b/examples/1.9.x/client-apple/examples/storage/get-file-view.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let storage = Storage(client) diff --git a/examples/1.9.x/client-apple/examples/storage/get-file.md b/examples/1.9.x/client-apple/examples/storage/get-file.md index 7ec8438e5..c27e12d18 100644 --- a/examples/1.9.x/client-apple/examples/storage/get-file.md +++ b/examples/1.9.x/client-apple/examples/storage/get-file.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let storage = Storage(client) diff --git a/examples/1.9.x/client-apple/examples/storage/list-files.md b/examples/1.9.x/client-apple/examples/storage/list-files.md index f65495610..5e2dd5441 100644 --- a/examples/1.9.x/client-apple/examples/storage/list-files.md +++ b/examples/1.9.x/client-apple/examples/storage/list-files.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let storage = Storage(client) diff --git a/examples/1.9.x/client-apple/examples/storage/update-file.md b/examples/1.9.x/client-apple/examples/storage/update-file.md index dcc0c5dd2..46b7d3a12 100644 --- a/examples/1.9.x/client-apple/examples/storage/update-file.md +++ b/examples/1.9.x/client-apple/examples/storage/update-file.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let storage = Storage(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/create-operations.md b/examples/1.9.x/client-apple/examples/tablesdb/create-operations.md index ee3d6ce3d..d62e89f4b 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/create-operations.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/create-row.md b/examples/1.9.x/client-apple/examples/tablesdb/create-row.md index 68e9fc386..edef4f229 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/create-row.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/create-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/create-transaction.md b/examples/1.9.x/client-apple/examples/tablesdb/create-transaction.md index 97d1346e9..214f8833a 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/create-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/client-apple/examples/tablesdb/decrement-row-column.md index 2c3cfb3b9..2f38ff1df 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/decrement-row-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/delete-row.md b/examples/1.9.x/client-apple/examples/tablesdb/delete-row.md index 82890ed77..04549c386 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/delete-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/delete-transaction.md b/examples/1.9.x/client-apple/examples/tablesdb/delete-transaction.md index 865aeaecc..67bc17805 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/delete-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/get-row.md b/examples/1.9.x/client-apple/examples/tablesdb/get-row.md index 51167094f..12ae61f93 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/get-row.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/get-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/get-transaction.md b/examples/1.9.x/client-apple/examples/tablesdb/get-transaction.md index 601ece79b..995df886d 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/get-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/increment-row-column.md b/examples/1.9.x/client-apple/examples/tablesdb/increment-row-column.md index a2b14f894..21229e945 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/increment-row-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/list-rows.md b/examples/1.9.x/client-apple/examples/tablesdb/list-rows.md index b6df80e0c..7f4583587 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/list-rows.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/list-transactions.md b/examples/1.9.x/client-apple/examples/tablesdb/list-transactions.md index 655109394..7bc808388 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/list-transactions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/update-row.md b/examples/1.9.x/client-apple/examples/tablesdb/update-row.md index 29fb327e2..7c6cd99fd 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/update-row.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/update-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/update-transaction.md b/examples/1.9.x/client-apple/examples/tablesdb/update-transaction.md index 432d7c486..dc055bc81 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/update-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/tablesdb/upsert-row.md b/examples/1.9.x/client-apple/examples/tablesdb/upsert-row.md index 77d971c97..c4e9af6c2 100644 --- a/examples/1.9.x/client-apple/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/client-apple/examples/tablesdb/upsert-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let tablesDB = TablesDB(client) diff --git a/examples/1.9.x/client-apple/examples/teams/create-membership.md b/examples/1.9.x/client-apple/examples/teams/create-membership.md index 124765abf..6fd6a0b8e 100644 --- a/examples/1.9.x/client-apple/examples/teams/create-membership.md +++ b/examples/1.9.x/client-apple/examples/teams/create-membership.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/create.md b/examples/1.9.x/client-apple/examples/teams/create.md index 70600909b..48405a4ac 100644 --- a/examples/1.9.x/client-apple/examples/teams/create.md +++ b/examples/1.9.x/client-apple/examples/teams/create.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/delete-membership.md b/examples/1.9.x/client-apple/examples/teams/delete-membership.md index c5e61cfb2..e2b73d6db 100644 --- a/examples/1.9.x/client-apple/examples/teams/delete-membership.md +++ b/examples/1.9.x/client-apple/examples/teams/delete-membership.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/delete.md b/examples/1.9.x/client-apple/examples/teams/delete.md index 782b41b3d..243a35e76 100644 --- a/examples/1.9.x/client-apple/examples/teams/delete.md +++ b/examples/1.9.x/client-apple/examples/teams/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/get-membership.md b/examples/1.9.x/client-apple/examples/teams/get-membership.md index 94882c98f..1461ff805 100644 --- a/examples/1.9.x/client-apple/examples/teams/get-membership.md +++ b/examples/1.9.x/client-apple/examples/teams/get-membership.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/get-prefs.md b/examples/1.9.x/client-apple/examples/teams/get-prefs.md index 0fc67385e..c2acbfe0a 100644 --- a/examples/1.9.x/client-apple/examples/teams/get-prefs.md +++ b/examples/1.9.x/client-apple/examples/teams/get-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/get.md b/examples/1.9.x/client-apple/examples/teams/get.md index 592be9553..0d4201128 100644 --- a/examples/1.9.x/client-apple/examples/teams/get.md +++ b/examples/1.9.x/client-apple/examples/teams/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/list-memberships.md b/examples/1.9.x/client-apple/examples/teams/list-memberships.md index b2338476b..f8de1e2b6 100644 --- a/examples/1.9.x/client-apple/examples/teams/list-memberships.md +++ b/examples/1.9.x/client-apple/examples/teams/list-memberships.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/list.md b/examples/1.9.x/client-apple/examples/teams/list.md index 7404c8b7f..8e21051a4 100644 --- a/examples/1.9.x/client-apple/examples/teams/list.md +++ b/examples/1.9.x/client-apple/examples/teams/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/update-membership-status.md b/examples/1.9.x/client-apple/examples/teams/update-membership-status.md index 1a3ae9139..e3b999e2f 100644 --- a/examples/1.9.x/client-apple/examples/teams/update-membership-status.md +++ b/examples/1.9.x/client-apple/examples/teams/update-membership-status.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/update-membership.md b/examples/1.9.x/client-apple/examples/teams/update-membership.md index 5663848d1..369cb4baa 100644 --- a/examples/1.9.x/client-apple/examples/teams/update-membership.md +++ b/examples/1.9.x/client-apple/examples/teams/update-membership.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/update-name.md b/examples/1.9.x/client-apple/examples/teams/update-name.md index bc7187cd9..320088a21 100644 --- a/examples/1.9.x/client-apple/examples/teams/update-name.md +++ b/examples/1.9.x/client-apple/examples/teams/update-name.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-apple/examples/teams/update-prefs.md b/examples/1.9.x/client-apple/examples/teams/update-prefs.md index c40796b3a..6ea27cc30 100644 --- a/examples/1.9.x/client-apple/examples/teams/update-prefs.md +++ b/examples/1.9.x/client-apple/examples/teams/update-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID let teams = Teams(client) diff --git a/examples/1.9.x/client-flutter/examples/account/create-anonymous-session.md b/examples/1.9.x/client-flutter/examples/account/create-anonymous-session.md index 0cdedf8f2..2d470f87e 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/client-flutter/examples/account/create-anonymous-session.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-email-password-session.md b/examples/1.9.x/client-flutter/examples/account/create-email-password-session.md index d444996d9..c427a9f94 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-email-password-session.md +++ b/examples/1.9.x/client-flutter/examples/account/create-email-password-session.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-email-token.md b/examples/1.9.x/client-flutter/examples/account/create-email-token.md index 738905812..f1805c292 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-email-token.md +++ b/examples/1.9.x/client-flutter/examples/account/create-email-token.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-email-verification.md b/examples/1.9.x/client-flutter/examples/account/create-email-verification.md index d88979c88..3925e45db 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-email-verification.md +++ b/examples/1.9.x/client-flutter/examples/account/create-email-verification.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-jwt.md b/examples/1.9.x/client-flutter/examples/account/create-jwt.md index 72ff1180e..84b0b7353 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-jwt.md +++ b/examples/1.9.x/client-flutter/examples/account/create-jwt.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-magic-url-token.md b/examples/1.9.x/client-flutter/examples/account/create-magic-url-token.md index 59d1cc243..577d4ca68 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/client-flutter/examples/account/create-magic-url-token.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-mfa-authenticator.md b/examples/1.9.x/client-flutter/examples/account/create-mfa-authenticator.md index c86de3ba7..90170b07e 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/client-flutter/examples/account/create-mfa-authenticator.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-mfa-challenge.md b/examples/1.9.x/client-flutter/examples/account/create-mfa-challenge.md index c7007d328..91f25c876 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/client-flutter/examples/account/create-mfa-challenge.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/client-flutter/examples/account/create-mfa-recovery-codes.md index 252dec7a7..a81fe8f08 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/client-flutter/examples/account/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-o-auth-2-session.md b/examples/1.9.x/client-flutter/examples/account/create-o-auth-2-session.md index 75abae31a..5a91acb08 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-o-auth-2-session.md +++ b/examples/1.9.x/client-flutter/examples/account/create-o-auth-2-session.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-o-auth-2-token.md b/examples/1.9.x/client-flutter/examples/account/create-o-auth-2-token.md index be098a627..83e6ca26d 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/client-flutter/examples/account/create-o-auth-2-token.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-phone-token.md b/examples/1.9.x/client-flutter/examples/account/create-phone-token.md index 95799d62a..6658fbe36 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-phone-token.md +++ b/examples/1.9.x/client-flutter/examples/account/create-phone-token.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-phone-verification.md b/examples/1.9.x/client-flutter/examples/account/create-phone-verification.md index 9fc84dfc7..9e36b14f8 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-phone-verification.md +++ b/examples/1.9.x/client-flutter/examples/account/create-phone-verification.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-push-target.md b/examples/1.9.x/client-flutter/examples/account/create-push-target.md index d493b2a00..589ad96cd 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-push-target.md +++ b/examples/1.9.x/client-flutter/examples/account/create-push-target.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-recovery.md b/examples/1.9.x/client-flutter/examples/account/create-recovery.md index fe5ecfa05..1e6c70301 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-recovery.md +++ b/examples/1.9.x/client-flutter/examples/account/create-recovery.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-session.md b/examples/1.9.x/client-flutter/examples/account/create-session.md index ebac1f930..10fdded2b 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-session.md +++ b/examples/1.9.x/client-flutter/examples/account/create-session.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create-verification.md b/examples/1.9.x/client-flutter/examples/account/create-verification.md index c36cb8f34..dbe300ddc 100644 --- a/examples/1.9.x/client-flutter/examples/account/create-verification.md +++ b/examples/1.9.x/client-flutter/examples/account/create-verification.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/create.md b/examples/1.9.x/client-flutter/examples/account/create.md index d4bf5757a..45846dc68 100644 --- a/examples/1.9.x/client-flutter/examples/account/create.md +++ b/examples/1.9.x/client-flutter/examples/account/create.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/delete-identity.md b/examples/1.9.x/client-flutter/examples/account/delete-identity.md index 47407e7f7..43357f4d4 100644 --- a/examples/1.9.x/client-flutter/examples/account/delete-identity.md +++ b/examples/1.9.x/client-flutter/examples/account/delete-identity.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/client-flutter/examples/account/delete-mfa-authenticator.md index eac797665..fefbf286f 100644 --- a/examples/1.9.x/client-flutter/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/client-flutter/examples/account/delete-mfa-authenticator.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/delete-push-target.md b/examples/1.9.x/client-flutter/examples/account/delete-push-target.md index 477a0446f..7bbcc3e97 100644 --- a/examples/1.9.x/client-flutter/examples/account/delete-push-target.md +++ b/examples/1.9.x/client-flutter/examples/account/delete-push-target.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/delete-session.md b/examples/1.9.x/client-flutter/examples/account/delete-session.md index 513f2146f..cbbedfa1d 100644 --- a/examples/1.9.x/client-flutter/examples/account/delete-session.md +++ b/examples/1.9.x/client-flutter/examples/account/delete-session.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/delete-sessions.md b/examples/1.9.x/client-flutter/examples/account/delete-sessions.md index e8e8ba1af..b8d0da2c1 100644 --- a/examples/1.9.x/client-flutter/examples/account/delete-sessions.md +++ b/examples/1.9.x/client-flutter/examples/account/delete-sessions.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/client-flutter/examples/account/get-mfa-recovery-codes.md index ed5531a32..b8f1fa124 100644 --- a/examples/1.9.x/client-flutter/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/client-flutter/examples/account/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/get-prefs.md b/examples/1.9.x/client-flutter/examples/account/get-prefs.md index dc359f9c1..ee5a88753 100644 --- a/examples/1.9.x/client-flutter/examples/account/get-prefs.md +++ b/examples/1.9.x/client-flutter/examples/account/get-prefs.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/get-session.md b/examples/1.9.x/client-flutter/examples/account/get-session.md index c27058a8e..7dd458182 100644 --- a/examples/1.9.x/client-flutter/examples/account/get-session.md +++ b/examples/1.9.x/client-flutter/examples/account/get-session.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/get.md b/examples/1.9.x/client-flutter/examples/account/get.md index 1bd67c6a1..3b064e52c 100644 --- a/examples/1.9.x/client-flutter/examples/account/get.md +++ b/examples/1.9.x/client-flutter/examples/account/get.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/list-identities.md b/examples/1.9.x/client-flutter/examples/account/list-identities.md index d0c0e5b60..294ca394a 100644 --- a/examples/1.9.x/client-flutter/examples/account/list-identities.md +++ b/examples/1.9.x/client-flutter/examples/account/list-identities.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/list-logs.md b/examples/1.9.x/client-flutter/examples/account/list-logs.md index 924470deb..afd8749e8 100644 --- a/examples/1.9.x/client-flutter/examples/account/list-logs.md +++ b/examples/1.9.x/client-flutter/examples/account/list-logs.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/list-mfa-factors.md b/examples/1.9.x/client-flutter/examples/account/list-mfa-factors.md index 4cfcf88b3..7957ff151 100644 --- a/examples/1.9.x/client-flutter/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/client-flutter/examples/account/list-mfa-factors.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/list-sessions.md b/examples/1.9.x/client-flutter/examples/account/list-sessions.md index 18db93bbb..2861461ac 100644 --- a/examples/1.9.x/client-flutter/examples/account/list-sessions.md +++ b/examples/1.9.x/client-flutter/examples/account/list-sessions.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-email-verification.md b/examples/1.9.x/client-flutter/examples/account/update-email-verification.md index 7e3975e96..f4964fa91 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-email-verification.md +++ b/examples/1.9.x/client-flutter/examples/account/update-email-verification.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-email.md b/examples/1.9.x/client-flutter/examples/account/update-email.md index e5e1a169a..47ac9378a 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-email.md +++ b/examples/1.9.x/client-flutter/examples/account/update-email.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-magic-url-session.md b/examples/1.9.x/client-flutter/examples/account/update-magic-url-session.md index c45dcf1eb..3d595f98b 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/client-flutter/examples/account/update-magic-url-session.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-mfa-authenticator.md b/examples/1.9.x/client-flutter/examples/account/update-mfa-authenticator.md index 539c5e280..379dafc04 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/client-flutter/examples/account/update-mfa-authenticator.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-mfa-challenge.md b/examples/1.9.x/client-flutter/examples/account/update-mfa-challenge.md index 55f4ebee4..9e74e0f04 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/client-flutter/examples/account/update-mfa-challenge.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/client-flutter/examples/account/update-mfa-recovery-codes.md index 7a188d40f..f7d6b901d 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/client-flutter/examples/account/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-mfa.md b/examples/1.9.x/client-flutter/examples/account/update-mfa.md index db9addd61..2a63f5489 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-mfa.md +++ b/examples/1.9.x/client-flutter/examples/account/update-mfa.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-name.md b/examples/1.9.x/client-flutter/examples/account/update-name.md index 8ab712232..44054a5e5 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-name.md +++ b/examples/1.9.x/client-flutter/examples/account/update-name.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-password.md b/examples/1.9.x/client-flutter/examples/account/update-password.md index 33ae55f41..083f4f7ee 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-password.md +++ b/examples/1.9.x/client-flutter/examples/account/update-password.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-phone-session.md b/examples/1.9.x/client-flutter/examples/account/update-phone-session.md index f538680a5..3e3b3f8f2 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-phone-session.md +++ b/examples/1.9.x/client-flutter/examples/account/update-phone-session.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-phone-verification.md b/examples/1.9.x/client-flutter/examples/account/update-phone-verification.md index de226a7c7..ac4e19b1b 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-phone-verification.md +++ b/examples/1.9.x/client-flutter/examples/account/update-phone-verification.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-phone.md b/examples/1.9.x/client-flutter/examples/account/update-phone.md index f631c5dfc..3727c6f3b 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-phone.md +++ b/examples/1.9.x/client-flutter/examples/account/update-phone.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-prefs.md b/examples/1.9.x/client-flutter/examples/account/update-prefs.md index 6f9863d38..06d13240e 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-prefs.md +++ b/examples/1.9.x/client-flutter/examples/account/update-prefs.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-push-target.md b/examples/1.9.x/client-flutter/examples/account/update-push-target.md index 601f3aece..c132832f1 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-push-target.md +++ b/examples/1.9.x/client-flutter/examples/account/update-push-target.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-recovery.md b/examples/1.9.x/client-flutter/examples/account/update-recovery.md index 87ff07bda..fa693f9df 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-recovery.md +++ b/examples/1.9.x/client-flutter/examples/account/update-recovery.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-session.md b/examples/1.9.x/client-flutter/examples/account/update-session.md index 7fb334aaa..09e0ba5d6 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-session.md +++ b/examples/1.9.x/client-flutter/examples/account/update-session.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-status.md b/examples/1.9.x/client-flutter/examples/account/update-status.md index d7b0d0dcc..91a8b7d77 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-status.md +++ b/examples/1.9.x/client-flutter/examples/account/update-status.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/account/update-verification.md b/examples/1.9.x/client-flutter/examples/account/update-verification.md index 339b4b91c..adeb83d8c 100644 --- a/examples/1.9.x/client-flutter/examples/account/update-verification.md +++ b/examples/1.9.x/client-flutter/examples/account/update-verification.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Account account = Account(client); diff --git a/examples/1.9.x/client-flutter/examples/avatars/get-browser.md b/examples/1.9.x/client-flutter/examples/avatars/get-browser.md index 19026083e..ffadf3e0f 100644 --- a/examples/1.9.x/client-flutter/examples/avatars/get-browser.md +++ b/examples/1.9.x/client-flutter/examples/avatars/get-browser.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Avatars avatars = Avatars(client); diff --git a/examples/1.9.x/client-flutter/examples/avatars/get-credit-card.md b/examples/1.9.x/client-flutter/examples/avatars/get-credit-card.md index 395608a4b..9243a6095 100644 --- a/examples/1.9.x/client-flutter/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/client-flutter/examples/avatars/get-credit-card.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Avatars avatars = Avatars(client); diff --git a/examples/1.9.x/client-flutter/examples/avatars/get-favicon.md b/examples/1.9.x/client-flutter/examples/avatars/get-favicon.md index fd1d0df70..7455d2ccf 100644 --- a/examples/1.9.x/client-flutter/examples/avatars/get-favicon.md +++ b/examples/1.9.x/client-flutter/examples/avatars/get-favicon.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Avatars avatars = Avatars(client); diff --git a/examples/1.9.x/client-flutter/examples/avatars/get-flag.md b/examples/1.9.x/client-flutter/examples/avatars/get-flag.md index a5753f6cf..c4b0255fd 100644 --- a/examples/1.9.x/client-flutter/examples/avatars/get-flag.md +++ b/examples/1.9.x/client-flutter/examples/avatars/get-flag.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Avatars avatars = Avatars(client); diff --git a/examples/1.9.x/client-flutter/examples/avatars/get-image.md b/examples/1.9.x/client-flutter/examples/avatars/get-image.md index 4e75bc7ea..326fefd30 100644 --- a/examples/1.9.x/client-flutter/examples/avatars/get-image.md +++ b/examples/1.9.x/client-flutter/examples/avatars/get-image.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Avatars avatars = Avatars(client); diff --git a/examples/1.9.x/client-flutter/examples/avatars/get-initials.md b/examples/1.9.x/client-flutter/examples/avatars/get-initials.md index 3b5bb68ed..048bac2fd 100644 --- a/examples/1.9.x/client-flutter/examples/avatars/get-initials.md +++ b/examples/1.9.x/client-flutter/examples/avatars/get-initials.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Avatars avatars = Avatars(client); diff --git a/examples/1.9.x/client-flutter/examples/avatars/get-qr.md b/examples/1.9.x/client-flutter/examples/avatars/get-qr.md index 8a6dc7704..c8acc7cd9 100644 --- a/examples/1.9.x/client-flutter/examples/avatars/get-qr.md +++ b/examples/1.9.x/client-flutter/examples/avatars/get-qr.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Avatars avatars = Avatars(client); diff --git a/examples/1.9.x/client-flutter/examples/avatars/get-screenshot.md b/examples/1.9.x/client-flutter/examples/avatars/get-screenshot.md index 6097941e4..88c10783e 100644 --- a/examples/1.9.x/client-flutter/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/client-flutter/examples/avatars/get-screenshot.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Avatars avatars = Avatars(client); @@ -18,7 +18,7 @@ Uint8List bytes = await avatars.getScreenshot( viewportWidth: 1920, // optional viewportHeight: 1080, // optional scale: 2, // optional - theme: enums.Theme.dark, // optional + theme: enums.BrowserTheme.dark, // optional userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', // optional fullpage: true, // optional locale: 'en-US', // optional @@ -49,7 +49,7 @@ FutureBuilder( viewportWidth:1920 , // optional viewportHeight:1080 , // optional scale:2 , // optional - theme: enums.Theme.dark, // optional + theme: enums.BrowserTheme.dark, // optional userAgent:'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15' , // optional fullpage:true , // optional locale:'en-US' , // optional diff --git a/examples/1.9.x/client-flutter/examples/databases/create-document.md b/examples/1.9.x/client-flutter/examples/databases/create-document.md index a4df848f0..8fe6e3a6b 100644 --- a/examples/1.9.x/client-flutter/examples/databases/create-document.md +++ b/examples/1.9.x/client-flutter/examples/databases/create-document.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/create-operations.md b/examples/1.9.x/client-flutter/examples/databases/create-operations.md index 0551c28bf..34334dfce 100644 --- a/examples/1.9.x/client-flutter/examples/databases/create-operations.md +++ b/examples/1.9.x/client-flutter/examples/databases/create-operations.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/create-transaction.md b/examples/1.9.x/client-flutter/examples/databases/create-transaction.md index 14ea55637..b94207feb 100644 --- a/examples/1.9.x/client-flutter/examples/databases/create-transaction.md +++ b/examples/1.9.x/client-flutter/examples/databases/create-transaction.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/decrement-document-attribute.md b/examples/1.9.x/client-flutter/examples/databases/decrement-document-attribute.md index 83eaf379f..d24eba2d1 100644 --- a/examples/1.9.x/client-flutter/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/client-flutter/examples/databases/decrement-document-attribute.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/delete-document.md b/examples/1.9.x/client-flutter/examples/databases/delete-document.md index 92350ce2f..cbb3bb28e 100644 --- a/examples/1.9.x/client-flutter/examples/databases/delete-document.md +++ b/examples/1.9.x/client-flutter/examples/databases/delete-document.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/delete-transaction.md b/examples/1.9.x/client-flutter/examples/databases/delete-transaction.md index 3d6d5ed41..39cb45c7e 100644 --- a/examples/1.9.x/client-flutter/examples/databases/delete-transaction.md +++ b/examples/1.9.x/client-flutter/examples/databases/delete-transaction.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/get-document.md b/examples/1.9.x/client-flutter/examples/databases/get-document.md index 1f384afd1..879021a52 100644 --- a/examples/1.9.x/client-flutter/examples/databases/get-document.md +++ b/examples/1.9.x/client-flutter/examples/databases/get-document.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/get-transaction.md b/examples/1.9.x/client-flutter/examples/databases/get-transaction.md index 142b8bfa4..60a2a0f26 100644 --- a/examples/1.9.x/client-flutter/examples/databases/get-transaction.md +++ b/examples/1.9.x/client-flutter/examples/databases/get-transaction.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/increment-document-attribute.md b/examples/1.9.x/client-flutter/examples/databases/increment-document-attribute.md index 22ec34312..91ebd912f 100644 --- a/examples/1.9.x/client-flutter/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/client-flutter/examples/databases/increment-document-attribute.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/list-documents.md b/examples/1.9.x/client-flutter/examples/databases/list-documents.md index 531be6ade..7cd240db8 100644 --- a/examples/1.9.x/client-flutter/examples/databases/list-documents.md +++ b/examples/1.9.x/client-flutter/examples/databases/list-documents.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/list-transactions.md b/examples/1.9.x/client-flutter/examples/databases/list-transactions.md index ca9ff6fb1..99c73cd51 100644 --- a/examples/1.9.x/client-flutter/examples/databases/list-transactions.md +++ b/examples/1.9.x/client-flutter/examples/databases/list-transactions.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/update-document.md b/examples/1.9.x/client-flutter/examples/databases/update-document.md index 52557334c..d40eebe2f 100644 --- a/examples/1.9.x/client-flutter/examples/databases/update-document.md +++ b/examples/1.9.x/client-flutter/examples/databases/update-document.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/update-transaction.md b/examples/1.9.x/client-flutter/examples/databases/update-transaction.md index a882eb92c..9eeba04e9 100644 --- a/examples/1.9.x/client-flutter/examples/databases/update-transaction.md +++ b/examples/1.9.x/client-flutter/examples/databases/update-transaction.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/databases/upsert-document.md b/examples/1.9.x/client-flutter/examples/databases/upsert-document.md index 6678a0dcb..b6b22f336 100644 --- a/examples/1.9.x/client-flutter/examples/databases/upsert-document.md +++ b/examples/1.9.x/client-flutter/examples/databases/upsert-document.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Databases databases = Databases(client); diff --git a/examples/1.9.x/client-flutter/examples/functions/create-execution.md b/examples/1.9.x/client-flutter/examples/functions/create-execution.md index 0e2197489..4e558b2bb 100644 --- a/examples/1.9.x/client-flutter/examples/functions/create-execution.md +++ b/examples/1.9.x/client-flutter/examples/functions/create-execution.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Functions functions = Functions(client); diff --git a/examples/1.9.x/client-flutter/examples/functions/get-execution.md b/examples/1.9.x/client-flutter/examples/functions/get-execution.md index f17e10c1d..db4ec32bf 100644 --- a/examples/1.9.x/client-flutter/examples/functions/get-execution.md +++ b/examples/1.9.x/client-flutter/examples/functions/get-execution.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Functions functions = Functions(client); diff --git a/examples/1.9.x/client-flutter/examples/functions/list-executions.md b/examples/1.9.x/client-flutter/examples/functions/list-executions.md index ae31ffcce..1a4821c66 100644 --- a/examples/1.9.x/client-flutter/examples/functions/list-executions.md +++ b/examples/1.9.x/client-flutter/examples/functions/list-executions.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Functions functions = Functions(client); diff --git a/examples/1.9.x/client-flutter/examples/graphql/mutation.md b/examples/1.9.x/client-flutter/examples/graphql/mutation.md index 7ec3ba75f..5f6ae8af0 100644 --- a/examples/1.9.x/client-flutter/examples/graphql/mutation.md +++ b/examples/1.9.x/client-flutter/examples/graphql/mutation.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Graphql graphql = Graphql(client); diff --git a/examples/1.9.x/client-flutter/examples/graphql/query.md b/examples/1.9.x/client-flutter/examples/graphql/query.md index cac705e5a..0c740c588 100644 --- a/examples/1.9.x/client-flutter/examples/graphql/query.md +++ b/examples/1.9.x/client-flutter/examples/graphql/query.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Graphql graphql = Graphql(client); diff --git a/examples/1.9.x/client-flutter/examples/locale/get.md b/examples/1.9.x/client-flutter/examples/locale/get.md index 630211442..04561cef2 100644 --- a/examples/1.9.x/client-flutter/examples/locale/get.md +++ b/examples/1.9.x/client-flutter/examples/locale/get.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Locale locale = Locale(client); diff --git a/examples/1.9.x/client-flutter/examples/locale/list-codes.md b/examples/1.9.x/client-flutter/examples/locale/list-codes.md index 23c375ba3..b56f2ac8c 100644 --- a/examples/1.9.x/client-flutter/examples/locale/list-codes.md +++ b/examples/1.9.x/client-flutter/examples/locale/list-codes.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Locale locale = Locale(client); diff --git a/examples/1.9.x/client-flutter/examples/locale/list-continents.md b/examples/1.9.x/client-flutter/examples/locale/list-continents.md index 349be7951..6121ca6e5 100644 --- a/examples/1.9.x/client-flutter/examples/locale/list-continents.md +++ b/examples/1.9.x/client-flutter/examples/locale/list-continents.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Locale locale = Locale(client); diff --git a/examples/1.9.x/client-flutter/examples/locale/list-countries-eu.md b/examples/1.9.x/client-flutter/examples/locale/list-countries-eu.md index f775aa2e7..14b2163f1 100644 --- a/examples/1.9.x/client-flutter/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/client-flutter/examples/locale/list-countries-eu.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Locale locale = Locale(client); diff --git a/examples/1.9.x/client-flutter/examples/locale/list-countries-phones.md b/examples/1.9.x/client-flutter/examples/locale/list-countries-phones.md index ee368e297..cbfc21867 100644 --- a/examples/1.9.x/client-flutter/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/client-flutter/examples/locale/list-countries-phones.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Locale locale = Locale(client); diff --git a/examples/1.9.x/client-flutter/examples/locale/list-countries.md b/examples/1.9.x/client-flutter/examples/locale/list-countries.md index 17e0814f9..393c6f6ae 100644 --- a/examples/1.9.x/client-flutter/examples/locale/list-countries.md +++ b/examples/1.9.x/client-flutter/examples/locale/list-countries.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Locale locale = Locale(client); diff --git a/examples/1.9.x/client-flutter/examples/locale/list-currencies.md b/examples/1.9.x/client-flutter/examples/locale/list-currencies.md index 751de786f..674e000b1 100644 --- a/examples/1.9.x/client-flutter/examples/locale/list-currencies.md +++ b/examples/1.9.x/client-flutter/examples/locale/list-currencies.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Locale locale = Locale(client); diff --git a/examples/1.9.x/client-flutter/examples/locale/list-languages.md b/examples/1.9.x/client-flutter/examples/locale/list-languages.md index 28b46a0a8..efbaca11e 100644 --- a/examples/1.9.x/client-flutter/examples/locale/list-languages.md +++ b/examples/1.9.x/client-flutter/examples/locale/list-languages.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Locale locale = Locale(client); diff --git a/examples/1.9.x/client-flutter/examples/messaging/create-subscriber.md b/examples/1.9.x/client-flutter/examples/messaging/create-subscriber.md index e28a1ab62..f3a8a2cda 100644 --- a/examples/1.9.x/client-flutter/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/client-flutter/examples/messaging/create-subscriber.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Messaging messaging = Messaging(client); diff --git a/examples/1.9.x/client-flutter/examples/messaging/delete-subscriber.md b/examples/1.9.x/client-flutter/examples/messaging/delete-subscriber.md index 4861ec905..6f437a0a6 100644 --- a/examples/1.9.x/client-flutter/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/client-flutter/examples/messaging/delete-subscriber.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Messaging messaging = Messaging(client); diff --git a/examples/1.9.x/client-flutter/examples/presences/delete.md b/examples/1.9.x/client-flutter/examples/presences/delete.md index b79ace2c8..8a1e85fa7 100644 --- a/examples/1.9.x/client-flutter/examples/presences/delete.md +++ b/examples/1.9.x/client-flutter/examples/presences/delete.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Presences presences = Presences(client); diff --git a/examples/1.9.x/client-flutter/examples/presences/get.md b/examples/1.9.x/client-flutter/examples/presences/get.md index 9fad57c6f..e4b1436a9 100644 --- a/examples/1.9.x/client-flutter/examples/presences/get.md +++ b/examples/1.9.x/client-flutter/examples/presences/get.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Presences presences = Presences(client); diff --git a/examples/1.9.x/client-flutter/examples/presences/list.md b/examples/1.9.x/client-flutter/examples/presences/list.md index 5810a2984..c1a4c56ab 100644 --- a/examples/1.9.x/client-flutter/examples/presences/list.md +++ b/examples/1.9.x/client-flutter/examples/presences/list.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Presences presences = Presences(client); diff --git a/examples/1.9.x/client-flutter/examples/presences/update.md b/examples/1.9.x/client-flutter/examples/presences/update.md index 84a64be01..b1124bfe3 100644 --- a/examples/1.9.x/client-flutter/examples/presences/update.md +++ b/examples/1.9.x/client-flutter/examples/presences/update.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Presences presences = Presences(client); diff --git a/examples/1.9.x/client-flutter/examples/presences/upsert.md b/examples/1.9.x/client-flutter/examples/presences/upsert.md index 32acc92fe..5cbe96a40 100644 --- a/examples/1.9.x/client-flutter/examples/presences/upsert.md +++ b/examples/1.9.x/client-flutter/examples/presences/upsert.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Presences presences = Presences(client); diff --git a/examples/1.9.x/client-flutter/examples/storage/create-file.md b/examples/1.9.x/client-flutter/examples/storage/create-file.md index 8f904801b..48fcdc5a2 100644 --- a/examples/1.9.x/client-flutter/examples/storage/create-file.md +++ b/examples/1.9.x/client-flutter/examples/storage/create-file.md @@ -5,7 +5,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Storage storage = Storage(client); diff --git a/examples/1.9.x/client-flutter/examples/storage/delete-file.md b/examples/1.9.x/client-flutter/examples/storage/delete-file.md index 960e92f57..cf5697df2 100644 --- a/examples/1.9.x/client-flutter/examples/storage/delete-file.md +++ b/examples/1.9.x/client-flutter/examples/storage/delete-file.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Storage storage = Storage(client); diff --git a/examples/1.9.x/client-flutter/examples/storage/get-file-download.md b/examples/1.9.x/client-flutter/examples/storage/get-file-download.md index 8fc48d152..541fe42b5 100644 --- a/examples/1.9.x/client-flutter/examples/storage/get-file-download.md +++ b/examples/1.9.x/client-flutter/examples/storage/get-file-download.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Storage storage = Storage(client); diff --git a/examples/1.9.x/client-flutter/examples/storage/get-file-preview.md b/examples/1.9.x/client-flutter/examples/storage/get-file-preview.md index 06e583a39..81ce4313e 100644 --- a/examples/1.9.x/client-flutter/examples/storage/get-file-preview.md +++ b/examples/1.9.x/client-flutter/examples/storage/get-file-preview.md @@ -3,7 +3,7 @@ import 'package:appwrite/appwrite.dart'; import 'package:appwrite/enums.dart' as enums; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Storage storage = Storage(client); diff --git a/examples/1.9.x/client-flutter/examples/storage/get-file-view.md b/examples/1.9.x/client-flutter/examples/storage/get-file-view.md index 56d2652d2..eb99d6a19 100644 --- a/examples/1.9.x/client-flutter/examples/storage/get-file-view.md +++ b/examples/1.9.x/client-flutter/examples/storage/get-file-view.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Storage storage = Storage(client); diff --git a/examples/1.9.x/client-flutter/examples/storage/get-file.md b/examples/1.9.x/client-flutter/examples/storage/get-file.md index 9f1adb6e7..8a1c1588c 100644 --- a/examples/1.9.x/client-flutter/examples/storage/get-file.md +++ b/examples/1.9.x/client-flutter/examples/storage/get-file.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Storage storage = Storage(client); diff --git a/examples/1.9.x/client-flutter/examples/storage/list-files.md b/examples/1.9.x/client-flutter/examples/storage/list-files.md index 0decd6953..9117c26f1 100644 --- a/examples/1.9.x/client-flutter/examples/storage/list-files.md +++ b/examples/1.9.x/client-flutter/examples/storage/list-files.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Storage storage = Storage(client); diff --git a/examples/1.9.x/client-flutter/examples/storage/update-file.md b/examples/1.9.x/client-flutter/examples/storage/update-file.md index 90814329a..782d4791d 100644 --- a/examples/1.9.x/client-flutter/examples/storage/update-file.md +++ b/examples/1.9.x/client-flutter/examples/storage/update-file.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Storage storage = Storage(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/create-operations.md b/examples/1.9.x/client-flutter/examples/tablesdb/create-operations.md index bc779b6bf..e4f0c80a2 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/create-operations.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/create-row.md b/examples/1.9.x/client-flutter/examples/tablesdb/create-row.md index cb5d85783..e884c095b 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/create-row.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/create-row.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/create-transaction.md b/examples/1.9.x/client-flutter/examples/tablesdb/create-transaction.md index 527dde392..60598e707 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/create-transaction.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/client-flutter/examples/tablesdb/decrement-row-column.md index 699badfc4..f1fa66f6d 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/decrement-row-column.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/delete-row.md b/examples/1.9.x/client-flutter/examples/tablesdb/delete-row.md index c4e66f58a..d64dec41d 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/delete-row.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/delete-transaction.md b/examples/1.9.x/client-flutter/examples/tablesdb/delete-transaction.md index ab178fb88..cd5360a88 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/delete-transaction.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/get-row.md b/examples/1.9.x/client-flutter/examples/tablesdb/get-row.md index 6e385a846..a469e93d1 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/get-row.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/get-row.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/get-transaction.md b/examples/1.9.x/client-flutter/examples/tablesdb/get-transaction.md index 39b02a77f..167991fe3 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/get-transaction.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/increment-row-column.md b/examples/1.9.x/client-flutter/examples/tablesdb/increment-row-column.md index 1837125ef..40871eb69 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/increment-row-column.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/list-rows.md b/examples/1.9.x/client-flutter/examples/tablesdb/list-rows.md index a2637a93e..63b71207e 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/list-rows.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/list-transactions.md b/examples/1.9.x/client-flutter/examples/tablesdb/list-transactions.md index d95e5198b..1c3285c05 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/list-transactions.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/update-row.md b/examples/1.9.x/client-flutter/examples/tablesdb/update-row.md index 3cf3c9551..6c8837902 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/update-row.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/update-row.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/update-transaction.md b/examples/1.9.x/client-flutter/examples/tablesdb/update-transaction.md index d5a8e0820..636e31fe3 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/update-transaction.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/tablesdb/upsert-row.md b/examples/1.9.x/client-flutter/examples/tablesdb/upsert-row.md index 74c7d2c58..93389096b 100644 --- a/examples/1.9.x/client-flutter/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/client-flutter/examples/tablesdb/upsert-row.md @@ -4,7 +4,7 @@ import 'package:appwrite/permission.dart'; import 'package:appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID TablesDB tablesDB = TablesDB(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/create-membership.md b/examples/1.9.x/client-flutter/examples/teams/create-membership.md index caab7926c..8248733cc 100644 --- a/examples/1.9.x/client-flutter/examples/teams/create-membership.md +++ b/examples/1.9.x/client-flutter/examples/teams/create-membership.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/create.md b/examples/1.9.x/client-flutter/examples/teams/create.md index 7a4af366f..32f44c0ff 100644 --- a/examples/1.9.x/client-flutter/examples/teams/create.md +++ b/examples/1.9.x/client-flutter/examples/teams/create.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/delete-membership.md b/examples/1.9.x/client-flutter/examples/teams/delete-membership.md index e42161fac..6caf6e9a3 100644 --- a/examples/1.9.x/client-flutter/examples/teams/delete-membership.md +++ b/examples/1.9.x/client-flutter/examples/teams/delete-membership.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/delete.md b/examples/1.9.x/client-flutter/examples/teams/delete.md index d3f4d7115..7afafb5f1 100644 --- a/examples/1.9.x/client-flutter/examples/teams/delete.md +++ b/examples/1.9.x/client-flutter/examples/teams/delete.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/get-membership.md b/examples/1.9.x/client-flutter/examples/teams/get-membership.md index 3a2906b9c..787af8506 100644 --- a/examples/1.9.x/client-flutter/examples/teams/get-membership.md +++ b/examples/1.9.x/client-flutter/examples/teams/get-membership.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/get-prefs.md b/examples/1.9.x/client-flutter/examples/teams/get-prefs.md index e35006fa5..6dbb70db3 100644 --- a/examples/1.9.x/client-flutter/examples/teams/get-prefs.md +++ b/examples/1.9.x/client-flutter/examples/teams/get-prefs.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/get.md b/examples/1.9.x/client-flutter/examples/teams/get.md index 2a71db42b..7c3fd06fb 100644 --- a/examples/1.9.x/client-flutter/examples/teams/get.md +++ b/examples/1.9.x/client-flutter/examples/teams/get.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/list-memberships.md b/examples/1.9.x/client-flutter/examples/teams/list-memberships.md index bf643511c..4e6bc703f 100644 --- a/examples/1.9.x/client-flutter/examples/teams/list-memberships.md +++ b/examples/1.9.x/client-flutter/examples/teams/list-memberships.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/list.md b/examples/1.9.x/client-flutter/examples/teams/list.md index 2de4ebfe8..b7ccc16d4 100644 --- a/examples/1.9.x/client-flutter/examples/teams/list.md +++ b/examples/1.9.x/client-flutter/examples/teams/list.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/update-membership-status.md b/examples/1.9.x/client-flutter/examples/teams/update-membership-status.md index ebb924b0a..89642a906 100644 --- a/examples/1.9.x/client-flutter/examples/teams/update-membership-status.md +++ b/examples/1.9.x/client-flutter/examples/teams/update-membership-status.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/update-membership.md b/examples/1.9.x/client-flutter/examples/teams/update-membership.md index 2d7c25c87..eab29890f 100644 --- a/examples/1.9.x/client-flutter/examples/teams/update-membership.md +++ b/examples/1.9.x/client-flutter/examples/teams/update-membership.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/update-name.md b/examples/1.9.x/client-flutter/examples/teams/update-name.md index 629e76082..e5fb7559a 100644 --- a/examples/1.9.x/client-flutter/examples/teams/update-name.md +++ b/examples/1.9.x/client-flutter/examples/teams/update-name.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-flutter/examples/teams/update-prefs.md b/examples/1.9.x/client-flutter/examples/teams/update-prefs.md index 1a53c4985..fa8a15d2e 100644 --- a/examples/1.9.x/client-flutter/examples/teams/update-prefs.md +++ b/examples/1.9.x/client-flutter/examples/teams/update-prefs.md @@ -2,7 +2,7 @@ import 'package:appwrite/appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-anonymous-session.md b/examples/1.9.x/client-react-native/examples/account/create-anonymous-session.md index 49a81c6cd..3ee29ebad 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/client-react-native/examples/account/create-anonymous-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-email-password-session.md b/examples/1.9.x/client-react-native/examples/account/create-email-password-session.md index 4b3e2002a..5075b2262 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-email-password-session.md +++ b/examples/1.9.x/client-react-native/examples/account/create-email-password-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-email-token.md b/examples/1.9.x/client-react-native/examples/account/create-email-token.md index 9956ed4f4..80a3dbcf7 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-email-token.md +++ b/examples/1.9.x/client-react-native/examples/account/create-email-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-email-verification.md b/examples/1.9.x/client-react-native/examples/account/create-email-verification.md index 8cef78ecb..f9076f564 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-email-verification.md +++ b/examples/1.9.x/client-react-native/examples/account/create-email-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-jwt.md b/examples/1.9.x/client-react-native/examples/account/create-jwt.md index 517a4f011..a1debea5a 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-jwt.md +++ b/examples/1.9.x/client-react-native/examples/account/create-jwt.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-magic-url-token.md b/examples/1.9.x/client-react-native/examples/account/create-magic-url-token.md index 85106b571..6d7b8f695 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/client-react-native/examples/account/create-magic-url-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-mfa-authenticator.md b/examples/1.9.x/client-react-native/examples/account/create-mfa-authenticator.md index b7f6b847b..8f7ab69b4 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/client-react-native/examples/account/create-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-mfa-challenge.md b/examples/1.9.x/client-react-native/examples/account/create-mfa-challenge.md index 373e3f548..7ffd11932 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/client-react-native/examples/account/create-mfa-challenge.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticationFactor } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/client-react-native/examples/account/create-mfa-recovery-codes.md index 2f73900eb..a943918ed 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/client-react-native/examples/account/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-o-auth-2-session.md b/examples/1.9.x/client-react-native/examples/account/create-o-auth-2-session.md index 289a4c8b7..3de2592c5 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-o-auth-2-session.md +++ b/examples/1.9.x/client-react-native/examples/account/create-o-auth-2-session.md @@ -2,7 +2,7 @@ import { Client, Account, OAuthProvider } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-o-auth-2-token.md b/examples/1.9.x/client-react-native/examples/account/create-o-auth-2-token.md index dda39b0d3..e86cddd14 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/client-react-native/examples/account/create-o-auth-2-token.md @@ -2,7 +2,7 @@ import { Client, Account, OAuthProvider } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-phone-token.md b/examples/1.9.x/client-react-native/examples/account/create-phone-token.md index c6021381e..b814c275f 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-phone-token.md +++ b/examples/1.9.x/client-react-native/examples/account/create-phone-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-phone-verification.md b/examples/1.9.x/client-react-native/examples/account/create-phone-verification.md index cf9c2e288..bfee19a1a 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-phone-verification.md +++ b/examples/1.9.x/client-react-native/examples/account/create-phone-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-push-target.md b/examples/1.9.x/client-react-native/examples/account/create-push-target.md index 1679c7e04..f09412718 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-push-target.md +++ b/examples/1.9.x/client-react-native/examples/account/create-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-recovery.md b/examples/1.9.x/client-react-native/examples/account/create-recovery.md index 23a886eee..38cb73c8d 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-recovery.md +++ b/examples/1.9.x/client-react-native/examples/account/create-recovery.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-session.md b/examples/1.9.x/client-react-native/examples/account/create-session.md index 18a0b7c0f..4375d3238 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-session.md +++ b/examples/1.9.x/client-react-native/examples/account/create-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create-verification.md b/examples/1.9.x/client-react-native/examples/account/create-verification.md index ff15a6274..60af9220d 100644 --- a/examples/1.9.x/client-react-native/examples/account/create-verification.md +++ b/examples/1.9.x/client-react-native/examples/account/create-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/create.md b/examples/1.9.x/client-react-native/examples/account/create.md index c29ddc71e..423042894 100644 --- a/examples/1.9.x/client-react-native/examples/account/create.md +++ b/examples/1.9.x/client-react-native/examples/account/create.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/delete-identity.md b/examples/1.9.x/client-react-native/examples/account/delete-identity.md index aac71687c..539ceda4f 100644 --- a/examples/1.9.x/client-react-native/examples/account/delete-identity.md +++ b/examples/1.9.x/client-react-native/examples/account/delete-identity.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/client-react-native/examples/account/delete-mfa-authenticator.md index 626ac9a5f..9704018b3 100644 --- a/examples/1.9.x/client-react-native/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/client-react-native/examples/account/delete-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/delete-push-target.md b/examples/1.9.x/client-react-native/examples/account/delete-push-target.md index 271b4094b..94b3b6212 100644 --- a/examples/1.9.x/client-react-native/examples/account/delete-push-target.md +++ b/examples/1.9.x/client-react-native/examples/account/delete-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/delete-session.md b/examples/1.9.x/client-react-native/examples/account/delete-session.md index a21fa8e66..b646e16ba 100644 --- a/examples/1.9.x/client-react-native/examples/account/delete-session.md +++ b/examples/1.9.x/client-react-native/examples/account/delete-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/delete-sessions.md b/examples/1.9.x/client-react-native/examples/account/delete-sessions.md index b1127016c..ca0239860 100644 --- a/examples/1.9.x/client-react-native/examples/account/delete-sessions.md +++ b/examples/1.9.x/client-react-native/examples/account/delete-sessions.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/client-react-native/examples/account/get-mfa-recovery-codes.md index a2016f0b0..c77657645 100644 --- a/examples/1.9.x/client-react-native/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/client-react-native/examples/account/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/get-prefs.md b/examples/1.9.x/client-react-native/examples/account/get-prefs.md index 3838731d9..86a210b85 100644 --- a/examples/1.9.x/client-react-native/examples/account/get-prefs.md +++ b/examples/1.9.x/client-react-native/examples/account/get-prefs.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/get-session.md b/examples/1.9.x/client-react-native/examples/account/get-session.md index 5462215ca..7aee8f24e 100644 --- a/examples/1.9.x/client-react-native/examples/account/get-session.md +++ b/examples/1.9.x/client-react-native/examples/account/get-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/get.md b/examples/1.9.x/client-react-native/examples/account/get.md index 0397f6982..07d51e4ea 100644 --- a/examples/1.9.x/client-react-native/examples/account/get.md +++ b/examples/1.9.x/client-react-native/examples/account/get.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/list-identities.md b/examples/1.9.x/client-react-native/examples/account/list-identities.md index 3a8046b71..e8a335f7b 100644 --- a/examples/1.9.x/client-react-native/examples/account/list-identities.md +++ b/examples/1.9.x/client-react-native/examples/account/list-identities.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/list-logs.md b/examples/1.9.x/client-react-native/examples/account/list-logs.md index b919ce24b..6d8a4a0c6 100644 --- a/examples/1.9.x/client-react-native/examples/account/list-logs.md +++ b/examples/1.9.x/client-react-native/examples/account/list-logs.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/list-mfa-factors.md b/examples/1.9.x/client-react-native/examples/account/list-mfa-factors.md index 4d78b709f..206a384a6 100644 --- a/examples/1.9.x/client-react-native/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/client-react-native/examples/account/list-mfa-factors.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/list-sessions.md b/examples/1.9.x/client-react-native/examples/account/list-sessions.md index c9868acce..130618dc7 100644 --- a/examples/1.9.x/client-react-native/examples/account/list-sessions.md +++ b/examples/1.9.x/client-react-native/examples/account/list-sessions.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-email-verification.md b/examples/1.9.x/client-react-native/examples/account/update-email-verification.md index c29caaf8f..999d7b573 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-email-verification.md +++ b/examples/1.9.x/client-react-native/examples/account/update-email-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-email.md b/examples/1.9.x/client-react-native/examples/account/update-email.md index 148c6d903..d106950fb 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-email.md +++ b/examples/1.9.x/client-react-native/examples/account/update-email.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-magic-url-session.md b/examples/1.9.x/client-react-native/examples/account/update-magic-url-session.md index 5efeda04b..9b2a07482 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/client-react-native/examples/account/update-magic-url-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-mfa-authenticator.md b/examples/1.9.x/client-react-native/examples/account/update-mfa-authenticator.md index 67f30eafa..c4032f1b8 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/client-react-native/examples/account/update-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-mfa-challenge.md b/examples/1.9.x/client-react-native/examples/account/update-mfa-challenge.md index d432e08e3..84028ddd6 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/client-react-native/examples/account/update-mfa-challenge.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/client-react-native/examples/account/update-mfa-recovery-codes.md index 5283ebca1..4031ab7b2 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/client-react-native/examples/account/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-mfa.md b/examples/1.9.x/client-react-native/examples/account/update-mfa.md index be3e8b9a3..ad4e5ea39 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-mfa.md +++ b/examples/1.9.x/client-react-native/examples/account/update-mfa.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-name.md b/examples/1.9.x/client-react-native/examples/account/update-name.md index 5b9182e64..926e45711 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-name.md +++ b/examples/1.9.x/client-react-native/examples/account/update-name.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-password.md b/examples/1.9.x/client-react-native/examples/account/update-password.md index 7ea08255d..8415aa27c 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-password.md +++ b/examples/1.9.x/client-react-native/examples/account/update-password.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-phone-session.md b/examples/1.9.x/client-react-native/examples/account/update-phone-session.md index 1b63ed692..29e9d4c51 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-phone-session.md +++ b/examples/1.9.x/client-react-native/examples/account/update-phone-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-phone-verification.md b/examples/1.9.x/client-react-native/examples/account/update-phone-verification.md index 3f25a7378..11e87f4a5 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-phone-verification.md +++ b/examples/1.9.x/client-react-native/examples/account/update-phone-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-phone.md b/examples/1.9.x/client-react-native/examples/account/update-phone.md index 5206263a9..66b3e2dbe 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-phone.md +++ b/examples/1.9.x/client-react-native/examples/account/update-phone.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-prefs.md b/examples/1.9.x/client-react-native/examples/account/update-prefs.md index 510d038a1..c52017ac6 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-prefs.md +++ b/examples/1.9.x/client-react-native/examples/account/update-prefs.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-push-target.md b/examples/1.9.x/client-react-native/examples/account/update-push-target.md index 3ca599f15..1fcbd35a2 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-push-target.md +++ b/examples/1.9.x/client-react-native/examples/account/update-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-recovery.md b/examples/1.9.x/client-react-native/examples/account/update-recovery.md index faebfc469..666a3589c 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-recovery.md +++ b/examples/1.9.x/client-react-native/examples/account/update-recovery.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-session.md b/examples/1.9.x/client-react-native/examples/account/update-session.md index 7c99dfaf5..392cf98a4 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-session.md +++ b/examples/1.9.x/client-react-native/examples/account/update-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-status.md b/examples/1.9.x/client-react-native/examples/account/update-status.md index 0e079e44f..73cf022e7 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-status.md +++ b/examples/1.9.x/client-react-native/examples/account/update-status.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/account/update-verification.md b/examples/1.9.x/client-react-native/examples/account/update-verification.md index efba67868..37bf0337f 100644 --- a/examples/1.9.x/client-react-native/examples/account/update-verification.md +++ b/examples/1.9.x/client-react-native/examples/account/update-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-react-native/examples/avatars/get-browser.md b/examples/1.9.x/client-react-native/examples/avatars/get-browser.md index ff14a8c90..51bc89d8a 100644 --- a/examples/1.9.x/client-react-native/examples/avatars/get-browser.md +++ b/examples/1.9.x/client-react-native/examples/avatars/get-browser.md @@ -2,7 +2,7 @@ import { Client, Avatars, Browser } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-react-native/examples/avatars/get-credit-card.md b/examples/1.9.x/client-react-native/examples/avatars/get-credit-card.md index 1c83c95bc..e0245c89b 100644 --- a/examples/1.9.x/client-react-native/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/client-react-native/examples/avatars/get-credit-card.md @@ -2,7 +2,7 @@ import { Client, Avatars, CreditCard } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-react-native/examples/avatars/get-favicon.md b/examples/1.9.x/client-react-native/examples/avatars/get-favicon.md index c08209219..e3cfdc97b 100644 --- a/examples/1.9.x/client-react-native/examples/avatars/get-favicon.md +++ b/examples/1.9.x/client-react-native/examples/avatars/get-favicon.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-react-native/examples/avatars/get-flag.md b/examples/1.9.x/client-react-native/examples/avatars/get-flag.md index dd0fb7342..f9fe76963 100644 --- a/examples/1.9.x/client-react-native/examples/avatars/get-flag.md +++ b/examples/1.9.x/client-react-native/examples/avatars/get-flag.md @@ -2,7 +2,7 @@ import { Client, Avatars, Flag } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-react-native/examples/avatars/get-image.md b/examples/1.9.x/client-react-native/examples/avatars/get-image.md index da1074827..28be4e8b7 100644 --- a/examples/1.9.x/client-react-native/examples/avatars/get-image.md +++ b/examples/1.9.x/client-react-native/examples/avatars/get-image.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-react-native/examples/avatars/get-initials.md b/examples/1.9.x/client-react-native/examples/avatars/get-initials.md index fbcf43ed0..72ae06198 100644 --- a/examples/1.9.x/client-react-native/examples/avatars/get-initials.md +++ b/examples/1.9.x/client-react-native/examples/avatars/get-initials.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-react-native/examples/avatars/get-qr.md b/examples/1.9.x/client-react-native/examples/avatars/get-qr.md index b73c62150..05fa7d81f 100644 --- a/examples/1.9.x/client-react-native/examples/avatars/get-qr.md +++ b/examples/1.9.x/client-react-native/examples/avatars/get-qr.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-react-native/examples/avatars/get-screenshot.md b/examples/1.9.x/client-react-native/examples/avatars/get-screenshot.md index 006e5af63..8dd61a543 100644 --- a/examples/1.9.x/client-react-native/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/client-react-native/examples/avatars/get-screenshot.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Avatars, Theme, Timezone, BrowserPermission, ImageFormat } from "react-native-appwrite"; +import { Client, Avatars, BrowserTheme, Timezone, BrowserPermission, ImageFormat } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); @@ -16,7 +16,7 @@ const result = avatars.getScreenshot({ viewportWidth: 1920, // optional viewportHeight: 1080, // optional scale: 2, // optional - theme: Theme.Dark, // optional + theme: BrowserTheme.Dark, // optional userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', // optional fullpage: true, // optional locale: 'en-US', // optional diff --git a/examples/1.9.x/client-react-native/examples/databases/create-document.md b/examples/1.9.x/client-react-native/examples/databases/create-document.md index 0b5c538bc..8874d97d3 100644 --- a/examples/1.9.x/client-react-native/examples/databases/create-document.md +++ b/examples/1.9.x/client-react-native/examples/databases/create-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/create-operations.md b/examples/1.9.x/client-react-native/examples/databases/create-operations.md index c4495a240..15feff6d7 100644 --- a/examples/1.9.x/client-react-native/examples/databases/create-operations.md +++ b/examples/1.9.x/client-react-native/examples/databases/create-operations.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/create-transaction.md b/examples/1.9.x/client-react-native/examples/databases/create-transaction.md index a1c4d328b..7c3c15dd0 100644 --- a/examples/1.9.x/client-react-native/examples/databases/create-transaction.md +++ b/examples/1.9.x/client-react-native/examples/databases/create-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/decrement-document-attribute.md b/examples/1.9.x/client-react-native/examples/databases/decrement-document-attribute.md index 19a8742b6..8f3ac9f01 100644 --- a/examples/1.9.x/client-react-native/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/client-react-native/examples/databases/decrement-document-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/delete-document.md b/examples/1.9.x/client-react-native/examples/databases/delete-document.md index c8db1b214..6fae6785f 100644 --- a/examples/1.9.x/client-react-native/examples/databases/delete-document.md +++ b/examples/1.9.x/client-react-native/examples/databases/delete-document.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/delete-transaction.md b/examples/1.9.x/client-react-native/examples/databases/delete-transaction.md index 30f149d9d..5462eada6 100644 --- a/examples/1.9.x/client-react-native/examples/databases/delete-transaction.md +++ b/examples/1.9.x/client-react-native/examples/databases/delete-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/get-document.md b/examples/1.9.x/client-react-native/examples/databases/get-document.md index 1dcfc2b2f..ef1d9979e 100644 --- a/examples/1.9.x/client-react-native/examples/databases/get-document.md +++ b/examples/1.9.x/client-react-native/examples/databases/get-document.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/get-transaction.md b/examples/1.9.x/client-react-native/examples/databases/get-transaction.md index 839712a96..8cbfd0bd2 100644 --- a/examples/1.9.x/client-react-native/examples/databases/get-transaction.md +++ b/examples/1.9.x/client-react-native/examples/databases/get-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/increment-document-attribute.md b/examples/1.9.x/client-react-native/examples/databases/increment-document-attribute.md index 95123e835..839be667e 100644 --- a/examples/1.9.x/client-react-native/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/client-react-native/examples/databases/increment-document-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/list-documents.md b/examples/1.9.x/client-react-native/examples/databases/list-documents.md index 7907cd3fb..cae5769de 100644 --- a/examples/1.9.x/client-react-native/examples/databases/list-documents.md +++ b/examples/1.9.x/client-react-native/examples/databases/list-documents.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/list-transactions.md b/examples/1.9.x/client-react-native/examples/databases/list-transactions.md index 0ca57bacc..6b6579cca 100644 --- a/examples/1.9.x/client-react-native/examples/databases/list-transactions.md +++ b/examples/1.9.x/client-react-native/examples/databases/list-transactions.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/update-document.md b/examples/1.9.x/client-react-native/examples/databases/update-document.md index 44ff772ec..c153e5db6 100644 --- a/examples/1.9.x/client-react-native/examples/databases/update-document.md +++ b/examples/1.9.x/client-react-native/examples/databases/update-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/update-transaction.md b/examples/1.9.x/client-react-native/examples/databases/update-transaction.md index fa1a745c9..f65a41ba7 100644 --- a/examples/1.9.x/client-react-native/examples/databases/update-transaction.md +++ b/examples/1.9.x/client-react-native/examples/databases/update-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/databases/upsert-document.md b/examples/1.9.x/client-react-native/examples/databases/upsert-document.md index 9552a9d2d..bb3e78536 100644 --- a/examples/1.9.x/client-react-native/examples/databases/upsert-document.md +++ b/examples/1.9.x/client-react-native/examples/databases/upsert-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-react-native/examples/functions/create-execution.md b/examples/1.9.x/client-react-native/examples/functions/create-execution.md index 3a05c923a..04ecc9dfa 100644 --- a/examples/1.9.x/client-react-native/examples/functions/create-execution.md +++ b/examples/1.9.x/client-react-native/examples/functions/create-execution.md @@ -2,7 +2,7 @@ import { Client, Functions, ExecutionMethod } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/client-react-native/examples/functions/get-execution.md b/examples/1.9.x/client-react-native/examples/functions/get-execution.md index 9393fc308..cfd6edd22 100644 --- a/examples/1.9.x/client-react-native/examples/functions/get-execution.md +++ b/examples/1.9.x/client-react-native/examples/functions/get-execution.md @@ -2,7 +2,7 @@ import { Client, Functions } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/client-react-native/examples/functions/list-executions.md b/examples/1.9.x/client-react-native/examples/functions/list-executions.md index 405fbe778..9699c9975 100644 --- a/examples/1.9.x/client-react-native/examples/functions/list-executions.md +++ b/examples/1.9.x/client-react-native/examples/functions/list-executions.md @@ -2,7 +2,7 @@ import { Client, Functions } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/client-react-native/examples/graphql/mutation.md b/examples/1.9.x/client-react-native/examples/graphql/mutation.md index 3b7b3dc1a..77905120f 100644 --- a/examples/1.9.x/client-react-native/examples/graphql/mutation.md +++ b/examples/1.9.x/client-react-native/examples/graphql/mutation.md @@ -2,7 +2,7 @@ import { Client, Graphql } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const graphql = new Graphql(client); diff --git a/examples/1.9.x/client-react-native/examples/graphql/query.md b/examples/1.9.x/client-react-native/examples/graphql/query.md index fe3afbf9d..6db43b0f0 100644 --- a/examples/1.9.x/client-react-native/examples/graphql/query.md +++ b/examples/1.9.x/client-react-native/examples/graphql/query.md @@ -2,7 +2,7 @@ import { Client, Graphql } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const graphql = new Graphql(client); diff --git a/examples/1.9.x/client-react-native/examples/locale/get.md b/examples/1.9.x/client-react-native/examples/locale/get.md index 81f04e180..293d082b9 100644 --- a/examples/1.9.x/client-react-native/examples/locale/get.md +++ b/examples/1.9.x/client-react-native/examples/locale/get.md @@ -2,7 +2,7 @@ import { Client, Locale } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-react-native/examples/locale/list-codes.md b/examples/1.9.x/client-react-native/examples/locale/list-codes.md index efea79713..6ae5c6ef8 100644 --- a/examples/1.9.x/client-react-native/examples/locale/list-codes.md +++ b/examples/1.9.x/client-react-native/examples/locale/list-codes.md @@ -2,7 +2,7 @@ import { Client, Locale } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-react-native/examples/locale/list-continents.md b/examples/1.9.x/client-react-native/examples/locale/list-continents.md index aa3eba825..14a23633f 100644 --- a/examples/1.9.x/client-react-native/examples/locale/list-continents.md +++ b/examples/1.9.x/client-react-native/examples/locale/list-continents.md @@ -2,7 +2,7 @@ import { Client, Locale } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-react-native/examples/locale/list-countries-eu.md b/examples/1.9.x/client-react-native/examples/locale/list-countries-eu.md index 92447251d..25b01a85d 100644 --- a/examples/1.9.x/client-react-native/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/client-react-native/examples/locale/list-countries-eu.md @@ -2,7 +2,7 @@ import { Client, Locale } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-react-native/examples/locale/list-countries-phones.md b/examples/1.9.x/client-react-native/examples/locale/list-countries-phones.md index c09816b0d..c12b29bb2 100644 --- a/examples/1.9.x/client-react-native/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/client-react-native/examples/locale/list-countries-phones.md @@ -2,7 +2,7 @@ import { Client, Locale } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-react-native/examples/locale/list-countries.md b/examples/1.9.x/client-react-native/examples/locale/list-countries.md index bf607a4e4..a251ecb4a 100644 --- a/examples/1.9.x/client-react-native/examples/locale/list-countries.md +++ b/examples/1.9.x/client-react-native/examples/locale/list-countries.md @@ -2,7 +2,7 @@ import { Client, Locale } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-react-native/examples/locale/list-currencies.md b/examples/1.9.x/client-react-native/examples/locale/list-currencies.md index ade09501d..52b7b669b 100644 --- a/examples/1.9.x/client-react-native/examples/locale/list-currencies.md +++ b/examples/1.9.x/client-react-native/examples/locale/list-currencies.md @@ -2,7 +2,7 @@ import { Client, Locale } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-react-native/examples/locale/list-languages.md b/examples/1.9.x/client-react-native/examples/locale/list-languages.md index 12e603f7f..802b4a48f 100644 --- a/examples/1.9.x/client-react-native/examples/locale/list-languages.md +++ b/examples/1.9.x/client-react-native/examples/locale/list-languages.md @@ -2,7 +2,7 @@ import { Client, Locale } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-react-native/examples/messaging/create-subscriber.md b/examples/1.9.x/client-react-native/examples/messaging/create-subscriber.md index ae78a1349..83ec65305 100644 --- a/examples/1.9.x/client-react-native/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/client-react-native/examples/messaging/create-subscriber.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/client-react-native/examples/messaging/delete-subscriber.md b/examples/1.9.x/client-react-native/examples/messaging/delete-subscriber.md index da6370c12..d88877fe8 100644 --- a/examples/1.9.x/client-react-native/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/client-react-native/examples/messaging/delete-subscriber.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/client-react-native/examples/presences/delete.md b/examples/1.9.x/client-react-native/examples/presences/delete.md index 447de030b..0e724b61a 100644 --- a/examples/1.9.x/client-react-native/examples/presences/delete.md +++ b/examples/1.9.x/client-react-native/examples/presences/delete.md @@ -2,7 +2,7 @@ import { Client, Presences } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/client-react-native/examples/presences/get.md b/examples/1.9.x/client-react-native/examples/presences/get.md index e5b897188..290869793 100644 --- a/examples/1.9.x/client-react-native/examples/presences/get.md +++ b/examples/1.9.x/client-react-native/examples/presences/get.md @@ -2,7 +2,7 @@ import { Client, Presences } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/client-react-native/examples/presences/list.md b/examples/1.9.x/client-react-native/examples/presences/list.md index ccfe70792..c05d0ac9d 100644 --- a/examples/1.9.x/client-react-native/examples/presences/list.md +++ b/examples/1.9.x/client-react-native/examples/presences/list.md @@ -2,7 +2,7 @@ import { Client, Presences } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/client-react-native/examples/presences/update.md b/examples/1.9.x/client-react-native/examples/presences/update.md index 16ef74289..4c3bd91e9 100644 --- a/examples/1.9.x/client-react-native/examples/presences/update.md +++ b/examples/1.9.x/client-react-native/examples/presences/update.md @@ -2,7 +2,7 @@ import { Client, Presences, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/client-react-native/examples/presences/upsert.md b/examples/1.9.x/client-react-native/examples/presences/upsert.md index 522c44e0a..d68f5b3c0 100644 --- a/examples/1.9.x/client-react-native/examples/presences/upsert.md +++ b/examples/1.9.x/client-react-native/examples/presences/upsert.md @@ -2,7 +2,7 @@ import { Client, Presences, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/client-react-native/examples/storage/create-file.md b/examples/1.9.x/client-react-native/examples/storage/create-file.md index c1ca26ae3..d7070367f 100644 --- a/examples/1.9.x/client-react-native/examples/storage/create-file.md +++ b/examples/1.9.x/client-react-native/examples/storage/create-file.md @@ -2,7 +2,7 @@ import { Client, Storage, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-react-native/examples/storage/delete-file.md b/examples/1.9.x/client-react-native/examples/storage/delete-file.md index f4c109fbc..bd292223f 100644 --- a/examples/1.9.x/client-react-native/examples/storage/delete-file.md +++ b/examples/1.9.x/client-react-native/examples/storage/delete-file.md @@ -2,7 +2,7 @@ import { Client, Storage } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-react-native/examples/storage/get-file-download.md b/examples/1.9.x/client-react-native/examples/storage/get-file-download.md index 52f602b9d..b0dce912b 100644 --- a/examples/1.9.x/client-react-native/examples/storage/get-file-download.md +++ b/examples/1.9.x/client-react-native/examples/storage/get-file-download.md @@ -2,7 +2,7 @@ import { Client, Storage } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-react-native/examples/storage/get-file-preview.md b/examples/1.9.x/client-react-native/examples/storage/get-file-preview.md index d3c944adc..22b60b6c5 100644 --- a/examples/1.9.x/client-react-native/examples/storage/get-file-preview.md +++ b/examples/1.9.x/client-react-native/examples/storage/get-file-preview.md @@ -2,7 +2,7 @@ import { Client, Storage, ImageGravity, ImageFormat } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-react-native/examples/storage/get-file-view.md b/examples/1.9.x/client-react-native/examples/storage/get-file-view.md index 28e6e43ab..2108e89b6 100644 --- a/examples/1.9.x/client-react-native/examples/storage/get-file-view.md +++ b/examples/1.9.x/client-react-native/examples/storage/get-file-view.md @@ -2,7 +2,7 @@ import { Client, Storage } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-react-native/examples/storage/get-file.md b/examples/1.9.x/client-react-native/examples/storage/get-file.md index d587547c3..5aed9c47c 100644 --- a/examples/1.9.x/client-react-native/examples/storage/get-file.md +++ b/examples/1.9.x/client-react-native/examples/storage/get-file.md @@ -2,7 +2,7 @@ import { Client, Storage } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-react-native/examples/storage/list-files.md b/examples/1.9.x/client-react-native/examples/storage/list-files.md index ac21eadbd..3ca210c89 100644 --- a/examples/1.9.x/client-react-native/examples/storage/list-files.md +++ b/examples/1.9.x/client-react-native/examples/storage/list-files.md @@ -2,7 +2,7 @@ import { Client, Storage } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-react-native/examples/storage/update-file.md b/examples/1.9.x/client-react-native/examples/storage/update-file.md index 82fc4d26b..1364dacba 100644 --- a/examples/1.9.x/client-react-native/examples/storage/update-file.md +++ b/examples/1.9.x/client-react-native/examples/storage/update-file.md @@ -2,7 +2,7 @@ import { Client, Storage, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/create-operations.md b/examples/1.9.x/client-react-native/examples/tablesdb/create-operations.md index c061f76cf..be315697c 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/create-operations.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/create-row.md b/examples/1.9.x/client-react-native/examples/tablesdb/create-row.md index 18e1777dc..7e7b1e241 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/create-row.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/create-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/create-transaction.md b/examples/1.9.x/client-react-native/examples/tablesdb/create-transaction.md index 4d73a3e2c..734240c8c 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/create-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/client-react-native/examples/tablesdb/decrement-row-column.md index 3d036ad64..5c11ac011 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/decrement-row-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/delete-row.md b/examples/1.9.x/client-react-native/examples/tablesdb/delete-row.md index a7b94e27d..ad9284d8e 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/delete-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/delete-transaction.md b/examples/1.9.x/client-react-native/examples/tablesdb/delete-transaction.md index 4fb820432..6bbd84812 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/delete-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/get-row.md b/examples/1.9.x/client-react-native/examples/tablesdb/get-row.md index 7fa742efa..3a5cbb190 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/get-row.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/get-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/get-transaction.md b/examples/1.9.x/client-react-native/examples/tablesdb/get-transaction.md index 2c5d350f9..85d07eea8 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/get-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/increment-row-column.md b/examples/1.9.x/client-react-native/examples/tablesdb/increment-row-column.md index 6c924ad9e..7e1eff662 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/increment-row-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/list-rows.md b/examples/1.9.x/client-react-native/examples/tablesdb/list-rows.md index 80bbc454a..04a8d21d1 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/list-rows.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/list-transactions.md b/examples/1.9.x/client-react-native/examples/tablesdb/list-transactions.md index 008ed3de1..9424d635e 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/list-transactions.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/update-row.md b/examples/1.9.x/client-react-native/examples/tablesdb/update-row.md index 0916853f4..3b0898569 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/update-row.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/update-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/update-transaction.md b/examples/1.9.x/client-react-native/examples/tablesdb/update-transaction.md index d94c24a0d..6361ec16e 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/update-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/tablesdb/upsert-row.md b/examples/1.9.x/client-react-native/examples/tablesdb/upsert-row.md index e578cccb3..0cf69ea5a 100644 --- a/examples/1.9.x/client-react-native/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/client-react-native/examples/tablesdb/upsert-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/create-membership.md b/examples/1.9.x/client-react-native/examples/teams/create-membership.md index 824c129cb..efa3d9b06 100644 --- a/examples/1.9.x/client-react-native/examples/teams/create-membership.md +++ b/examples/1.9.x/client-react-native/examples/teams/create-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/create.md b/examples/1.9.x/client-react-native/examples/teams/create.md index c63389308..285adf92d 100644 --- a/examples/1.9.x/client-react-native/examples/teams/create.md +++ b/examples/1.9.x/client-react-native/examples/teams/create.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/delete-membership.md b/examples/1.9.x/client-react-native/examples/teams/delete-membership.md index 1cdb4baf7..8cf515e19 100644 --- a/examples/1.9.x/client-react-native/examples/teams/delete-membership.md +++ b/examples/1.9.x/client-react-native/examples/teams/delete-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/delete.md b/examples/1.9.x/client-react-native/examples/teams/delete.md index 81a4fa640..f9bd5bca8 100644 --- a/examples/1.9.x/client-react-native/examples/teams/delete.md +++ b/examples/1.9.x/client-react-native/examples/teams/delete.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/get-membership.md b/examples/1.9.x/client-react-native/examples/teams/get-membership.md index 41e96e224..8cd34b4eb 100644 --- a/examples/1.9.x/client-react-native/examples/teams/get-membership.md +++ b/examples/1.9.x/client-react-native/examples/teams/get-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/get-prefs.md b/examples/1.9.x/client-react-native/examples/teams/get-prefs.md index 505703d30..8a18c4555 100644 --- a/examples/1.9.x/client-react-native/examples/teams/get-prefs.md +++ b/examples/1.9.x/client-react-native/examples/teams/get-prefs.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/get.md b/examples/1.9.x/client-react-native/examples/teams/get.md index 2b0131e1d..581043215 100644 --- a/examples/1.9.x/client-react-native/examples/teams/get.md +++ b/examples/1.9.x/client-react-native/examples/teams/get.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/list-memberships.md b/examples/1.9.x/client-react-native/examples/teams/list-memberships.md index 6b7fc1550..d1fca3923 100644 --- a/examples/1.9.x/client-react-native/examples/teams/list-memberships.md +++ b/examples/1.9.x/client-react-native/examples/teams/list-memberships.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/list.md b/examples/1.9.x/client-react-native/examples/teams/list.md index a7fa1ec21..3668b564c 100644 --- a/examples/1.9.x/client-react-native/examples/teams/list.md +++ b/examples/1.9.x/client-react-native/examples/teams/list.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/update-membership-status.md b/examples/1.9.x/client-react-native/examples/teams/update-membership-status.md index 83a52c320..14a66ff4e 100644 --- a/examples/1.9.x/client-react-native/examples/teams/update-membership-status.md +++ b/examples/1.9.x/client-react-native/examples/teams/update-membership-status.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/update-membership.md b/examples/1.9.x/client-react-native/examples/teams/update-membership.md index 0f00f5ee7..3bbc09eac 100644 --- a/examples/1.9.x/client-react-native/examples/teams/update-membership.md +++ b/examples/1.9.x/client-react-native/examples/teams/update-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/update-name.md b/examples/1.9.x/client-react-native/examples/teams/update-name.md index d362b2cbe..d1939bc68 100644 --- a/examples/1.9.x/client-react-native/examples/teams/update-name.md +++ b/examples/1.9.x/client-react-native/examples/teams/update-name.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-react-native/examples/teams/update-prefs.md b/examples/1.9.x/client-react-native/examples/teams/update-prefs.md index f603ac96e..86ea1fb3a 100644 --- a/examples/1.9.x/client-react-native/examples/teams/update-prefs.md +++ b/examples/1.9.x/client-react-native/examples/teams/update-prefs.md @@ -2,7 +2,7 @@ import { Client, Teams } from "react-native-appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-rest/examples/account/create-push-target.md b/examples/1.9.x/client-rest/examples/account/create-push-target.md index f470b2fe3..5e80f853d 100644 --- a/examples/1.9.x/client-rest/examples/account/create-push-target.md +++ b/examples/1.9.x/client-rest/examples/account/create-push-target.md @@ -5,7 +5,6 @@ Content-Type: application/json X-Appwrite-Response-Format: 1.9.5 X-Appwrite-Project: X-Appwrite-Session: -X-Appwrite-JWT: { "targetId": "", diff --git a/examples/1.9.x/client-rest/examples/account/delete-push-target.md b/examples/1.9.x/client-rest/examples/account/delete-push-target.md index 4bbfebeab..d2bbd4463 100644 --- a/examples/1.9.x/client-rest/examples/account/delete-push-target.md +++ b/examples/1.9.x/client-rest/examples/account/delete-push-target.md @@ -5,6 +5,5 @@ Content-Type: application/json X-Appwrite-Response-Format: 1.9.5 X-Appwrite-Project: X-Appwrite-Session: -X-Appwrite-JWT: ``` diff --git a/examples/1.9.x/client-rest/examples/account/update-push-target.md b/examples/1.9.x/client-rest/examples/account/update-push-target.md index 079211a9d..f5ec15530 100644 --- a/examples/1.9.x/client-rest/examples/account/update-push-target.md +++ b/examples/1.9.x/client-rest/examples/account/update-push-target.md @@ -5,7 +5,6 @@ Content-Type: application/json X-Appwrite-Response-Format: 1.9.5 X-Appwrite-Project: X-Appwrite-Session: -X-Appwrite-JWT: { "identifier": "" diff --git a/examples/1.9.x/client-web/examples/account/create-anonymous-session.md b/examples/1.9.x/client-web/examples/account/create-anonymous-session.md index 818f50a40..7c05a3ede 100644 --- a/examples/1.9.x/client-web/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/client-web/examples/account/create-anonymous-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-email-password-session.md b/examples/1.9.x/client-web/examples/account/create-email-password-session.md index 4010b91f3..dc0c08e0a 100644 --- a/examples/1.9.x/client-web/examples/account/create-email-password-session.md +++ b/examples/1.9.x/client-web/examples/account/create-email-password-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-email-token.md b/examples/1.9.x/client-web/examples/account/create-email-token.md index 940a7f701..b0c0be3a2 100644 --- a/examples/1.9.x/client-web/examples/account/create-email-token.md +++ b/examples/1.9.x/client-web/examples/account/create-email-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-email-verification.md b/examples/1.9.x/client-web/examples/account/create-email-verification.md index a3e378d23..adb4797b9 100644 --- a/examples/1.9.x/client-web/examples/account/create-email-verification.md +++ b/examples/1.9.x/client-web/examples/account/create-email-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-jwt.md b/examples/1.9.x/client-web/examples/account/create-jwt.md index 0ba2d2661..daa705864 100644 --- a/examples/1.9.x/client-web/examples/account/create-jwt.md +++ b/examples/1.9.x/client-web/examples/account/create-jwt.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-magic-url-token.md b/examples/1.9.x/client-web/examples/account/create-magic-url-token.md index 59d1aaf03..6bf3733f1 100644 --- a/examples/1.9.x/client-web/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/client-web/examples/account/create-magic-url-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-mfa-authenticator.md b/examples/1.9.x/client-web/examples/account/create-mfa-authenticator.md index cf6a60980..173d7a71d 100644 --- a/examples/1.9.x/client-web/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/client-web/examples/account/create-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-mfa-challenge.md b/examples/1.9.x/client-web/examples/account/create-mfa-challenge.md index d9d9856d4..450ae57cd 100644 --- a/examples/1.9.x/client-web/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/client-web/examples/account/create-mfa-challenge.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticationFactor } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/client-web/examples/account/create-mfa-recovery-codes.md index 3c292f26b..4f303be6a 100644 --- a/examples/1.9.x/client-web/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/client-web/examples/account/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-o-auth-2-session.md b/examples/1.9.x/client-web/examples/account/create-o-auth-2-session.md index 734b69729..2fea9811f 100644 --- a/examples/1.9.x/client-web/examples/account/create-o-auth-2-session.md +++ b/examples/1.9.x/client-web/examples/account/create-o-auth-2-session.md @@ -2,7 +2,7 @@ import { Client, Account, OAuthProvider } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-o-auth-2-token.md b/examples/1.9.x/client-web/examples/account/create-o-auth-2-token.md index f6187249f..cca3c1306 100644 --- a/examples/1.9.x/client-web/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/client-web/examples/account/create-o-auth-2-token.md @@ -2,7 +2,7 @@ import { Client, Account, OAuthProvider } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-phone-token.md b/examples/1.9.x/client-web/examples/account/create-phone-token.md index 78812e334..152b65ae0 100644 --- a/examples/1.9.x/client-web/examples/account/create-phone-token.md +++ b/examples/1.9.x/client-web/examples/account/create-phone-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-phone-verification.md b/examples/1.9.x/client-web/examples/account/create-phone-verification.md index 9c0ea1432..6f12773b9 100644 --- a/examples/1.9.x/client-web/examples/account/create-phone-verification.md +++ b/examples/1.9.x/client-web/examples/account/create-phone-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-push-target.md b/examples/1.9.x/client-web/examples/account/create-push-target.md index 39f4d48a3..e65d7f24c 100644 --- a/examples/1.9.x/client-web/examples/account/create-push-target.md +++ b/examples/1.9.x/client-web/examples/account/create-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-recovery.md b/examples/1.9.x/client-web/examples/account/create-recovery.md index 0f4e7a919..259d0d998 100644 --- a/examples/1.9.x/client-web/examples/account/create-recovery.md +++ b/examples/1.9.x/client-web/examples/account/create-recovery.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-session.md b/examples/1.9.x/client-web/examples/account/create-session.md index 1639c12c7..e4a5a7068 100644 --- a/examples/1.9.x/client-web/examples/account/create-session.md +++ b/examples/1.9.x/client-web/examples/account/create-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create-verification.md b/examples/1.9.x/client-web/examples/account/create-verification.md index 0795d0ac0..bf86960d7 100644 --- a/examples/1.9.x/client-web/examples/account/create-verification.md +++ b/examples/1.9.x/client-web/examples/account/create-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/create.md b/examples/1.9.x/client-web/examples/account/create.md index a78197cde..05cb7678f 100644 --- a/examples/1.9.x/client-web/examples/account/create.md +++ b/examples/1.9.x/client-web/examples/account/create.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/delete-identity.md b/examples/1.9.x/client-web/examples/account/delete-identity.md index d63addb7c..75bc4da63 100644 --- a/examples/1.9.x/client-web/examples/account/delete-identity.md +++ b/examples/1.9.x/client-web/examples/account/delete-identity.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/client-web/examples/account/delete-mfa-authenticator.md index 079f0b95b..6efafbbd9 100644 --- a/examples/1.9.x/client-web/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/client-web/examples/account/delete-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/delete-push-target.md b/examples/1.9.x/client-web/examples/account/delete-push-target.md index 38d0ed5af..b0eaa97ef 100644 --- a/examples/1.9.x/client-web/examples/account/delete-push-target.md +++ b/examples/1.9.x/client-web/examples/account/delete-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/delete-session.md b/examples/1.9.x/client-web/examples/account/delete-session.md index 9d2b8f3e9..f98f61160 100644 --- a/examples/1.9.x/client-web/examples/account/delete-session.md +++ b/examples/1.9.x/client-web/examples/account/delete-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/delete-sessions.md b/examples/1.9.x/client-web/examples/account/delete-sessions.md index d7df883e8..c35a4542f 100644 --- a/examples/1.9.x/client-web/examples/account/delete-sessions.md +++ b/examples/1.9.x/client-web/examples/account/delete-sessions.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/client-web/examples/account/get-mfa-recovery-codes.md index 1d1025831..deec9de1f 100644 --- a/examples/1.9.x/client-web/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/client-web/examples/account/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/get-prefs.md b/examples/1.9.x/client-web/examples/account/get-prefs.md index 9e2d5e25c..21813b00d 100644 --- a/examples/1.9.x/client-web/examples/account/get-prefs.md +++ b/examples/1.9.x/client-web/examples/account/get-prefs.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/get-session.md b/examples/1.9.x/client-web/examples/account/get-session.md index 83ac4b0a0..a19f07a24 100644 --- a/examples/1.9.x/client-web/examples/account/get-session.md +++ b/examples/1.9.x/client-web/examples/account/get-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/get.md b/examples/1.9.x/client-web/examples/account/get.md index 0b6c59e38..18549a7a3 100644 --- a/examples/1.9.x/client-web/examples/account/get.md +++ b/examples/1.9.x/client-web/examples/account/get.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/list-identities.md b/examples/1.9.x/client-web/examples/account/list-identities.md index 8dee4b39e..9c7399ca9 100644 --- a/examples/1.9.x/client-web/examples/account/list-identities.md +++ b/examples/1.9.x/client-web/examples/account/list-identities.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/list-logs.md b/examples/1.9.x/client-web/examples/account/list-logs.md index 91be728fd..7634b9dcb 100644 --- a/examples/1.9.x/client-web/examples/account/list-logs.md +++ b/examples/1.9.x/client-web/examples/account/list-logs.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/list-mfa-factors.md b/examples/1.9.x/client-web/examples/account/list-mfa-factors.md index 9950129bb..94f68f2ba 100644 --- a/examples/1.9.x/client-web/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/client-web/examples/account/list-mfa-factors.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/list-sessions.md b/examples/1.9.x/client-web/examples/account/list-sessions.md index 2dae74884..f5a8e4c4a 100644 --- a/examples/1.9.x/client-web/examples/account/list-sessions.md +++ b/examples/1.9.x/client-web/examples/account/list-sessions.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-email-verification.md b/examples/1.9.x/client-web/examples/account/update-email-verification.md index f3e8b6191..eeab50481 100644 --- a/examples/1.9.x/client-web/examples/account/update-email-verification.md +++ b/examples/1.9.x/client-web/examples/account/update-email-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-email.md b/examples/1.9.x/client-web/examples/account/update-email.md index 0bd7d36cf..341fa4bb0 100644 --- a/examples/1.9.x/client-web/examples/account/update-email.md +++ b/examples/1.9.x/client-web/examples/account/update-email.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-magic-url-session.md b/examples/1.9.x/client-web/examples/account/update-magic-url-session.md index d05987195..9ff4fb1a8 100644 --- a/examples/1.9.x/client-web/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/client-web/examples/account/update-magic-url-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-mfa-authenticator.md b/examples/1.9.x/client-web/examples/account/update-mfa-authenticator.md index bf25c76ba..02551192e 100644 --- a/examples/1.9.x/client-web/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/client-web/examples/account/update-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-mfa-challenge.md b/examples/1.9.x/client-web/examples/account/update-mfa-challenge.md index a16ea43ac..7f5d9bf78 100644 --- a/examples/1.9.x/client-web/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/client-web/examples/account/update-mfa-challenge.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/client-web/examples/account/update-mfa-recovery-codes.md index 8bc8273c5..0c72ea9fe 100644 --- a/examples/1.9.x/client-web/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/client-web/examples/account/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-mfa.md b/examples/1.9.x/client-web/examples/account/update-mfa.md index f17ca2b1e..5ccbad702 100644 --- a/examples/1.9.x/client-web/examples/account/update-mfa.md +++ b/examples/1.9.x/client-web/examples/account/update-mfa.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-name.md b/examples/1.9.x/client-web/examples/account/update-name.md index 3e184d758..3997dcf28 100644 --- a/examples/1.9.x/client-web/examples/account/update-name.md +++ b/examples/1.9.x/client-web/examples/account/update-name.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-password.md b/examples/1.9.x/client-web/examples/account/update-password.md index 360c577f3..1499328a0 100644 --- a/examples/1.9.x/client-web/examples/account/update-password.md +++ b/examples/1.9.x/client-web/examples/account/update-password.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-phone-session.md b/examples/1.9.x/client-web/examples/account/update-phone-session.md index 5352cf0af..f011f0c10 100644 --- a/examples/1.9.x/client-web/examples/account/update-phone-session.md +++ b/examples/1.9.x/client-web/examples/account/update-phone-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-phone-verification.md b/examples/1.9.x/client-web/examples/account/update-phone-verification.md index 2ddd0f13e..aa698c8da 100644 --- a/examples/1.9.x/client-web/examples/account/update-phone-verification.md +++ b/examples/1.9.x/client-web/examples/account/update-phone-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-phone.md b/examples/1.9.x/client-web/examples/account/update-phone.md index 9f640a128..0980c2f5a 100644 --- a/examples/1.9.x/client-web/examples/account/update-phone.md +++ b/examples/1.9.x/client-web/examples/account/update-phone.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-prefs.md b/examples/1.9.x/client-web/examples/account/update-prefs.md index ca2841b75..092f918d7 100644 --- a/examples/1.9.x/client-web/examples/account/update-prefs.md +++ b/examples/1.9.x/client-web/examples/account/update-prefs.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-push-target.md b/examples/1.9.x/client-web/examples/account/update-push-target.md index 7c14aa3b6..24eee593d 100644 --- a/examples/1.9.x/client-web/examples/account/update-push-target.md +++ b/examples/1.9.x/client-web/examples/account/update-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-recovery.md b/examples/1.9.x/client-web/examples/account/update-recovery.md index e08d48cb2..3f3a0e96b 100644 --- a/examples/1.9.x/client-web/examples/account/update-recovery.md +++ b/examples/1.9.x/client-web/examples/account/update-recovery.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-session.md b/examples/1.9.x/client-web/examples/account/update-session.md index 9159580f2..4c7375ab4 100644 --- a/examples/1.9.x/client-web/examples/account/update-session.md +++ b/examples/1.9.x/client-web/examples/account/update-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-status.md b/examples/1.9.x/client-web/examples/account/update-status.md index ac2aa48e9..4f426c168 100644 --- a/examples/1.9.x/client-web/examples/account/update-status.md +++ b/examples/1.9.x/client-web/examples/account/update-status.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/account/update-verification.md b/examples/1.9.x/client-web/examples/account/update-verification.md index 3b52a83c5..4e8ff1a86 100644 --- a/examples/1.9.x/client-web/examples/account/update-verification.md +++ b/examples/1.9.x/client-web/examples/account/update-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/client-web/examples/avatars/get-browser.md b/examples/1.9.x/client-web/examples/avatars/get-browser.md index d4c1a40fb..88a13176d 100644 --- a/examples/1.9.x/client-web/examples/avatars/get-browser.md +++ b/examples/1.9.x/client-web/examples/avatars/get-browser.md @@ -2,7 +2,7 @@ import { Client, Avatars, Browser } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-web/examples/avatars/get-credit-card.md b/examples/1.9.x/client-web/examples/avatars/get-credit-card.md index 57758501a..e1fd6011c 100644 --- a/examples/1.9.x/client-web/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/client-web/examples/avatars/get-credit-card.md @@ -2,7 +2,7 @@ import { Client, Avatars, CreditCard } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-web/examples/avatars/get-favicon.md b/examples/1.9.x/client-web/examples/avatars/get-favicon.md index 8b09f65ff..ee3f8a4cb 100644 --- a/examples/1.9.x/client-web/examples/avatars/get-favicon.md +++ b/examples/1.9.x/client-web/examples/avatars/get-favicon.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-web/examples/avatars/get-flag.md b/examples/1.9.x/client-web/examples/avatars/get-flag.md index d24b9b407..9940b727f 100644 --- a/examples/1.9.x/client-web/examples/avatars/get-flag.md +++ b/examples/1.9.x/client-web/examples/avatars/get-flag.md @@ -2,7 +2,7 @@ import { Client, Avatars, Flag } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-web/examples/avatars/get-image.md b/examples/1.9.x/client-web/examples/avatars/get-image.md index f8f33731b..2518ab5b6 100644 --- a/examples/1.9.x/client-web/examples/avatars/get-image.md +++ b/examples/1.9.x/client-web/examples/avatars/get-image.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-web/examples/avatars/get-initials.md b/examples/1.9.x/client-web/examples/avatars/get-initials.md index 0722a72df..e19fd7b2b 100644 --- a/examples/1.9.x/client-web/examples/avatars/get-initials.md +++ b/examples/1.9.x/client-web/examples/avatars/get-initials.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-web/examples/avatars/get-qr.md b/examples/1.9.x/client-web/examples/avatars/get-qr.md index 829c71214..61b759a07 100644 --- a/examples/1.9.x/client-web/examples/avatars/get-qr.md +++ b/examples/1.9.x/client-web/examples/avatars/get-qr.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/client-web/examples/avatars/get-screenshot.md b/examples/1.9.x/client-web/examples/avatars/get-screenshot.md index 8804b1e83..094d001c3 100644 --- a/examples/1.9.x/client-web/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/client-web/examples/avatars/get-screenshot.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Avatars, Theme, Timezone, BrowserPermission, ImageFormat } from "appwrite"; +import { Client, Avatars, BrowserTheme, Timezone, BrowserPermission, ImageFormat } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); @@ -16,11 +16,11 @@ const result = avatars.getScreenshot({ viewportWidth: 1920, // optional viewportHeight: 1080, // optional scale: 2, // optional - theme: Theme.Dark, // optional + theme: BrowserTheme.Dark, // optional userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', // optional fullpage: true, // optional locale: 'en-US', // optional - timezone: Timezone.AmericaNewYork, // optional + timezone: Timezone.AfricaAbidjan, // optional latitude: 37.7749, // optional longitude: -122.4194, // optional accuracy: 100, // optional diff --git a/examples/1.9.x/client-web/examples/databases/create-document.md b/examples/1.9.x/client-web/examples/databases/create-document.md index 4d8d7f90e..d93d581cd 100644 --- a/examples/1.9.x/client-web/examples/databases/create-document.md +++ b/examples/1.9.x/client-web/examples/databases/create-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/create-operations.md b/examples/1.9.x/client-web/examples/databases/create-operations.md index 48c74718a..46f8d1e05 100644 --- a/examples/1.9.x/client-web/examples/databases/create-operations.md +++ b/examples/1.9.x/client-web/examples/databases/create-operations.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/create-transaction.md b/examples/1.9.x/client-web/examples/databases/create-transaction.md index eab2aa52e..7ac637327 100644 --- a/examples/1.9.x/client-web/examples/databases/create-transaction.md +++ b/examples/1.9.x/client-web/examples/databases/create-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/decrement-document-attribute.md b/examples/1.9.x/client-web/examples/databases/decrement-document-attribute.md index c657bd493..01d41f5e3 100644 --- a/examples/1.9.x/client-web/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/client-web/examples/databases/decrement-document-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/delete-document.md b/examples/1.9.x/client-web/examples/databases/delete-document.md index 956650887..e11dd85fe 100644 --- a/examples/1.9.x/client-web/examples/databases/delete-document.md +++ b/examples/1.9.x/client-web/examples/databases/delete-document.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/delete-transaction.md b/examples/1.9.x/client-web/examples/databases/delete-transaction.md index 2e41d9bed..8006258ef 100644 --- a/examples/1.9.x/client-web/examples/databases/delete-transaction.md +++ b/examples/1.9.x/client-web/examples/databases/delete-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/get-document.md b/examples/1.9.x/client-web/examples/databases/get-document.md index ad11eb8d4..ca25283d0 100644 --- a/examples/1.9.x/client-web/examples/databases/get-document.md +++ b/examples/1.9.x/client-web/examples/databases/get-document.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/get-transaction.md b/examples/1.9.x/client-web/examples/databases/get-transaction.md index 2419a8c02..b81d39475 100644 --- a/examples/1.9.x/client-web/examples/databases/get-transaction.md +++ b/examples/1.9.x/client-web/examples/databases/get-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/increment-document-attribute.md b/examples/1.9.x/client-web/examples/databases/increment-document-attribute.md index 51eec6d56..37f1ed6bc 100644 --- a/examples/1.9.x/client-web/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/client-web/examples/databases/increment-document-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/list-documents.md b/examples/1.9.x/client-web/examples/databases/list-documents.md index 5444dffb9..2ec115870 100644 --- a/examples/1.9.x/client-web/examples/databases/list-documents.md +++ b/examples/1.9.x/client-web/examples/databases/list-documents.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/list-transactions.md b/examples/1.9.x/client-web/examples/databases/list-transactions.md index 6a74afc04..ac59ffd84 100644 --- a/examples/1.9.x/client-web/examples/databases/list-transactions.md +++ b/examples/1.9.x/client-web/examples/databases/list-transactions.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/update-document.md b/examples/1.9.x/client-web/examples/databases/update-document.md index df5651d89..9dbab2dfb 100644 --- a/examples/1.9.x/client-web/examples/databases/update-document.md +++ b/examples/1.9.x/client-web/examples/databases/update-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/update-transaction.md b/examples/1.9.x/client-web/examples/databases/update-transaction.md index 5a50ef67c..9c40c2c68 100644 --- a/examples/1.9.x/client-web/examples/databases/update-transaction.md +++ b/examples/1.9.x/client-web/examples/databases/update-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/databases/upsert-document.md b/examples/1.9.x/client-web/examples/databases/upsert-document.md index 212964a6b..e39cafaa8 100644 --- a/examples/1.9.x/client-web/examples/databases/upsert-document.md +++ b/examples/1.9.x/client-web/examples/databases/upsert-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/client-web/examples/functions/create-execution.md b/examples/1.9.x/client-web/examples/functions/create-execution.md index 71dd8cc3a..e9979ced0 100644 --- a/examples/1.9.x/client-web/examples/functions/create-execution.md +++ b/examples/1.9.x/client-web/examples/functions/create-execution.md @@ -2,7 +2,7 @@ import { Client, Functions, ExecutionMethod } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/client-web/examples/functions/get-execution.md b/examples/1.9.x/client-web/examples/functions/get-execution.md index a9b22e296..ad48a5890 100644 --- a/examples/1.9.x/client-web/examples/functions/get-execution.md +++ b/examples/1.9.x/client-web/examples/functions/get-execution.md @@ -2,7 +2,7 @@ import { Client, Functions } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/client-web/examples/functions/list-executions.md b/examples/1.9.x/client-web/examples/functions/list-executions.md index 55aa3cb79..a3fca4277 100644 --- a/examples/1.9.x/client-web/examples/functions/list-executions.md +++ b/examples/1.9.x/client-web/examples/functions/list-executions.md @@ -2,7 +2,7 @@ import { Client, Functions } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/client-web/examples/graphql/mutation.md b/examples/1.9.x/client-web/examples/graphql/mutation.md index a0230ef64..6ce77fff8 100644 --- a/examples/1.9.x/client-web/examples/graphql/mutation.md +++ b/examples/1.9.x/client-web/examples/graphql/mutation.md @@ -2,7 +2,7 @@ import { Client, Graphql } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const graphql = new Graphql(client); diff --git a/examples/1.9.x/client-web/examples/graphql/query.md b/examples/1.9.x/client-web/examples/graphql/query.md index bef786ab2..cd0217d90 100644 --- a/examples/1.9.x/client-web/examples/graphql/query.md +++ b/examples/1.9.x/client-web/examples/graphql/query.md @@ -2,7 +2,7 @@ import { Client, Graphql } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const graphql = new Graphql(client); diff --git a/examples/1.9.x/client-web/examples/locale/get.md b/examples/1.9.x/client-web/examples/locale/get.md index 95e92c4c3..4544ad739 100644 --- a/examples/1.9.x/client-web/examples/locale/get.md +++ b/examples/1.9.x/client-web/examples/locale/get.md @@ -2,7 +2,7 @@ import { Client, Locale } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-web/examples/locale/list-codes.md b/examples/1.9.x/client-web/examples/locale/list-codes.md index d6e9d33b0..bf420cf6d 100644 --- a/examples/1.9.x/client-web/examples/locale/list-codes.md +++ b/examples/1.9.x/client-web/examples/locale/list-codes.md @@ -2,7 +2,7 @@ import { Client, Locale } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-web/examples/locale/list-continents.md b/examples/1.9.x/client-web/examples/locale/list-continents.md index 6af2b7f4a..0b45137a3 100644 --- a/examples/1.9.x/client-web/examples/locale/list-continents.md +++ b/examples/1.9.x/client-web/examples/locale/list-continents.md @@ -2,7 +2,7 @@ import { Client, Locale } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-web/examples/locale/list-countries-eu.md b/examples/1.9.x/client-web/examples/locale/list-countries-eu.md index 92b3fa087..a29567790 100644 --- a/examples/1.9.x/client-web/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/client-web/examples/locale/list-countries-eu.md @@ -2,7 +2,7 @@ import { Client, Locale } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-web/examples/locale/list-countries-phones.md b/examples/1.9.x/client-web/examples/locale/list-countries-phones.md index 517a19a3c..c8724a66f 100644 --- a/examples/1.9.x/client-web/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/client-web/examples/locale/list-countries-phones.md @@ -2,7 +2,7 @@ import { Client, Locale } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-web/examples/locale/list-countries.md b/examples/1.9.x/client-web/examples/locale/list-countries.md index f92f9985f..16586325a 100644 --- a/examples/1.9.x/client-web/examples/locale/list-countries.md +++ b/examples/1.9.x/client-web/examples/locale/list-countries.md @@ -2,7 +2,7 @@ import { Client, Locale } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-web/examples/locale/list-currencies.md b/examples/1.9.x/client-web/examples/locale/list-currencies.md index 50c0f2220..57a724294 100644 --- a/examples/1.9.x/client-web/examples/locale/list-currencies.md +++ b/examples/1.9.x/client-web/examples/locale/list-currencies.md @@ -2,7 +2,7 @@ import { Client, Locale } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-web/examples/locale/list-languages.md b/examples/1.9.x/client-web/examples/locale/list-languages.md index a3afe0014..fb4456a03 100644 --- a/examples/1.9.x/client-web/examples/locale/list-languages.md +++ b/examples/1.9.x/client-web/examples/locale/list-languages.md @@ -2,7 +2,7 @@ import { Client, Locale } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/client-web/examples/messaging/create-subscriber.md b/examples/1.9.x/client-web/examples/messaging/create-subscriber.md index c29c2f718..f8881133a 100644 --- a/examples/1.9.x/client-web/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/client-web/examples/messaging/create-subscriber.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/client-web/examples/messaging/delete-subscriber.md b/examples/1.9.x/client-web/examples/messaging/delete-subscriber.md index acd0be519..aa9f8b3e9 100644 --- a/examples/1.9.x/client-web/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/client-web/examples/messaging/delete-subscriber.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/client-web/examples/presences/delete.md b/examples/1.9.x/client-web/examples/presences/delete.md new file mode 100644 index 000000000..99482d95f --- /dev/null +++ b/examples/1.9.x/client-web/examples/presences/delete.md @@ -0,0 +1,15 @@ +```javascript +import { Client, Presences } from "appwrite"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const presences = new Presences(client); + +const result = await presences.delete({ + presenceId: '' +}); + +console.log(result); +``` diff --git a/examples/1.9.x/client-web/examples/presences/get.md b/examples/1.9.x/client-web/examples/presences/get.md new file mode 100644 index 000000000..0daeae6ad --- /dev/null +++ b/examples/1.9.x/client-web/examples/presences/get.md @@ -0,0 +1,15 @@ +```javascript +import { Client, Presences } from "appwrite"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const presences = new Presences(client); + +const result = await presences.get({ + presenceId: '' +}); + +console.log(result); +``` diff --git a/examples/1.9.x/client-web/examples/presences/list.md b/examples/1.9.x/client-web/examples/presences/list.md new file mode 100644 index 000000000..501cbf305 --- /dev/null +++ b/examples/1.9.x/client-web/examples/presences/list.md @@ -0,0 +1,17 @@ +```javascript +import { Client, Presences } from "appwrite"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const presences = new Presences(client); + +const result = await presences.list({ + queries: [], // optional + total: false, // optional + ttl: 0 // optional +}); + +console.log(result); +``` diff --git a/examples/1.9.x/client-web/examples/presences/update.md b/examples/1.9.x/client-web/examples/presences/update.md new file mode 100644 index 000000000..4a8aca05f --- /dev/null +++ b/examples/1.9.x/client-web/examples/presences/update.md @@ -0,0 +1,20 @@ +```javascript +import { Client, Presences, Permission, Role } from "appwrite"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const presences = new Presences(client); + +const result = await presences.update({ + presenceId: '', + status: '', // optional + expiresAt: '2020-10-15T06:38:00.000+00:00', // optional + metadata: {}, // optional + permissions: [Permission.read(Role.any())], // optional + purge: false // optional +}); + +console.log(result); +``` diff --git a/examples/1.9.x/client-web/examples/presences/upsert.md b/examples/1.9.x/client-web/examples/presences/upsert.md new file mode 100644 index 000000000..6e2ecfb59 --- /dev/null +++ b/examples/1.9.x/client-web/examples/presences/upsert.md @@ -0,0 +1,19 @@ +```javascript +import { Client, Presences, Permission, Role } from "appwrite"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const presences = new Presences(client); + +const result = await presences.upsert({ + presenceId: '', + status: '', + permissions: [Permission.read(Role.any())], // optional + expiresAt: '2020-10-15T06:38:00.000+00:00', // optional + metadata: {} // optional +}); + +console.log(result); +``` diff --git a/examples/1.9.x/client-web/examples/storage/create-file.md b/examples/1.9.x/client-web/examples/storage/create-file.md index b70885b2c..ec1103fc5 100644 --- a/examples/1.9.x/client-web/examples/storage/create-file.md +++ b/examples/1.9.x/client-web/examples/storage/create-file.md @@ -2,7 +2,7 @@ import { Client, Storage, Permission, Role } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-web/examples/storage/delete-file.md b/examples/1.9.x/client-web/examples/storage/delete-file.md index 950003b84..3b8e91833 100644 --- a/examples/1.9.x/client-web/examples/storage/delete-file.md +++ b/examples/1.9.x/client-web/examples/storage/delete-file.md @@ -2,7 +2,7 @@ import { Client, Storage } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-web/examples/storage/get-file-download.md b/examples/1.9.x/client-web/examples/storage/get-file-download.md index 7758c7b49..179333512 100644 --- a/examples/1.9.x/client-web/examples/storage/get-file-download.md +++ b/examples/1.9.x/client-web/examples/storage/get-file-download.md @@ -2,7 +2,7 @@ import { Client, Storage } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-web/examples/storage/get-file-preview.md b/examples/1.9.x/client-web/examples/storage/get-file-preview.md index 4d01ef0ce..a3800f92f 100644 --- a/examples/1.9.x/client-web/examples/storage/get-file-preview.md +++ b/examples/1.9.x/client-web/examples/storage/get-file-preview.md @@ -2,7 +2,7 @@ import { Client, Storage, ImageGravity, ImageFormat } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-web/examples/storage/get-file-view.md b/examples/1.9.x/client-web/examples/storage/get-file-view.md index 682e947c4..7cee6f359 100644 --- a/examples/1.9.x/client-web/examples/storage/get-file-view.md +++ b/examples/1.9.x/client-web/examples/storage/get-file-view.md @@ -2,7 +2,7 @@ import { Client, Storage } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-web/examples/storage/get-file.md b/examples/1.9.x/client-web/examples/storage/get-file.md index 826071406..2308fb876 100644 --- a/examples/1.9.x/client-web/examples/storage/get-file.md +++ b/examples/1.9.x/client-web/examples/storage/get-file.md @@ -2,7 +2,7 @@ import { Client, Storage } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-web/examples/storage/list-files.md b/examples/1.9.x/client-web/examples/storage/list-files.md index f2dd2f442..4de9cad2d 100644 --- a/examples/1.9.x/client-web/examples/storage/list-files.md +++ b/examples/1.9.x/client-web/examples/storage/list-files.md @@ -2,7 +2,7 @@ import { Client, Storage } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-web/examples/storage/update-file.md b/examples/1.9.x/client-web/examples/storage/update-file.md index eef78a1d6..be0bcc325 100644 --- a/examples/1.9.x/client-web/examples/storage/update-file.md +++ b/examples/1.9.x/client-web/examples/storage/update-file.md @@ -2,7 +2,7 @@ import { Client, Storage, Permission, Role } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/create-operations.md b/examples/1.9.x/client-web/examples/tablesdb/create-operations.md index 739b4e624..829e94db2 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/client-web/examples/tablesdb/create-operations.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/create-row.md b/examples/1.9.x/client-web/examples/tablesdb/create-row.md index 105c4445c..93fb15248 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/create-row.md +++ b/examples/1.9.x/client-web/examples/tablesdb/create-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/create-transaction.md b/examples/1.9.x/client-web/examples/tablesdb/create-transaction.md index 333eb80e5..7e88efaab 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/client-web/examples/tablesdb/create-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/client-web/examples/tablesdb/decrement-row-column.md index bad89263c..bf19ee70b 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/client-web/examples/tablesdb/decrement-row-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/delete-row.md b/examples/1.9.x/client-web/examples/tablesdb/delete-row.md index 126632867..69900dae0 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/client-web/examples/tablesdb/delete-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/delete-transaction.md b/examples/1.9.x/client-web/examples/tablesdb/delete-transaction.md index 0c98481cb..aacb62670 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/client-web/examples/tablesdb/delete-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/get-row.md b/examples/1.9.x/client-web/examples/tablesdb/get-row.md index 14316385a..744466ca4 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/get-row.md +++ b/examples/1.9.x/client-web/examples/tablesdb/get-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/get-transaction.md b/examples/1.9.x/client-web/examples/tablesdb/get-transaction.md index 00e72497f..967085d23 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/client-web/examples/tablesdb/get-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/increment-row-column.md b/examples/1.9.x/client-web/examples/tablesdb/increment-row-column.md index 2fa3354b9..ff6b3833c 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/client-web/examples/tablesdb/increment-row-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/list-rows.md b/examples/1.9.x/client-web/examples/tablesdb/list-rows.md index 455ec6fe8..d953c406e 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/client-web/examples/tablesdb/list-rows.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/list-transactions.md b/examples/1.9.x/client-web/examples/tablesdb/list-transactions.md index b64485188..6b3100783 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/client-web/examples/tablesdb/list-transactions.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/update-row.md b/examples/1.9.x/client-web/examples/tablesdb/update-row.md index 77a775b34..2addbb64a 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/update-row.md +++ b/examples/1.9.x/client-web/examples/tablesdb/update-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/update-transaction.md b/examples/1.9.x/client-web/examples/tablesdb/update-transaction.md index 80a8b89d9..bbeacbf28 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/client-web/examples/tablesdb/update-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/tablesdb/upsert-row.md b/examples/1.9.x/client-web/examples/tablesdb/upsert-row.md index fb971043c..2e3168ff1 100644 --- a/examples/1.9.x/client-web/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/client-web/examples/tablesdb/upsert-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/client-web/examples/teams/create-membership.md b/examples/1.9.x/client-web/examples/teams/create-membership.md index 5a23e078f..9b6b9ab84 100644 --- a/examples/1.9.x/client-web/examples/teams/create-membership.md +++ b/examples/1.9.x/client-web/examples/teams/create-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/create.md b/examples/1.9.x/client-web/examples/teams/create.md index 2c72bcdfb..fba36ba76 100644 --- a/examples/1.9.x/client-web/examples/teams/create.md +++ b/examples/1.9.x/client-web/examples/teams/create.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/delete-membership.md b/examples/1.9.x/client-web/examples/teams/delete-membership.md index 2fe132789..13d74a5a2 100644 --- a/examples/1.9.x/client-web/examples/teams/delete-membership.md +++ b/examples/1.9.x/client-web/examples/teams/delete-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/delete.md b/examples/1.9.x/client-web/examples/teams/delete.md index 054e34efe..4cb71bfb2 100644 --- a/examples/1.9.x/client-web/examples/teams/delete.md +++ b/examples/1.9.x/client-web/examples/teams/delete.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/get-membership.md b/examples/1.9.x/client-web/examples/teams/get-membership.md index bdd6c7844..9e8222c23 100644 --- a/examples/1.9.x/client-web/examples/teams/get-membership.md +++ b/examples/1.9.x/client-web/examples/teams/get-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/get-prefs.md b/examples/1.9.x/client-web/examples/teams/get-prefs.md index bf20ed471..b443afba5 100644 --- a/examples/1.9.x/client-web/examples/teams/get-prefs.md +++ b/examples/1.9.x/client-web/examples/teams/get-prefs.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/get.md b/examples/1.9.x/client-web/examples/teams/get.md index 836a8e08d..70b30a3da 100644 --- a/examples/1.9.x/client-web/examples/teams/get.md +++ b/examples/1.9.x/client-web/examples/teams/get.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/list-memberships.md b/examples/1.9.x/client-web/examples/teams/list-memberships.md index fd3fcd30d..d843ba9bd 100644 --- a/examples/1.9.x/client-web/examples/teams/list-memberships.md +++ b/examples/1.9.x/client-web/examples/teams/list-memberships.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/list.md b/examples/1.9.x/client-web/examples/teams/list.md index 3406925f4..3afc7749d 100644 --- a/examples/1.9.x/client-web/examples/teams/list.md +++ b/examples/1.9.x/client-web/examples/teams/list.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/update-membership-status.md b/examples/1.9.x/client-web/examples/teams/update-membership-status.md index 2ca1c62dc..9ebc46251 100644 --- a/examples/1.9.x/client-web/examples/teams/update-membership-status.md +++ b/examples/1.9.x/client-web/examples/teams/update-membership-status.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/update-membership.md b/examples/1.9.x/client-web/examples/teams/update-membership.md index ecfd1bc89..2ab1028d6 100644 --- a/examples/1.9.x/client-web/examples/teams/update-membership.md +++ b/examples/1.9.x/client-web/examples/teams/update-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/update-name.md b/examples/1.9.x/client-web/examples/teams/update-name.md index dce110781..be13d39b3 100644 --- a/examples/1.9.x/client-web/examples/teams/update-name.md +++ b/examples/1.9.x/client-web/examples/teams/update-name.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/client-web/examples/teams/update-prefs.md b/examples/1.9.x/client-web/examples/teams/update-prefs.md index 2c8a15a18..64bd61f36 100644 --- a/examples/1.9.x/client-web/examples/teams/update-prefs.md +++ b/examples/1.9.x/client-web/examples/teams/update-prefs.md @@ -2,7 +2,7 @@ import { Client, Teams } from "appwrite"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-cli/examples/organization/create-key.md b/examples/1.9.x/console-cli/examples/organization/create-key.md new file mode 100644 index 000000000..fcb3db319 --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/create-key.md @@ -0,0 +1,6 @@ +```bash +appwrite organization create-key \ + --key-id \ + --name \ + --scopes one two three +``` diff --git a/examples/1.9.x/console-cli/examples/organization/create-project.md b/examples/1.9.x/console-cli/examples/organization/create-project.md new file mode 100644 index 000000000..d291a485c --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/create-project.md @@ -0,0 +1,5 @@ +```bash +appwrite organization create-project \ + --project-id '' \ + --name +``` diff --git a/examples/1.9.x/console-cli/examples/organization/delete-key.md b/examples/1.9.x/console-cli/examples/organization/delete-key.md new file mode 100644 index 000000000..1468a0356 --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/delete-key.md @@ -0,0 +1,4 @@ +```bash +appwrite organization delete-key \ + --key-id +``` diff --git a/examples/1.9.x/console-cli/examples/organization/delete-project.md b/examples/1.9.x/console-cli/examples/organization/delete-project.md new file mode 100644 index 000000000..cbb31ae12 --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/delete-project.md @@ -0,0 +1,4 @@ +```bash +appwrite organization delete-project \ + --project-id +``` diff --git a/examples/1.9.x/console-cli/examples/organization/get-key.md b/examples/1.9.x/console-cli/examples/organization/get-key.md new file mode 100644 index 000000000..f13ceb72b --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/get-key.md @@ -0,0 +1,4 @@ +```bash +appwrite organization get-key \ + --key-id +``` diff --git a/examples/1.9.x/console-cli/examples/organization/get-project.md b/examples/1.9.x/console-cli/examples/organization/get-project.md new file mode 100644 index 000000000..858a5975e --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/get-project.md @@ -0,0 +1,4 @@ +```bash +appwrite organization get-project \ + --project-id +``` diff --git a/examples/1.9.x/console-cli/examples/organization/list-keys.md b/examples/1.9.x/console-cli/examples/organization/list-keys.md new file mode 100644 index 000000000..59a08f4cc --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/list-keys.md @@ -0,0 +1,4 @@ +```bash +appwrite organization list-keys \ + --limit 25 +``` diff --git a/examples/1.9.x/console-cli/examples/organization/list-projects.md b/examples/1.9.x/console-cli/examples/organization/list-projects.md new file mode 100644 index 000000000..e9562a36a --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/list-projects.md @@ -0,0 +1,4 @@ +```bash +appwrite organization list-projects \ + --limit 25 +``` diff --git a/examples/1.9.x/console-cli/examples/organization/update-key.md b/examples/1.9.x/console-cli/examples/organization/update-key.md new file mode 100644 index 000000000..f4a28714b --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/update-key.md @@ -0,0 +1,6 @@ +```bash +appwrite organization update-key \ + --key-id \ + --name \ + --scopes one two three +``` diff --git a/examples/1.9.x/console-cli/examples/organization/update-project.md b/examples/1.9.x/console-cli/examples/organization/update-project.md new file mode 100644 index 000000000..229fba967 --- /dev/null +++ b/examples/1.9.x/console-cli/examples/organization/update-project.md @@ -0,0 +1,5 @@ +```bash +appwrite organization update-project \ + --project-id \ + --name +``` diff --git a/examples/1.9.x/console-web/examples/account/create-anonymous-session.md b/examples/1.9.x/console-web/examples/account/create-anonymous-session.md index 8a84c929f..3e14c781a 100644 --- a/examples/1.9.x/console-web/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/console-web/examples/account/create-anonymous-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-billing-address.md b/examples/1.9.x/console-web/examples/account/create-billing-address.md index 8382f46ff..e08d527f8 100644 --- a/examples/1.9.x/console-web/examples/account/create-billing-address.md +++ b/examples/1.9.x/console-web/examples/account/create-billing-address.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-email-password-session.md b/examples/1.9.x/console-web/examples/account/create-email-password-session.md index 678501c60..654b4704a 100644 --- a/examples/1.9.x/console-web/examples/account/create-email-password-session.md +++ b/examples/1.9.x/console-web/examples/account/create-email-password-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-email-token.md b/examples/1.9.x/console-web/examples/account/create-email-token.md index ac4deedf5..493058d2c 100644 --- a/examples/1.9.x/console-web/examples/account/create-email-token.md +++ b/examples/1.9.x/console-web/examples/account/create-email-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-email-verification.md b/examples/1.9.x/console-web/examples/account/create-email-verification.md index d65d644eb..80be65f34 100644 --- a/examples/1.9.x/console-web/examples/account/create-email-verification.md +++ b/examples/1.9.x/console-web/examples/account/create-email-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-jwt.md b/examples/1.9.x/console-web/examples/account/create-jwt.md index d3841a686..e9eb00aa9 100644 --- a/examples/1.9.x/console-web/examples/account/create-jwt.md +++ b/examples/1.9.x/console-web/examples/account/create-jwt.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-key.md b/examples/1.9.x/console-web/examples/account/create-key.md index 6371ff178..da272dd35 100644 --- a/examples/1.9.x/console-web/examples/account/create-key.md +++ b/examples/1.9.x/console-web/examples/account/create-key.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Account, Scopes } from "@appwrite.io/console"; +import { Client, Account, AccountKeyScopes } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); const result = await account.createKey({ name: '', - scopes: [Scopes.Account], + scopes: [AccountKeyScopes.Account], expire: '2020-10-15T06:38:00.000+00:00' // optional }); diff --git a/examples/1.9.x/console-web/examples/account/create-magic-url-token.md b/examples/1.9.x/console-web/examples/account/create-magic-url-token.md index 87fb96ae9..62b075578 100644 --- a/examples/1.9.x/console-web/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/console-web/examples/account/create-magic-url-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-mfa-authenticator.md b/examples/1.9.x/console-web/examples/account/create-mfa-authenticator.md index 6e29cea26..da83b34ae 100644 --- a/examples/1.9.x/console-web/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/console-web/examples/account/create-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-mfa-challenge.md b/examples/1.9.x/console-web/examples/account/create-mfa-challenge.md index 10d5136f9..47b8faeef 100644 --- a/examples/1.9.x/console-web/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/console-web/examples/account/create-mfa-challenge.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticationFactor } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/console-web/examples/account/create-mfa-recovery-codes.md index 2425d4ee9..fc0302248 100644 --- a/examples/1.9.x/console-web/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/console-web/examples/account/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-o-auth-2-session.md b/examples/1.9.x/console-web/examples/account/create-o-auth-2-session.md index 304990e0d..1461c5afb 100644 --- a/examples/1.9.x/console-web/examples/account/create-o-auth-2-session.md +++ b/examples/1.9.x/console-web/examples/account/create-o-auth-2-session.md @@ -2,7 +2,7 @@ import { Client, Account, OAuthProvider } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-o-auth-2-token.md b/examples/1.9.x/console-web/examples/account/create-o-auth-2-token.md index 5686fbc41..c62e24357 100644 --- a/examples/1.9.x/console-web/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/console-web/examples/account/create-o-auth-2-token.md @@ -2,7 +2,7 @@ import { Client, Account, OAuthProvider } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-payment-method.md b/examples/1.9.x/console-web/examples/account/create-payment-method.md index 137b3b748..76d6653f5 100644 --- a/examples/1.9.x/console-web/examples/account/create-payment-method.md +++ b/examples/1.9.x/console-web/examples/account/create-payment-method.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-phone-token.md b/examples/1.9.x/console-web/examples/account/create-phone-token.md index 3b99a968a..4d8b56308 100644 --- a/examples/1.9.x/console-web/examples/account/create-phone-token.md +++ b/examples/1.9.x/console-web/examples/account/create-phone-token.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-phone-verification.md b/examples/1.9.x/console-web/examples/account/create-phone-verification.md index 28d14c133..8e794e57c 100644 --- a/examples/1.9.x/console-web/examples/account/create-phone-verification.md +++ b/examples/1.9.x/console-web/examples/account/create-phone-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-push-target.md b/examples/1.9.x/console-web/examples/account/create-push-target.md index 5f1ff7940..e32d19af8 100644 --- a/examples/1.9.x/console-web/examples/account/create-push-target.md +++ b/examples/1.9.x/console-web/examples/account/create-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-recovery.md b/examples/1.9.x/console-web/examples/account/create-recovery.md index 6174d234c..f54f17658 100644 --- a/examples/1.9.x/console-web/examples/account/create-recovery.md +++ b/examples/1.9.x/console-web/examples/account/create-recovery.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-session.md b/examples/1.9.x/console-web/examples/account/create-session.md index 7e7d47982..03101eb22 100644 --- a/examples/1.9.x/console-web/examples/account/create-session.md +++ b/examples/1.9.x/console-web/examples/account/create-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create-verification.md b/examples/1.9.x/console-web/examples/account/create-verification.md index b8b936956..62b850a58 100644 --- a/examples/1.9.x/console-web/examples/account/create-verification.md +++ b/examples/1.9.x/console-web/examples/account/create-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/create.md b/examples/1.9.x/console-web/examples/account/create.md index 060f3188d..c573bb00e 100644 --- a/examples/1.9.x/console-web/examples/account/create.md +++ b/examples/1.9.x/console-web/examples/account/create.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete-billing-address.md b/examples/1.9.x/console-web/examples/account/delete-billing-address.md index bee345b6b..0758332a9 100644 --- a/examples/1.9.x/console-web/examples/account/delete-billing-address.md +++ b/examples/1.9.x/console-web/examples/account/delete-billing-address.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete-identity.md b/examples/1.9.x/console-web/examples/account/delete-identity.md index 9a332b290..69a4c2ac8 100644 --- a/examples/1.9.x/console-web/examples/account/delete-identity.md +++ b/examples/1.9.x/console-web/examples/account/delete-identity.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete-key.md b/examples/1.9.x/console-web/examples/account/delete-key.md index 92f4f9d78..a9c230132 100644 --- a/examples/1.9.x/console-web/examples/account/delete-key.md +++ b/examples/1.9.x/console-web/examples/account/delete-key.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/console-web/examples/account/delete-mfa-authenticator.md index 579dfbc15..1afa87d9c 100644 --- a/examples/1.9.x/console-web/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/console-web/examples/account/delete-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete-payment-method.md b/examples/1.9.x/console-web/examples/account/delete-payment-method.md index d9cf02ac5..b8ff29e58 100644 --- a/examples/1.9.x/console-web/examples/account/delete-payment-method.md +++ b/examples/1.9.x/console-web/examples/account/delete-payment-method.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete-push-target.md b/examples/1.9.x/console-web/examples/account/delete-push-target.md index a18fbfca4..8b2c2eb55 100644 --- a/examples/1.9.x/console-web/examples/account/delete-push-target.md +++ b/examples/1.9.x/console-web/examples/account/delete-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete-session.md b/examples/1.9.x/console-web/examples/account/delete-session.md index b1f53ae16..5c020e204 100644 --- a/examples/1.9.x/console-web/examples/account/delete-session.md +++ b/examples/1.9.x/console-web/examples/account/delete-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete-sessions.md b/examples/1.9.x/console-web/examples/account/delete-sessions.md index e1b64ddf6..de64bde8a 100644 --- a/examples/1.9.x/console-web/examples/account/delete-sessions.md +++ b/examples/1.9.x/console-web/examples/account/delete-sessions.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/delete.md b/examples/1.9.x/console-web/examples/account/delete.md index 4f1ce4e97..1b2caa225 100644 --- a/examples/1.9.x/console-web/examples/account/delete.md +++ b/examples/1.9.x/console-web/examples/account/delete.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/get-billing-address.md b/examples/1.9.x/console-web/examples/account/get-billing-address.md index 7ac96cc8e..6275185e6 100644 --- a/examples/1.9.x/console-web/examples/account/get-billing-address.md +++ b/examples/1.9.x/console-web/examples/account/get-billing-address.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/get-coupon.md b/examples/1.9.x/console-web/examples/account/get-coupon.md index c3718d137..fe7f5b25b 100644 --- a/examples/1.9.x/console-web/examples/account/get-coupon.md +++ b/examples/1.9.x/console-web/examples/account/get-coupon.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/get-key.md b/examples/1.9.x/console-web/examples/account/get-key.md index 24cb5eb88..58d7fa89d 100644 --- a/examples/1.9.x/console-web/examples/account/get-key.md +++ b/examples/1.9.x/console-web/examples/account/get-key.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/console-web/examples/account/get-mfa-recovery-codes.md index 8f330891a..d0307523f 100644 --- a/examples/1.9.x/console-web/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/console-web/examples/account/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/get-payment-method.md b/examples/1.9.x/console-web/examples/account/get-payment-method.md index ce60785a1..175cfc7a8 100644 --- a/examples/1.9.x/console-web/examples/account/get-payment-method.md +++ b/examples/1.9.x/console-web/examples/account/get-payment-method.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/get-prefs.md b/examples/1.9.x/console-web/examples/account/get-prefs.md index 67801d203..fd008b81c 100644 --- a/examples/1.9.x/console-web/examples/account/get-prefs.md +++ b/examples/1.9.x/console-web/examples/account/get-prefs.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/get-session.md b/examples/1.9.x/console-web/examples/account/get-session.md index dee316f2b..759870349 100644 --- a/examples/1.9.x/console-web/examples/account/get-session.md +++ b/examples/1.9.x/console-web/examples/account/get-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/get.md b/examples/1.9.x/console-web/examples/account/get.md index 6f45cf317..03a622d56 100644 --- a/examples/1.9.x/console-web/examples/account/get.md +++ b/examples/1.9.x/console-web/examples/account/get.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/list-billing-addresses.md b/examples/1.9.x/console-web/examples/account/list-billing-addresses.md index 211043871..8f01f284f 100644 --- a/examples/1.9.x/console-web/examples/account/list-billing-addresses.md +++ b/examples/1.9.x/console-web/examples/account/list-billing-addresses.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/list-identities.md b/examples/1.9.x/console-web/examples/account/list-identities.md index c14c21ada..6ef26d74a 100644 --- a/examples/1.9.x/console-web/examples/account/list-identities.md +++ b/examples/1.9.x/console-web/examples/account/list-identities.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/list-invoices.md b/examples/1.9.x/console-web/examples/account/list-invoices.md index c950fe4e1..ce043468d 100644 --- a/examples/1.9.x/console-web/examples/account/list-invoices.md +++ b/examples/1.9.x/console-web/examples/account/list-invoices.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/list-keys.md b/examples/1.9.x/console-web/examples/account/list-keys.md index f093b2a92..253edad2b 100644 --- a/examples/1.9.x/console-web/examples/account/list-keys.md +++ b/examples/1.9.x/console-web/examples/account/list-keys.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/list-logs.md b/examples/1.9.x/console-web/examples/account/list-logs.md index 2468c1a3e..f77e2270c 100644 --- a/examples/1.9.x/console-web/examples/account/list-logs.md +++ b/examples/1.9.x/console-web/examples/account/list-logs.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/list-mfa-factors.md b/examples/1.9.x/console-web/examples/account/list-mfa-factors.md index bbf10c48e..e1cd8fa2a 100644 --- a/examples/1.9.x/console-web/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/console-web/examples/account/list-mfa-factors.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/list-payment-methods.md b/examples/1.9.x/console-web/examples/account/list-payment-methods.md index 7c9743605..eef9ab1b6 100644 --- a/examples/1.9.x/console-web/examples/account/list-payment-methods.md +++ b/examples/1.9.x/console-web/examples/account/list-payment-methods.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/list-sessions.md b/examples/1.9.x/console-web/examples/account/list-sessions.md index b6f0cbc5f..0f06da327 100644 --- a/examples/1.9.x/console-web/examples/account/list-sessions.md +++ b/examples/1.9.x/console-web/examples/account/list-sessions.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-billing-address.md b/examples/1.9.x/console-web/examples/account/update-billing-address.md index d21d81518..6c56f6d6b 100644 --- a/examples/1.9.x/console-web/examples/account/update-billing-address.md +++ b/examples/1.9.x/console-web/examples/account/update-billing-address.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-email-verification.md b/examples/1.9.x/console-web/examples/account/update-email-verification.md index 1ace42d7f..c252cce5e 100644 --- a/examples/1.9.x/console-web/examples/account/update-email-verification.md +++ b/examples/1.9.x/console-web/examples/account/update-email-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-email.md b/examples/1.9.x/console-web/examples/account/update-email.md index 7f396f76b..072645287 100644 --- a/examples/1.9.x/console-web/examples/account/update-email.md +++ b/examples/1.9.x/console-web/examples/account/update-email.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-key.md b/examples/1.9.x/console-web/examples/account/update-key.md index 1975baa77..abe0afa02 100644 --- a/examples/1.9.x/console-web/examples/account/update-key.md +++ b/examples/1.9.x/console-web/examples/account/update-key.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Account, Scopes } from "@appwrite.io/console"; +import { Client, Account, AccountKeyScopes } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); @@ -10,7 +10,7 @@ const account = new Account(client); const result = await account.updateKey({ keyId: '', name: '', - scopes: [Scopes.Account], + scopes: [AccountKeyScopes.Account], expire: '2020-10-15T06:38:00.000+00:00' // optional }); diff --git a/examples/1.9.x/console-web/examples/account/update-magic-url-session.md b/examples/1.9.x/console-web/examples/account/update-magic-url-session.md index 486ccd76b..a0bc10953 100644 --- a/examples/1.9.x/console-web/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/console-web/examples/account/update-magic-url-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-mfa-authenticator.md b/examples/1.9.x/console-web/examples/account/update-mfa-authenticator.md index f04ca1e1a..bfe673b7b 100644 --- a/examples/1.9.x/console-web/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/console-web/examples/account/update-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Account, AuthenticatorType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-mfa-challenge.md b/examples/1.9.x/console-web/examples/account/update-mfa-challenge.md index 3ec065c9a..025bcf489 100644 --- a/examples/1.9.x/console-web/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/console-web/examples/account/update-mfa-challenge.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/console-web/examples/account/update-mfa-recovery-codes.md index f747ab7e2..a0b1f6c55 100644 --- a/examples/1.9.x/console-web/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/console-web/examples/account/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-mfa.md b/examples/1.9.x/console-web/examples/account/update-mfa.md index 59b099cf9..73ca9312a 100644 --- a/examples/1.9.x/console-web/examples/account/update-mfa.md +++ b/examples/1.9.x/console-web/examples/account/update-mfa.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-name.md b/examples/1.9.x/console-web/examples/account/update-name.md index 88432c509..47a6acc76 100644 --- a/examples/1.9.x/console-web/examples/account/update-name.md +++ b/examples/1.9.x/console-web/examples/account/update-name.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-password.md b/examples/1.9.x/console-web/examples/account/update-password.md index 5699dab48..36b74ba00 100644 --- a/examples/1.9.x/console-web/examples/account/update-password.md +++ b/examples/1.9.x/console-web/examples/account/update-password.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-payment-method-mandate-options.md b/examples/1.9.x/console-web/examples/account/update-payment-method-mandate-options.md index 1b54e7af7..5aed1bdd6 100644 --- a/examples/1.9.x/console-web/examples/account/update-payment-method-mandate-options.md +++ b/examples/1.9.x/console-web/examples/account/update-payment-method-mandate-options.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-payment-method-provider.md b/examples/1.9.x/console-web/examples/account/update-payment-method-provider.md index 9ebed91f6..ff53b88f7 100644 --- a/examples/1.9.x/console-web/examples/account/update-payment-method-provider.md +++ b/examples/1.9.x/console-web/examples/account/update-payment-method-provider.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-payment-method.md b/examples/1.9.x/console-web/examples/account/update-payment-method.md index aca92fca2..1820fdde7 100644 --- a/examples/1.9.x/console-web/examples/account/update-payment-method.md +++ b/examples/1.9.x/console-web/examples/account/update-payment-method.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-phone-session.md b/examples/1.9.x/console-web/examples/account/update-phone-session.md index 73bcd308f..8b4b7f7ec 100644 --- a/examples/1.9.x/console-web/examples/account/update-phone-session.md +++ b/examples/1.9.x/console-web/examples/account/update-phone-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-phone-verification.md b/examples/1.9.x/console-web/examples/account/update-phone-verification.md index 9cfd5c5b9..e4017a2b2 100644 --- a/examples/1.9.x/console-web/examples/account/update-phone-verification.md +++ b/examples/1.9.x/console-web/examples/account/update-phone-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-phone.md b/examples/1.9.x/console-web/examples/account/update-phone.md index 5702ff760..75ba50baf 100644 --- a/examples/1.9.x/console-web/examples/account/update-phone.md +++ b/examples/1.9.x/console-web/examples/account/update-phone.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-prefs.md b/examples/1.9.x/console-web/examples/account/update-prefs.md index ce5cd0376..dfd2405ae 100644 --- a/examples/1.9.x/console-web/examples/account/update-prefs.md +++ b/examples/1.9.x/console-web/examples/account/update-prefs.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-push-target.md b/examples/1.9.x/console-web/examples/account/update-push-target.md index fc66115e3..f4112df08 100644 --- a/examples/1.9.x/console-web/examples/account/update-push-target.md +++ b/examples/1.9.x/console-web/examples/account/update-push-target.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-recovery.md b/examples/1.9.x/console-web/examples/account/update-recovery.md index e283313b0..745dffb76 100644 --- a/examples/1.9.x/console-web/examples/account/update-recovery.md +++ b/examples/1.9.x/console-web/examples/account/update-recovery.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-session.md b/examples/1.9.x/console-web/examples/account/update-session.md index 0b455cbe3..1ab6cbc7f 100644 --- a/examples/1.9.x/console-web/examples/account/update-session.md +++ b/examples/1.9.x/console-web/examples/account/update-session.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-status.md b/examples/1.9.x/console-web/examples/account/update-status.md index b4c557cdd..e5c65b84d 100644 --- a/examples/1.9.x/console-web/examples/account/update-status.md +++ b/examples/1.9.x/console-web/examples/account/update-status.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/account/update-verification.md b/examples/1.9.x/console-web/examples/account/update-verification.md index 5d1b312b8..5e56ab4cd 100644 --- a/examples/1.9.x/console-web/examples/account/update-verification.md +++ b/examples/1.9.x/console-web/examples/account/update-verification.md @@ -2,7 +2,7 @@ import { Client, Account } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const account = new Account(client); diff --git a/examples/1.9.x/console-web/examples/activities/get-event.md b/examples/1.9.x/console-web/examples/activities/get-event.md index ddf921441..bb5e5bc3b 100644 --- a/examples/1.9.x/console-web/examples/activities/get-event.md +++ b/examples/1.9.x/console-web/examples/activities/get-event.md @@ -2,7 +2,7 @@ import { Client, Activities } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const activities = new Activities(client); diff --git a/examples/1.9.x/console-web/examples/activities/list-events.md b/examples/1.9.x/console-web/examples/activities/list-events.md index 558f5b877..f2fc2d8c5 100644 --- a/examples/1.9.x/console-web/examples/activities/list-events.md +++ b/examples/1.9.x/console-web/examples/activities/list-events.md @@ -2,7 +2,7 @@ import { Client, Activities } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const activities = new Activities(client); diff --git a/examples/1.9.x/console-web/examples/advisor/delete-report.md b/examples/1.9.x/console-web/examples/advisor/delete-report.md index d549dddb1..2bb1f9a54 100644 --- a/examples/1.9.x/console-web/examples/advisor/delete-report.md +++ b/examples/1.9.x/console-web/examples/advisor/delete-report.md @@ -2,7 +2,7 @@ import { Client, Advisor } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const advisor = new Advisor(client); diff --git a/examples/1.9.x/console-web/examples/advisor/get-insight.md b/examples/1.9.x/console-web/examples/advisor/get-insight.md index bf59a7ed3..029569849 100644 --- a/examples/1.9.x/console-web/examples/advisor/get-insight.md +++ b/examples/1.9.x/console-web/examples/advisor/get-insight.md @@ -2,7 +2,7 @@ import { Client, Advisor } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const advisor = new Advisor(client); diff --git a/examples/1.9.x/console-web/examples/advisor/get-report.md b/examples/1.9.x/console-web/examples/advisor/get-report.md index cdb466364..19cdf5fe3 100644 --- a/examples/1.9.x/console-web/examples/advisor/get-report.md +++ b/examples/1.9.x/console-web/examples/advisor/get-report.md @@ -2,7 +2,7 @@ import { Client, Advisor } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const advisor = new Advisor(client); diff --git a/examples/1.9.x/console-web/examples/advisor/list-insights.md b/examples/1.9.x/console-web/examples/advisor/list-insights.md index e3d978679..09efc00fd 100644 --- a/examples/1.9.x/console-web/examples/advisor/list-insights.md +++ b/examples/1.9.x/console-web/examples/advisor/list-insights.md @@ -2,7 +2,7 @@ import { Client, Advisor } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const advisor = new Advisor(client); diff --git a/examples/1.9.x/console-web/examples/advisor/list-reports.md b/examples/1.9.x/console-web/examples/advisor/list-reports.md index 5cf736e57..bcb650ddf 100644 --- a/examples/1.9.x/console-web/examples/advisor/list-reports.md +++ b/examples/1.9.x/console-web/examples/advisor/list-reports.md @@ -2,7 +2,7 @@ import { Client, Advisor } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const advisor = new Advisor(client); diff --git a/examples/1.9.x/console-web/examples/assistant/chat.md b/examples/1.9.x/console-web/examples/assistant/chat.md index 9f8ee395e..e7e068c1c 100644 --- a/examples/1.9.x/console-web/examples/assistant/chat.md +++ b/examples/1.9.x/console-web/examples/assistant/chat.md @@ -2,7 +2,7 @@ import { Client, Assistant } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const assistant = new Assistant(client); diff --git a/examples/1.9.x/console-web/examples/avatars/get-browser.md b/examples/1.9.x/console-web/examples/avatars/get-browser.md index b28ec7d93..85b061300 100644 --- a/examples/1.9.x/console-web/examples/avatars/get-browser.md +++ b/examples/1.9.x/console-web/examples/avatars/get-browser.md @@ -2,7 +2,7 @@ import { Client, Avatars, Browser } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/console-web/examples/avatars/get-credit-card.md b/examples/1.9.x/console-web/examples/avatars/get-credit-card.md index 8949b1f4a..ca9b8f177 100644 --- a/examples/1.9.x/console-web/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/console-web/examples/avatars/get-credit-card.md @@ -2,7 +2,7 @@ import { Client, Avatars, CreditCard } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/console-web/examples/avatars/get-favicon.md b/examples/1.9.x/console-web/examples/avatars/get-favicon.md index 0df25533e..0cd0c79bb 100644 --- a/examples/1.9.x/console-web/examples/avatars/get-favicon.md +++ b/examples/1.9.x/console-web/examples/avatars/get-favicon.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/console-web/examples/avatars/get-flag.md b/examples/1.9.x/console-web/examples/avatars/get-flag.md index 122c988f1..afa72709f 100644 --- a/examples/1.9.x/console-web/examples/avatars/get-flag.md +++ b/examples/1.9.x/console-web/examples/avatars/get-flag.md @@ -2,7 +2,7 @@ import { Client, Avatars, Flag } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/console-web/examples/avatars/get-image.md b/examples/1.9.x/console-web/examples/avatars/get-image.md index d24f49efc..a6c65ab00 100644 --- a/examples/1.9.x/console-web/examples/avatars/get-image.md +++ b/examples/1.9.x/console-web/examples/avatars/get-image.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/console-web/examples/avatars/get-initials.md b/examples/1.9.x/console-web/examples/avatars/get-initials.md index 892497b2b..8cf54bfe9 100644 --- a/examples/1.9.x/console-web/examples/avatars/get-initials.md +++ b/examples/1.9.x/console-web/examples/avatars/get-initials.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/console-web/examples/avatars/get-qr.md b/examples/1.9.x/console-web/examples/avatars/get-qr.md index f15fa6e97..ae8da5720 100644 --- a/examples/1.9.x/console-web/examples/avatars/get-qr.md +++ b/examples/1.9.x/console-web/examples/avatars/get-qr.md @@ -2,7 +2,7 @@ import { Client, Avatars } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); diff --git a/examples/1.9.x/console-web/examples/avatars/get-screenshot.md b/examples/1.9.x/console-web/examples/avatars/get-screenshot.md index cfbe46a35..3649ace1e 100644 --- a/examples/1.9.x/console-web/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/console-web/examples/avatars/get-screenshot.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Avatars, Theme, Timezone, BrowserPermission, ImageFormat } from "@appwrite.io/console"; +import { Client, Avatars, BrowserTheme, Timezone, BrowserPermission, ImageFormat } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const avatars = new Avatars(client); @@ -16,7 +16,7 @@ const result = avatars.getScreenshot({ viewportWidth: 1920, // optional viewportHeight: 1080, // optional scale: 2, // optional - theme: Theme.Dark, // optional + theme: BrowserTheme.Dark, // optional userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', // optional fullpage: true, // optional locale: 'en-US', // optional diff --git a/examples/1.9.x/console-web/examples/backups/create-archive.md b/examples/1.9.x/console-web/examples/backups/create-archive.md index caccabbc8..dcf31986a 100644 --- a/examples/1.9.x/console-web/examples/backups/create-archive.md +++ b/examples/1.9.x/console-web/examples/backups/create-archive.md @@ -2,7 +2,7 @@ import { Client, Backups, BackupServices } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/create-policy.md b/examples/1.9.x/console-web/examples/backups/create-policy.md index a1e5bc66e..5a81b394f 100644 --- a/examples/1.9.x/console-web/examples/backups/create-policy.md +++ b/examples/1.9.x/console-web/examples/backups/create-policy.md @@ -2,7 +2,7 @@ import { Client, Backups, BackupServices } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/create-restoration.md b/examples/1.9.x/console-web/examples/backups/create-restoration.md index c341e7e8e..af7250408 100644 --- a/examples/1.9.x/console-web/examples/backups/create-restoration.md +++ b/examples/1.9.x/console-web/examples/backups/create-restoration.md @@ -2,7 +2,7 @@ import { Client, Backups, BackupServices } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/delete-archive.md b/examples/1.9.x/console-web/examples/backups/delete-archive.md index 9a32ac6ad..4f0ff6036 100644 --- a/examples/1.9.x/console-web/examples/backups/delete-archive.md +++ b/examples/1.9.x/console-web/examples/backups/delete-archive.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/delete-policy.md b/examples/1.9.x/console-web/examples/backups/delete-policy.md index bb2362b5f..b6d55a92c 100644 --- a/examples/1.9.x/console-web/examples/backups/delete-policy.md +++ b/examples/1.9.x/console-web/examples/backups/delete-policy.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/get-archive.md b/examples/1.9.x/console-web/examples/backups/get-archive.md index ea1746e33..abfcc2437 100644 --- a/examples/1.9.x/console-web/examples/backups/get-archive.md +++ b/examples/1.9.x/console-web/examples/backups/get-archive.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/get-policy.md b/examples/1.9.x/console-web/examples/backups/get-policy.md index 6524dc52f..49087f102 100644 --- a/examples/1.9.x/console-web/examples/backups/get-policy.md +++ b/examples/1.9.x/console-web/examples/backups/get-policy.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/get-restoration.md b/examples/1.9.x/console-web/examples/backups/get-restoration.md index e5374fa74..f06133558 100644 --- a/examples/1.9.x/console-web/examples/backups/get-restoration.md +++ b/examples/1.9.x/console-web/examples/backups/get-restoration.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/list-archives.md b/examples/1.9.x/console-web/examples/backups/list-archives.md index b3fd6f1d2..4be33da3c 100644 --- a/examples/1.9.x/console-web/examples/backups/list-archives.md +++ b/examples/1.9.x/console-web/examples/backups/list-archives.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/list-policies.md b/examples/1.9.x/console-web/examples/backups/list-policies.md index 1c62348d0..e5bc45aa6 100644 --- a/examples/1.9.x/console-web/examples/backups/list-policies.md +++ b/examples/1.9.x/console-web/examples/backups/list-policies.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/list-restorations.md b/examples/1.9.x/console-web/examples/backups/list-restorations.md index f0ed39552..a22ca3e9e 100644 --- a/examples/1.9.x/console-web/examples/backups/list-restorations.md +++ b/examples/1.9.x/console-web/examples/backups/list-restorations.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/backups/update-policy.md b/examples/1.9.x/console-web/examples/backups/update-policy.md index fea32a871..479d4679a 100644 --- a/examples/1.9.x/console-web/examples/backups/update-policy.md +++ b/examples/1.9.x/console-web/examples/backups/update-policy.md @@ -2,7 +2,7 @@ import { Client, Backups } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const backups = new Backups(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-backup.md b/examples/1.9.x/console-web/examples/compute/create-database-backup.md index 2f5597fdf..8f1aec617 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-backup.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-backup.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, Type } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.createDatabaseBackup({ databaseId: '', - type: Type.Full // optional + type: 'full' // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-branch.md b/examples/1.9.x/console-web/examples/compute/create-database-branch.md index 67a02c626..0a3d5206d 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-branch.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-branch.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-connection.md b/examples/1.9.x/console-web/examples/compute/create-database-connection.md index 63376f04d..a24c0478e 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-connection.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-connection.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-execution.md b/examples/1.9.x/console-web/examples/compute/create-database-execution.md index 4308bd397..7dcbe418f 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-execution.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-execution.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-extension.md b/examples/1.9.x/console-web/examples/compute/create-database-extension.md index ef35473dd..8511b8685 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-extension.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-extension.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-failover.md b/examples/1.9.x/console-web/examples/compute/create-database-failover.md index d66e81914..ce781a696 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-failover.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-failover.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-migration.md b/examples/1.9.x/console-web/examples/compute/create-database-migration.md index bd98065cf..24386ee24 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-migration.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-migration.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, TargetType } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.createDatabaseMigration({ databaseId: '', - targetType: TargetType.Shared + targetType: 'shared' }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-query-explanation.md b/examples/1.9.x/console-web/examples/compute/create-database-query-explanation.md index b041fb632..c74ba1c16 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-query-explanation.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-query-explanation.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-restoration.md b/examples/1.9.x/console-web/examples/compute/create-database-restoration.md index e5085992c..409c935b9 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-restoration.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-restoration.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, Type } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.createDatabaseRestoration({ databaseId: '', - type: Type.Backup, // optional + type: 'backup', // optional backupId: '', // optional targetTime: null // optional }); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-schema-preview.md b/examples/1.9.x/console-web/examples/compute/create-database-schema-preview.md index f0fecfa66..7037004d6 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-schema-preview.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-schema-preview.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database-upgrade.md b/examples/1.9.x/console-web/examples/compute/create-database-upgrade.md index 94ea1c719..0aea72d7b 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database-upgrade.md +++ b/examples/1.9.x/console-web/examples/compute/create-database-upgrade.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/create-database.md b/examples/1.9.x/console-web/examples/compute/create-database.md index f58520e16..02882cc09 100644 --- a/examples/1.9.x/console-web/examples/compute/create-database.md +++ b/examples/1.9.x/console-web/examples/compute/create-database.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Compute, Engine, Version, Region, Type, Backend, StorageClass, HighAvailabilitySyncMode } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); @@ -10,20 +10,20 @@ const compute = new Compute(client); const result = await compute.createDatabase({ databaseId: '', name: '', - engine: Engine.Postgres, // optional - version: Version.Postgres17, // optional - region: Region.Fra, // optional - type: Type.Shared, // optional + engine: 'postgres', // optional + version: '17', // optional + region: 'fra', // optional + type: 'shared', // optional specification: '', // optional - backend: Backend.Prisma, // optional + backend: 'prisma', // optional cpu: 125, // optional memory: 128, // optional storage: 1, // optional - storageClass: StorageClass.Ssd, // optional + storageClass: 'ssd', // optional storageMaxGb: 0, // optional highAvailability: false, // optional highAvailabilityReplicaCount: 0, // optional - highAvailabilitySyncMode: HighAvailabilitySyncMode.Async, // optional + highAvailabilitySyncMode: 'async', // optional networkMaxConnections: 10, // optional networkIdleTimeoutSeconds: 60, // optional networkIPAllowlist: [], // optional diff --git a/examples/1.9.x/console-web/examples/compute/delete-database-backup.md b/examples/1.9.x/console-web/examples/compute/delete-database-backup.md index 650a377a5..67cce05eb 100644 --- a/examples/1.9.x/console-web/examples/compute/delete-database-backup.md +++ b/examples/1.9.x/console-web/examples/compute/delete-database-backup.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/delete-database-branch.md b/examples/1.9.x/console-web/examples/compute/delete-database-branch.md index d75cdbbbe..7d14fcbe8 100644 --- a/examples/1.9.x/console-web/examples/compute/delete-database-branch.md +++ b/examples/1.9.x/console-web/examples/compute/delete-database-branch.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/delete-database-connection.md b/examples/1.9.x/console-web/examples/compute/delete-database-connection.md index a1114da54..c665e40c9 100644 --- a/examples/1.9.x/console-web/examples/compute/delete-database-connection.md +++ b/examples/1.9.x/console-web/examples/compute/delete-database-connection.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/delete-database-extension.md b/examples/1.9.x/console-web/examples/compute/delete-database-extension.md index 1ca0fc97d..7afbbc260 100644 --- a/examples/1.9.x/console-web/examples/compute/delete-database-extension.md +++ b/examples/1.9.x/console-web/examples/compute/delete-database-extension.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/delete-database.md b/examples/1.9.x/console-web/examples/compute/delete-database.md index f9af218f3..876f1159e 100644 --- a/examples/1.9.x/console-web/examples/compute/delete-database.md +++ b/examples/1.9.x/console-web/examples/compute/delete-database.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-backup.md b/examples/1.9.x/console-web/examples/compute/get-database-backup.md index ae9460dd4..6b61aafbb 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-backup.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-backup.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-credentials.md b/examples/1.9.x/console-web/examples/compute/get-database-credentials.md index 990ca0065..ddf75614c 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-credentials.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-credentials.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-ha-status.md b/examples/1.9.x/console-web/examples/compute/get-database-ha-status.md index b54d506d7..87071fca5 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-ha-status.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-ha-status.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-insights.md b/examples/1.9.x/console-web/examples/compute/get-database-insights.md index c7a252212..63e3e449c 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-insights.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-insights.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, Period } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.getDatabaseInsights({ databaseId: '', - period: Period.OneHour, // optional + period: '1h', // optional limit: null // optional }); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-metrics.md b/examples/1.9.x/console-web/examples/compute/get-database-metrics.md index 0b7492eeb..9889a35c7 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-metrics.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-metrics.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, Period } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.getDatabaseMetrics({ databaseId: '', - period: Period.OneHour // optional + period: '1h' // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-pitr-windows.md b/examples/1.9.x/console-web/examples/compute/get-database-pitr-windows.md index 9112375ee..1ce16b32a 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-pitr-windows.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-pitr-windows.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-pooler.md b/examples/1.9.x/console-web/examples/compute/get-database-pooler.md index 494f78669..38bf3d34a 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-pooler.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-pooler.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-restoration.md b/examples/1.9.x/console-web/examples/compute/get-database-restoration.md index da1637dc2..38e92682c 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-restoration.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-restoration.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-schema.md b/examples/1.9.x/console-web/examples/compute/get-database-schema.md index fcff3bab3..9c4ab2ed0 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-schema.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-schema.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-status.md b/examples/1.9.x/console-web/examples/compute/get-database-status.md index 7d57a2279..bd320da58 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-status.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-status.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/get-database-usage.md b/examples/1.9.x/console-web/examples/compute/get-database-usage.md index 73c335e7a..92af834b7 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database-usage.md +++ b/examples/1.9.x/console-web/examples/compute/get-database-usage.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, Range } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.getDatabaseUsage({ databaseId: '', - range: Range.TwentyFourHours // optional + range: '24h' // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/compute/get-database.md b/examples/1.9.x/console-web/examples/compute/get-database.md index 6522195da..e7ed52071 100644 --- a/examples/1.9.x/console-web/examples/compute/get-database.md +++ b/examples/1.9.x/console-web/examples/compute/get-database.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/list-database-backups.md b/examples/1.9.x/console-web/examples/compute/list-database-backups.md index cabb15788..d8e5721cd 100644 --- a/examples/1.9.x/console-web/examples/compute/list-database-backups.md +++ b/examples/1.9.x/console-web/examples/compute/list-database-backups.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/list-database-branches.md b/examples/1.9.x/console-web/examples/compute/list-database-branches.md index 067ae2475..bd44a47c7 100644 --- a/examples/1.9.x/console-web/examples/compute/list-database-branches.md +++ b/examples/1.9.x/console-web/examples/compute/list-database-branches.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/list-database-connections.md b/examples/1.9.x/console-web/examples/compute/list-database-connections.md index beec11f04..ec113fa6d 100644 --- a/examples/1.9.x/console-web/examples/compute/list-database-connections.md +++ b/examples/1.9.x/console-web/examples/compute/list-database-connections.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/list-database-extensions.md b/examples/1.9.x/console-web/examples/compute/list-database-extensions.md index 5e71d2c26..9f5e6b9b8 100644 --- a/examples/1.9.x/console-web/examples/compute/list-database-extensions.md +++ b/examples/1.9.x/console-web/examples/compute/list-database-extensions.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/list-database-logs.md b/examples/1.9.x/console-web/examples/compute/list-database-logs.md index 789cbff8a..286db7d16 100644 --- a/examples/1.9.x/console-web/examples/compute/list-database-logs.md +++ b/examples/1.9.x/console-web/examples/compute/list-database-logs.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/list-database-queries.md b/examples/1.9.x/console-web/examples/compute/list-database-queries.md index 343487045..30f3461a9 100644 --- a/examples/1.9.x/console-web/examples/compute/list-database-queries.md +++ b/examples/1.9.x/console-web/examples/compute/list-database-queries.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/list-database-restorations.md b/examples/1.9.x/console-web/examples/compute/list-database-restorations.md index 2e43d526d..455f5c586 100644 --- a/examples/1.9.x/console-web/examples/compute/list-database-restorations.md +++ b/examples/1.9.x/console-web/examples/compute/list-database-restorations.md @@ -1,16 +1,16 @@ ```javascript -import { Client, Compute, Status, Type } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.listDatabaseRestorations({ databaseId: '', - status: Status.Pending, // optional - type: Type.Backup, // optional + status: 'pending', // optional + type: 'backup', // optional limit: 1, // optional offset: 0 // optional }); diff --git a/examples/1.9.x/console-web/examples/compute/list-databases.md b/examples/1.9.x/console-web/examples/compute/list-databases.md index d091bc2c2..7708a3a5e 100644 --- a/examples/1.9.x/console-web/examples/compute/list-databases.md +++ b/examples/1.9.x/console-web/examples/compute/list-databases.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/update-database-backup-storage.md b/examples/1.9.x/console-web/examples/compute/update-database-backup-storage.md index b90b19732..8efd020f9 100644 --- a/examples/1.9.x/console-web/examples/compute/update-database-backup-storage.md +++ b/examples/1.9.x/console-web/examples/compute/update-database-backup-storage.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, Provider } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.updateDatabaseBackupStorage({ databaseId: '', - provider: Provider.S3, + provider: 's3', bucket: '', accessKey: '', secretKey: '', diff --git a/examples/1.9.x/console-web/examples/compute/update-database-credentials.md b/examples/1.9.x/console-web/examples/compute/update-database-credentials.md index 2aaf75bb9..486f1f083 100644 --- a/examples/1.9.x/console-web/examples/compute/update-database-credentials.md +++ b/examples/1.9.x/console-web/examples/compute/update-database-credentials.md @@ -2,7 +2,7 @@ import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); diff --git a/examples/1.9.x/console-web/examples/compute/update-database-maintenance-window.md b/examples/1.9.x/console-web/examples/compute/update-database-maintenance-window.md index d713b621d..8481c6b34 100644 --- a/examples/1.9.x/console-web/examples/compute/update-database-maintenance-window.md +++ b/examples/1.9.x/console-web/examples/compute/update-database-maintenance-window.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, Day } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.updateDatabaseMaintenanceWindow({ databaseId: '', - day: Day.Sun, + day: 'sun', hourUtc: 0 }); diff --git a/examples/1.9.x/console-web/examples/compute/update-database-pooler.md b/examples/1.9.x/console-web/examples/compute/update-database-pooler.md index a0f3bb8bd..17d336cbf 100644 --- a/examples/1.9.x/console-web/examples/compute/update-database-pooler.md +++ b/examples/1.9.x/console-web/examples/compute/update-database-pooler.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Compute, Mode } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); const result = await compute.updateDatabasePooler({ databaseId: '', - mode: Mode.Transaction, // optional + mode: 'transaction', // optional maxConnections: 10, // optional defaultPoolSize: 1, // optional readWriteSplitting: false, // optional diff --git a/examples/1.9.x/console-web/examples/compute/update-database.md b/examples/1.9.x/console-web/examples/compute/update-database.md index bb7091617..0fcbe5c79 100644 --- a/examples/1.9.x/console-web/examples/compute/update-database.md +++ b/examples/1.9.x/console-web/examples/compute/update-database.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Compute, Status, StorageClass, SqlApiAllowedStatements } from "@appwrite.io/console"; +import { Client, Compute } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const compute = new Compute(client); @@ -10,12 +10,12 @@ const compute = new Compute(client); const result = await compute.updateDatabase({ databaseId: '', name: '', // optional - status: Status.Ready, // optional + status: 'ready', // optional specification: '', // optional cpu: 125, // optional memory: 128, // optional storage: 1, // optional - storageClass: StorageClass.Ssd, // optional + storageClass: 'ssd', // optional highAvailability: false, // optional highAvailabilityReplicaCount: 0, // optional networkMaxConnections: 10, // optional @@ -35,7 +35,7 @@ const result = await compute.updateDatabase({ metricsTraceSampleRate: null, // optional metricsSlowQueryLogThresholdMs: 0, // optional sqlApiEnabled: false, // optional - sqlApiAllowedStatements: [SqlApiAllowedStatements.Select], // optional + sqlApiAllowedStatements: [], // optional sqlApiMaxRows: 1, // optional sqlApiMaxBytes: 1024, // optional sqlApiTimeoutSeconds: 1 // optional diff --git a/examples/1.9.x/console-web/examples/console/create-program-membership.md b/examples/1.9.x/console-web/examples/console/create-program-membership.md index 23ed45d7c..519f72813 100644 --- a/examples/1.9.x/console-web/examples/console/create-program-membership.md +++ b/examples/1.9.x/console-web/examples/console/create-program-membership.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/create-source.md b/examples/1.9.x/console-web/examples/console/create-source.md index b6307b1d4..d872fa7d5 100644 --- a/examples/1.9.x/console-web/examples/console/create-source.md +++ b/examples/1.9.x/console-web/examples/console/create-source.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/get-campaign.md b/examples/1.9.x/console-web/examples/console/get-campaign.md index e9d41aeb9..79899e8f6 100644 --- a/examples/1.9.x/console-web/examples/console/get-campaign.md +++ b/examples/1.9.x/console-web/examples/console/get-campaign.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/get-coupon.md b/examples/1.9.x/console-web/examples/console/get-coupon.md index 716d26a5a..ca1d8b408 100644 --- a/examples/1.9.x/console-web/examples/console/get-coupon.md +++ b/examples/1.9.x/console-web/examples/console/get-coupon.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/get-email-template.md b/examples/1.9.x/console-web/examples/console/get-email-template.md index 8f16d121f..d9d48e3a2 100644 --- a/examples/1.9.x/console-web/examples/console/get-email-template.md +++ b/examples/1.9.x/console-web/examples/console/get-email-template.md @@ -2,7 +2,7 @@ import { Client, Console, ProjectEmailTemplateId, ProjectEmailTemplateLocale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/get-plan.md b/examples/1.9.x/console-web/examples/console/get-plan.md index 7171de678..e88420ac9 100644 --- a/examples/1.9.x/console-web/examples/console/get-plan.md +++ b/examples/1.9.x/console-web/examples/console/get-plan.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/get-plans.md b/examples/1.9.x/console-web/examples/console/get-plans.md index c5d846a40..1c0015607 100644 --- a/examples/1.9.x/console-web/examples/console/get-plans.md +++ b/examples/1.9.x/console-web/examples/console/get-plans.md @@ -2,7 +2,7 @@ import { Client, Console, Platform } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/get-program.md b/examples/1.9.x/console-web/examples/console/get-program.md index 5e19bcf0c..7ba676d4f 100644 --- a/examples/1.9.x/console-web/examples/console/get-program.md +++ b/examples/1.9.x/console-web/examples/console/get-program.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/get-resource.md b/examples/1.9.x/console-web/examples/console/get-resource.md index 699a83ddf..a462541f9 100644 --- a/examples/1.9.x/console-web/examples/console/get-resource.md +++ b/examples/1.9.x/console-web/examples/console/get-resource.md @@ -2,7 +2,7 @@ import { Client, Console, ConsoleResourceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/list-o-auth-2-providers.md b/examples/1.9.x/console-web/examples/console/list-o-auth-2-providers.md index 278d16da2..62a327269 100644 --- a/examples/1.9.x/console-web/examples/console/list-o-auth-2-providers.md +++ b/examples/1.9.x/console-web/examples/console/list-o-auth-2-providers.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/list-organization-scopes.md b/examples/1.9.x/console-web/examples/console/list-organization-scopes.md index 0253b9659..81730f1bb 100644 --- a/examples/1.9.x/console-web/examples/console/list-organization-scopes.md +++ b/examples/1.9.x/console-web/examples/console/list-organization-scopes.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/list-project-scopes.md b/examples/1.9.x/console-web/examples/console/list-project-scopes.md index f59300a35..7e6b90b98 100644 --- a/examples/1.9.x/console-web/examples/console/list-project-scopes.md +++ b/examples/1.9.x/console-web/examples/console/list-project-scopes.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/list-regions.md b/examples/1.9.x/console-web/examples/console/list-regions.md index ef750a85a..256973537 100644 --- a/examples/1.9.x/console-web/examples/console/list-regions.md +++ b/examples/1.9.x/console-web/examples/console/list-regions.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/suggest-columns.md b/examples/1.9.x/console-web/examples/console/suggest-columns.md index 50e866edd..430bf7cbe 100644 --- a/examples/1.9.x/console-web/examples/console/suggest-columns.md +++ b/examples/1.9.x/console-web/examples/console/suggest-columns.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/suggest-indexes.md b/examples/1.9.x/console-web/examples/console/suggest-indexes.md index 3014fc3db..c97e7dfd5 100644 --- a/examples/1.9.x/console-web/examples/console/suggest-indexes.md +++ b/examples/1.9.x/console-web/examples/console/suggest-indexes.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/suggest-queries.md b/examples/1.9.x/console-web/examples/console/suggest-queries.md index cbffccc26..0c9073d9d 100644 --- a/examples/1.9.x/console-web/examples/console/suggest-queries.md +++ b/examples/1.9.x/console-web/examples/console/suggest-queries.md @@ -2,7 +2,7 @@ import { Client, Console, QuerySuggestionResource } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/console/variables.md b/examples/1.9.x/console-web/examples/console/variables.md index 3eafec112..1d3501bad 100644 --- a/examples/1.9.x/console-web/examples/console/variables.md +++ b/examples/1.9.x/console-web/examples/console/variables.md @@ -2,7 +2,7 @@ import { Client, Console } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const xconsole = new Console(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-big-int-attribute.md b/examples/1.9.x/console-web/examples/databases/create-big-int-attribute.md index f122c7c4b..6399c8cd0 100644 --- a/examples/1.9.x/console-web/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-big-int-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-boolean-attribute.md b/examples/1.9.x/console-web/examples/databases/create-boolean-attribute.md index 08c3b1b36..e672b8210 100644 --- a/examples/1.9.x/console-web/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-boolean-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-collection.md b/examples/1.9.x/console-web/examples/databases/create-collection.md index 3cfc945d0..2e09cdf9d 100644 --- a/examples/1.9.x/console-web/examples/databases/create-collection.md +++ b/examples/1.9.x/console-web/examples/databases/create-collection.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-datetime-attribute.md b/examples/1.9.x/console-web/examples/databases/create-datetime-attribute.md index 65849d9a3..6372344fd 100644 --- a/examples/1.9.x/console-web/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-datetime-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-document.md b/examples/1.9.x/console-web/examples/databases/create-document.md index 4c664eca6..02838139e 100644 --- a/examples/1.9.x/console-web/examples/databases/create-document.md +++ b/examples/1.9.x/console-web/examples/databases/create-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-documents.md b/examples/1.9.x/console-web/examples/databases/create-documents.md index 01ccfa646..7322ff95e 100644 --- a/examples/1.9.x/console-web/examples/databases/create-documents.md +++ b/examples/1.9.x/console-web/examples/databases/create-documents.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-email-attribute.md b/examples/1.9.x/console-web/examples/databases/create-email-attribute.md index d4b61f883..6dcdd8aeb 100644 --- a/examples/1.9.x/console-web/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-email-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-enum-attribute.md b/examples/1.9.x/console-web/examples/databases/create-enum-attribute.md index 577947172..f61d57034 100644 --- a/examples/1.9.x/console-web/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-enum-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-float-attribute.md b/examples/1.9.x/console-web/examples/databases/create-float-attribute.md index 2b47891dd..647cbe941 100644 --- a/examples/1.9.x/console-web/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-float-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-index.md b/examples/1.9.x/console-web/examples/databases/create-index.md index 0f5fe9d24..306cdf7e3 100644 --- a/examples/1.9.x/console-web/examples/databases/create-index.md +++ b/examples/1.9.x/console-web/examples/databases/create-index.md @@ -2,7 +2,7 @@ import { Client, Databases, DatabasesIndexType, OrderBy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-integer-attribute.md b/examples/1.9.x/console-web/examples/databases/create-integer-attribute.md index 346d3c424..e84ffad16 100644 --- a/examples/1.9.x/console-web/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-integer-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-ip-attribute.md b/examples/1.9.x/console-web/examples/databases/create-ip-attribute.md index 028ce6d8d..4a785fea7 100644 --- a/examples/1.9.x/console-web/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-ip-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-line-attribute.md b/examples/1.9.x/console-web/examples/databases/create-line-attribute.md index 4edfa3256..14982befa 100644 --- a/examples/1.9.x/console-web/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-line-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-longtext-attribute.md b/examples/1.9.x/console-web/examples/databases/create-longtext-attribute.md index 69e397a61..626782396 100644 --- a/examples/1.9.x/console-web/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-longtext-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/console-web/examples/databases/create-mediumtext-attribute.md index 2f0a47bbc..59bd38042 100644 --- a/examples/1.9.x/console-web/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-mediumtext-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-operations.md b/examples/1.9.x/console-web/examples/databases/create-operations.md index 3fb0d8e2c..2374fe8ef 100644 --- a/examples/1.9.x/console-web/examples/databases/create-operations.md +++ b/examples/1.9.x/console-web/examples/databases/create-operations.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-point-attribute.md b/examples/1.9.x/console-web/examples/databases/create-point-attribute.md index a42e09615..d155f151e 100644 --- a/examples/1.9.x/console-web/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-point-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-polygon-attribute.md b/examples/1.9.x/console-web/examples/databases/create-polygon-attribute.md index 0c1be0f29..b57704c93 100644 --- a/examples/1.9.x/console-web/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-polygon-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-relationship-attribute.md b/examples/1.9.x/console-web/examples/databases/create-relationship-attribute.md index 3981e35b2..e37b6ae99 100644 --- a/examples/1.9.x/console-web/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-relationship-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases, RelationshipType, RelationMutate } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-string-attribute.md b/examples/1.9.x/console-web/examples/databases/create-string-attribute.md index 2c33d1182..6b5556dfc 100644 --- a/examples/1.9.x/console-web/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-string-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-text-attribute.md b/examples/1.9.x/console-web/examples/databases/create-text-attribute.md index e301a34b6..d8b01cd5f 100644 --- a/examples/1.9.x/console-web/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-text-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-transaction.md b/examples/1.9.x/console-web/examples/databases/create-transaction.md index 0cc19aff4..b6be8e8c1 100644 --- a/examples/1.9.x/console-web/examples/databases/create-transaction.md +++ b/examples/1.9.x/console-web/examples/databases/create-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-url-attribute.md b/examples/1.9.x/console-web/examples/databases/create-url-attribute.md index 3886c900f..54a254ae3 100644 --- a/examples/1.9.x/console-web/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-url-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create-varchar-attribute.md b/examples/1.9.x/console-web/examples/databases/create-varchar-attribute.md index d6a6664f4..fee6e0760 100644 --- a/examples/1.9.x/console-web/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/create-varchar-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/create.md b/examples/1.9.x/console-web/examples/databases/create.md index 7afa30b8b..fbd54222d 100644 --- a/examples/1.9.x/console-web/examples/databases/create.md +++ b/examples/1.9.x/console-web/examples/databases/create.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/decrement-document-attribute.md b/examples/1.9.x/console-web/examples/databases/decrement-document-attribute.md index dbb0c6aa3..7c5a09945 100644 --- a/examples/1.9.x/console-web/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/decrement-document-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/delete-attribute.md b/examples/1.9.x/console-web/examples/databases/delete-attribute.md index 911189a8e..ed61fae8c 100644 --- a/examples/1.9.x/console-web/examples/databases/delete-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/delete-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/delete-collection.md b/examples/1.9.x/console-web/examples/databases/delete-collection.md index 6b5b2d58e..b603bf068 100644 --- a/examples/1.9.x/console-web/examples/databases/delete-collection.md +++ b/examples/1.9.x/console-web/examples/databases/delete-collection.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/delete-document.md b/examples/1.9.x/console-web/examples/databases/delete-document.md index 7e14bd286..fb65f4d1d 100644 --- a/examples/1.9.x/console-web/examples/databases/delete-document.md +++ b/examples/1.9.x/console-web/examples/databases/delete-document.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/delete-documents.md b/examples/1.9.x/console-web/examples/databases/delete-documents.md index 9b90816c6..04cd18d06 100644 --- a/examples/1.9.x/console-web/examples/databases/delete-documents.md +++ b/examples/1.9.x/console-web/examples/databases/delete-documents.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/delete-index.md b/examples/1.9.x/console-web/examples/databases/delete-index.md index ecdb3e2b3..70f7da46d 100644 --- a/examples/1.9.x/console-web/examples/databases/delete-index.md +++ b/examples/1.9.x/console-web/examples/databases/delete-index.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/delete-transaction.md b/examples/1.9.x/console-web/examples/databases/delete-transaction.md index 8800d0f1a..310e78f07 100644 --- a/examples/1.9.x/console-web/examples/databases/delete-transaction.md +++ b/examples/1.9.x/console-web/examples/databases/delete-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/delete.md b/examples/1.9.x/console-web/examples/databases/delete.md index 104248036..6c90d35d9 100644 --- a/examples/1.9.x/console-web/examples/databases/delete.md +++ b/examples/1.9.x/console-web/examples/databases/delete.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/get-attribute.md b/examples/1.9.x/console-web/examples/databases/get-attribute.md index c59814ccc..2dbca36da 100644 --- a/examples/1.9.x/console-web/examples/databases/get-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/get-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/get-collection-usage.md b/examples/1.9.x/console-web/examples/databases/get-collection-usage.md index 8aca6654d..425e4bcd9 100644 --- a/examples/1.9.x/console-web/examples/databases/get-collection-usage.md +++ b/examples/1.9.x/console-web/examples/databases/get-collection-usage.md @@ -2,7 +2,7 @@ import { Client, Databases, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/get-collection.md b/examples/1.9.x/console-web/examples/databases/get-collection.md index dfeaf8b58..c494f7fce 100644 --- a/examples/1.9.x/console-web/examples/databases/get-collection.md +++ b/examples/1.9.x/console-web/examples/databases/get-collection.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/get-document.md b/examples/1.9.x/console-web/examples/databases/get-document.md index 2c21e0a29..8a17141bd 100644 --- a/examples/1.9.x/console-web/examples/databases/get-document.md +++ b/examples/1.9.x/console-web/examples/databases/get-document.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/get-index.md b/examples/1.9.x/console-web/examples/databases/get-index.md index 030d604e1..7916abda2 100644 --- a/examples/1.9.x/console-web/examples/databases/get-index.md +++ b/examples/1.9.x/console-web/examples/databases/get-index.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/get-transaction.md b/examples/1.9.x/console-web/examples/databases/get-transaction.md index a5c5be010..35aac8910 100644 --- a/examples/1.9.x/console-web/examples/databases/get-transaction.md +++ b/examples/1.9.x/console-web/examples/databases/get-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/get-usage.md b/examples/1.9.x/console-web/examples/databases/get-usage.md index c30e53a87..9e80d270b 100644 --- a/examples/1.9.x/console-web/examples/databases/get-usage.md +++ b/examples/1.9.x/console-web/examples/databases/get-usage.md @@ -2,7 +2,7 @@ import { Client, Databases, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/get.md b/examples/1.9.x/console-web/examples/databases/get.md index a10bf5367..97c8edc7c 100644 --- a/examples/1.9.x/console-web/examples/databases/get.md +++ b/examples/1.9.x/console-web/examples/databases/get.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/increment-document-attribute.md b/examples/1.9.x/console-web/examples/databases/increment-document-attribute.md index 62aff0c91..2b2571d29 100644 --- a/examples/1.9.x/console-web/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/increment-document-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-attributes.md b/examples/1.9.x/console-web/examples/databases/list-attributes.md index 07dd43435..dc3da51a8 100644 --- a/examples/1.9.x/console-web/examples/databases/list-attributes.md +++ b/examples/1.9.x/console-web/examples/databases/list-attributes.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-collection-logs.md b/examples/1.9.x/console-web/examples/databases/list-collection-logs.md index 55f70228d..539dec417 100644 --- a/examples/1.9.x/console-web/examples/databases/list-collection-logs.md +++ b/examples/1.9.x/console-web/examples/databases/list-collection-logs.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-collections.md b/examples/1.9.x/console-web/examples/databases/list-collections.md index c5af6024c..6f7fbc730 100644 --- a/examples/1.9.x/console-web/examples/databases/list-collections.md +++ b/examples/1.9.x/console-web/examples/databases/list-collections.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-document-logs.md b/examples/1.9.x/console-web/examples/databases/list-document-logs.md index c3e21f1d4..21a448a0f 100644 --- a/examples/1.9.x/console-web/examples/databases/list-document-logs.md +++ b/examples/1.9.x/console-web/examples/databases/list-document-logs.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-documents.md b/examples/1.9.x/console-web/examples/databases/list-documents.md index 9c412c5b2..a05278a47 100644 --- a/examples/1.9.x/console-web/examples/databases/list-documents.md +++ b/examples/1.9.x/console-web/examples/databases/list-documents.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-indexes.md b/examples/1.9.x/console-web/examples/databases/list-indexes.md index ee4057d83..7d37c8e1f 100644 --- a/examples/1.9.x/console-web/examples/databases/list-indexes.md +++ b/examples/1.9.x/console-web/examples/databases/list-indexes.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-logs.md b/examples/1.9.x/console-web/examples/databases/list-logs.md index 6a7017943..400c49223 100644 --- a/examples/1.9.x/console-web/examples/databases/list-logs.md +++ b/examples/1.9.x/console-web/examples/databases/list-logs.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-transactions.md b/examples/1.9.x/console-web/examples/databases/list-transactions.md index 11356cb69..f8dffbedb 100644 --- a/examples/1.9.x/console-web/examples/databases/list-transactions.md +++ b/examples/1.9.x/console-web/examples/databases/list-transactions.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list-usage.md b/examples/1.9.x/console-web/examples/databases/list-usage.md index 1cee73bfc..6b9079dad 100644 --- a/examples/1.9.x/console-web/examples/databases/list-usage.md +++ b/examples/1.9.x/console-web/examples/databases/list-usage.md @@ -2,7 +2,7 @@ import { Client, Databases, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/list.md b/examples/1.9.x/console-web/examples/databases/list.md index c8794cfa0..1f63edda0 100644 --- a/examples/1.9.x/console-web/examples/databases/list.md +++ b/examples/1.9.x/console-web/examples/databases/list.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-big-int-attribute.md b/examples/1.9.x/console-web/examples/databases/update-big-int-attribute.md index 48af1566d..83d207395 100644 --- a/examples/1.9.x/console-web/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-big-int-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-boolean-attribute.md b/examples/1.9.x/console-web/examples/databases/update-boolean-attribute.md index 89b2038bf..0c00b5ffd 100644 --- a/examples/1.9.x/console-web/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-boolean-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-collection.md b/examples/1.9.x/console-web/examples/databases/update-collection.md index f39c0dedb..486c8b538 100644 --- a/examples/1.9.x/console-web/examples/databases/update-collection.md +++ b/examples/1.9.x/console-web/examples/databases/update-collection.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-datetime-attribute.md b/examples/1.9.x/console-web/examples/databases/update-datetime-attribute.md index d83ce78d5..3f6aa686f 100644 --- a/examples/1.9.x/console-web/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-datetime-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-document.md b/examples/1.9.x/console-web/examples/databases/update-document.md index 4d16675e4..1665ab4f5 100644 --- a/examples/1.9.x/console-web/examples/databases/update-document.md +++ b/examples/1.9.x/console-web/examples/databases/update-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-documents.md b/examples/1.9.x/console-web/examples/databases/update-documents.md index a3c81ac86..00e82a896 100644 --- a/examples/1.9.x/console-web/examples/databases/update-documents.md +++ b/examples/1.9.x/console-web/examples/databases/update-documents.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-email-attribute.md b/examples/1.9.x/console-web/examples/databases/update-email-attribute.md index 12d6155ac..41a7366ea 100644 --- a/examples/1.9.x/console-web/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-email-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-enum-attribute.md b/examples/1.9.x/console-web/examples/databases/update-enum-attribute.md index 660ccef28..24d9d7193 100644 --- a/examples/1.9.x/console-web/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-enum-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-float-attribute.md b/examples/1.9.x/console-web/examples/databases/update-float-attribute.md index 44b217e1d..e3b37ee99 100644 --- a/examples/1.9.x/console-web/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-float-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-integer-attribute.md b/examples/1.9.x/console-web/examples/databases/update-integer-attribute.md index 44060d738..1218a2f9a 100644 --- a/examples/1.9.x/console-web/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-integer-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-ip-attribute.md b/examples/1.9.x/console-web/examples/databases/update-ip-attribute.md index ad835da31..b77b3ba4e 100644 --- a/examples/1.9.x/console-web/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-ip-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-line-attribute.md b/examples/1.9.x/console-web/examples/databases/update-line-attribute.md index 728e06d2b..af0bfb3c8 100644 --- a/examples/1.9.x/console-web/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-line-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-longtext-attribute.md b/examples/1.9.x/console-web/examples/databases/update-longtext-attribute.md index 714244606..51b2b163e 100644 --- a/examples/1.9.x/console-web/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-longtext-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/console-web/examples/databases/update-mediumtext-attribute.md index 691a346f1..df2b1dafd 100644 --- a/examples/1.9.x/console-web/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-mediumtext-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-point-attribute.md b/examples/1.9.x/console-web/examples/databases/update-point-attribute.md index 040c8f684..e5c8b1f1f 100644 --- a/examples/1.9.x/console-web/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-point-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-polygon-attribute.md b/examples/1.9.x/console-web/examples/databases/update-polygon-attribute.md index a35fbbd8e..c7e427d25 100644 --- a/examples/1.9.x/console-web/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-polygon-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-relationship-attribute.md b/examples/1.9.x/console-web/examples/databases/update-relationship-attribute.md index 90ab8d6c3..b44c0c800 100644 --- a/examples/1.9.x/console-web/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-relationship-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases, RelationMutate } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-string-attribute.md b/examples/1.9.x/console-web/examples/databases/update-string-attribute.md index 1c9e91c5b..50af65486 100644 --- a/examples/1.9.x/console-web/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-string-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-text-attribute.md b/examples/1.9.x/console-web/examples/databases/update-text-attribute.md index e12557e15..5a8f1a48e 100644 --- a/examples/1.9.x/console-web/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-text-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-transaction.md b/examples/1.9.x/console-web/examples/databases/update-transaction.md index a46ecbd85..dc6aefe11 100644 --- a/examples/1.9.x/console-web/examples/databases/update-transaction.md +++ b/examples/1.9.x/console-web/examples/databases/update-transaction.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-url-attribute.md b/examples/1.9.x/console-web/examples/databases/update-url-attribute.md index df026f35b..ce0819da2 100644 --- a/examples/1.9.x/console-web/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-url-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update-varchar-attribute.md b/examples/1.9.x/console-web/examples/databases/update-varchar-attribute.md index 0ce1a55a8..eb9c1bed0 100644 --- a/examples/1.9.x/console-web/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/console-web/examples/databases/update-varchar-attribute.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/update.md b/examples/1.9.x/console-web/examples/databases/update.md index dbae90168..a761bbf4f 100644 --- a/examples/1.9.x/console-web/examples/databases/update.md +++ b/examples/1.9.x/console-web/examples/databases/update.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/upsert-document.md b/examples/1.9.x/console-web/examples/databases/upsert-document.md index 6c5a76367..5b2160bca 100644 --- a/examples/1.9.x/console-web/examples/databases/upsert-document.md +++ b/examples/1.9.x/console-web/examples/databases/upsert-document.md @@ -2,7 +2,7 @@ import { Client, Databases, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/databases/upsert-documents.md b/examples/1.9.x/console-web/examples/databases/upsert-documents.md index d94a1373b..c0668717c 100644 --- a/examples/1.9.x/console-web/examples/databases/upsert-documents.md +++ b/examples/1.9.x/console-web/examples/databases/upsert-documents.md @@ -2,7 +2,7 @@ import { Client, Databases } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const databases = new Databases(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/create-collection.md b/examples/1.9.x/console-web/examples/documentsdb/create-collection.md index a13128248..c36321883 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/create-collection.md +++ b/examples/1.9.x/console-web/examples/documentsdb/create-collection.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/create-document.md b/examples/1.9.x/console-web/examples/documentsdb/create-document.md index a628708e2..4c62ada25 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/create-document.md +++ b/examples/1.9.x/console-web/examples/documentsdb/create-document.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/create-documents.md b/examples/1.9.x/console-web/examples/documentsdb/create-documents.md index 3880bb7ed..3d67f79f5 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/create-documents.md +++ b/examples/1.9.x/console-web/examples/documentsdb/create-documents.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/create-index.md b/examples/1.9.x/console-web/examples/documentsdb/create-index.md index d28785a01..5838a38e6 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/create-index.md +++ b/examples/1.9.x/console-web/examples/documentsdb/create-index.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, DocumentsDBIndexType, OrderBy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/create-transaction.md b/examples/1.9.x/console-web/examples/documentsdb/create-transaction.md index a58540977..a9baade2f 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/create-transaction.md +++ b/examples/1.9.x/console-web/examples/documentsdb/create-transaction.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/create.md b/examples/1.9.x/console-web/examples/documentsdb/create.md index a0cc85ab2..3c1ac96ff 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/create.md +++ b/examples/1.9.x/console-web/examples/documentsdb/create.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/decrement-document-attribute.md b/examples/1.9.x/console-web/examples/documentsdb/decrement-document-attribute.md index 873df72bc..9657f78f9 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/decrement-document-attribute.md +++ b/examples/1.9.x/console-web/examples/documentsdb/decrement-document-attribute.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/delete-collection.md b/examples/1.9.x/console-web/examples/documentsdb/delete-collection.md index 708c1e4e0..753eae7b0 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/delete-collection.md +++ b/examples/1.9.x/console-web/examples/documentsdb/delete-collection.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/delete-document.md b/examples/1.9.x/console-web/examples/documentsdb/delete-document.md index 272379d16..7dbc71437 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/delete-document.md +++ b/examples/1.9.x/console-web/examples/documentsdb/delete-document.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/delete-documents.md b/examples/1.9.x/console-web/examples/documentsdb/delete-documents.md index 5aae827fb..44fca1fe7 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/delete-documents.md +++ b/examples/1.9.x/console-web/examples/documentsdb/delete-documents.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/delete-index.md b/examples/1.9.x/console-web/examples/documentsdb/delete-index.md index a36bff9f1..a1d296733 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/delete-index.md +++ b/examples/1.9.x/console-web/examples/documentsdb/delete-index.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/delete-transaction.md b/examples/1.9.x/console-web/examples/documentsdb/delete-transaction.md index a22112d8a..64e84be1e 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/delete-transaction.md +++ b/examples/1.9.x/console-web/examples/documentsdb/delete-transaction.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/delete.md b/examples/1.9.x/console-web/examples/documentsdb/delete.md index 40e50d612..68a7f35bd 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/delete.md +++ b/examples/1.9.x/console-web/examples/documentsdb/delete.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/get-collection-usage.md b/examples/1.9.x/console-web/examples/documentsdb/get-collection-usage.md index 10c473c84..547ef9904 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/get-collection-usage.md +++ b/examples/1.9.x/console-web/examples/documentsdb/get-collection-usage.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/get-collection.md b/examples/1.9.x/console-web/examples/documentsdb/get-collection.md index 6179e8c5f..3865757ed 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/get-collection.md +++ b/examples/1.9.x/console-web/examples/documentsdb/get-collection.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/get-document.md b/examples/1.9.x/console-web/examples/documentsdb/get-document.md index 916fe5c25..9da87497f 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/get-document.md +++ b/examples/1.9.x/console-web/examples/documentsdb/get-document.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/get-index.md b/examples/1.9.x/console-web/examples/documentsdb/get-index.md index 0e971cb18..b2d59502e 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/get-index.md +++ b/examples/1.9.x/console-web/examples/documentsdb/get-index.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/get-transaction.md b/examples/1.9.x/console-web/examples/documentsdb/get-transaction.md index 18217485b..e74826a21 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/get-transaction.md +++ b/examples/1.9.x/console-web/examples/documentsdb/get-transaction.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/get-usage.md b/examples/1.9.x/console-web/examples/documentsdb/get-usage.md index 794289042..6e862ef88 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/get-usage.md +++ b/examples/1.9.x/console-web/examples/documentsdb/get-usage.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/get.md b/examples/1.9.x/console-web/examples/documentsdb/get.md index 6c1392bd2..dcdffa587 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/get.md +++ b/examples/1.9.x/console-web/examples/documentsdb/get.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/increment-document-attribute.md b/examples/1.9.x/console-web/examples/documentsdb/increment-document-attribute.md index ba4f2e1d1..ebc7abc70 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/increment-document-attribute.md +++ b/examples/1.9.x/console-web/examples/documentsdb/increment-document-attribute.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/list-collections.md b/examples/1.9.x/console-web/examples/documentsdb/list-collections.md index 340dbd5a4..9b874c1f0 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/list-collections.md +++ b/examples/1.9.x/console-web/examples/documentsdb/list-collections.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/list-documents.md b/examples/1.9.x/console-web/examples/documentsdb/list-documents.md index fc9d443f5..7a59514ed 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/list-documents.md +++ b/examples/1.9.x/console-web/examples/documentsdb/list-documents.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/list-indexes.md b/examples/1.9.x/console-web/examples/documentsdb/list-indexes.md index 43891acab..980abd07c 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/list-indexes.md +++ b/examples/1.9.x/console-web/examples/documentsdb/list-indexes.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/list-transactions.md b/examples/1.9.x/console-web/examples/documentsdb/list-transactions.md index 6a2916011..78e19dee6 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/list-transactions.md +++ b/examples/1.9.x/console-web/examples/documentsdb/list-transactions.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/list-usage.md b/examples/1.9.x/console-web/examples/documentsdb/list-usage.md index 300192ea9..06596d409 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/list-usage.md +++ b/examples/1.9.x/console-web/examples/documentsdb/list-usage.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/list.md b/examples/1.9.x/console-web/examples/documentsdb/list.md index 1812eebcc..118f4a985 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/list.md +++ b/examples/1.9.x/console-web/examples/documentsdb/list.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/update-collection.md b/examples/1.9.x/console-web/examples/documentsdb/update-collection.md index 95d243d37..8aecefe70 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/update-collection.md +++ b/examples/1.9.x/console-web/examples/documentsdb/update-collection.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/update-document.md b/examples/1.9.x/console-web/examples/documentsdb/update-document.md index 66d093720..c41f4cc2c 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/update-document.md +++ b/examples/1.9.x/console-web/examples/documentsdb/update-document.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/update-documents.md b/examples/1.9.x/console-web/examples/documentsdb/update-documents.md index f41af221d..37e23ddf5 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/update-documents.md +++ b/examples/1.9.x/console-web/examples/documentsdb/update-documents.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/update-transaction.md b/examples/1.9.x/console-web/examples/documentsdb/update-transaction.md index 1c4daa453..2c460046b 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/update-transaction.md +++ b/examples/1.9.x/console-web/examples/documentsdb/update-transaction.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/update.md b/examples/1.9.x/console-web/examples/documentsdb/update.md index 24be21179..32e66f87a 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/update.md +++ b/examples/1.9.x/console-web/examples/documentsdb/update.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/upsert-document.md b/examples/1.9.x/console-web/examples/documentsdb/upsert-document.md index 465d1bac7..297d492d5 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/upsert-document.md +++ b/examples/1.9.x/console-web/examples/documentsdb/upsert-document.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/documentsdb/upsert-documents.md b/examples/1.9.x/console-web/examples/documentsdb/upsert-documents.md index d67e350a5..2f7e7d82f 100644 --- a/examples/1.9.x/console-web/examples/documentsdb/upsert-documents.md +++ b/examples/1.9.x/console-web/examples/documentsdb/upsert-documents.md @@ -2,7 +2,7 @@ import { Client, DocumentsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const documentsDB = new DocumentsDB(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-preset-google-workspace.md b/examples/1.9.x/console-web/examples/domains/create-preset-google-workspace.md index 5d1a35022..bbd01ab71 100644 --- a/examples/1.9.x/console-web/examples/domains/create-preset-google-workspace.md +++ b/examples/1.9.x/console-web/examples/domains/create-preset-google-workspace.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-preset-i-cloud.md b/examples/1.9.x/console-web/examples/domains/create-preset-i-cloud.md index 456f529c0..bbae8a6c6 100644 --- a/examples/1.9.x/console-web/examples/domains/create-preset-i-cloud.md +++ b/examples/1.9.x/console-web/examples/domains/create-preset-i-cloud.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-preset-mailgun.md b/examples/1.9.x/console-web/examples/domains/create-preset-mailgun.md index 0cf4491c3..6ed2baddc 100644 --- a/examples/1.9.x/console-web/examples/domains/create-preset-mailgun.md +++ b/examples/1.9.x/console-web/examples/domains/create-preset-mailgun.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-preset-outlook.md b/examples/1.9.x/console-web/examples/domains/create-preset-outlook.md index 54410daf5..4b94f4675 100644 --- a/examples/1.9.x/console-web/examples/domains/create-preset-outlook.md +++ b/examples/1.9.x/console-web/examples/domains/create-preset-outlook.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-preset-proton-mail.md b/examples/1.9.x/console-web/examples/domains/create-preset-proton-mail.md index d881ae738..1fc351911 100644 --- a/examples/1.9.x/console-web/examples/domains/create-preset-proton-mail.md +++ b/examples/1.9.x/console-web/examples/domains/create-preset-proton-mail.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-preset-zoho.md b/examples/1.9.x/console-web/examples/domains/create-preset-zoho.md index 5725dab3f..f82f80c82 100644 --- a/examples/1.9.x/console-web/examples/domains/create-preset-zoho.md +++ b/examples/1.9.x/console-web/examples/domains/create-preset-zoho.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-purchase.md b/examples/1.9.x/console-web/examples/domains/create-purchase.md index 0e13e0447..869f9c176 100644 --- a/examples/1.9.x/console-web/examples/domains/create-purchase.md +++ b/examples/1.9.x/console-web/examples/domains/create-purchase.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-a.md b/examples/1.9.x/console-web/examples/domains/create-record-a.md index 84f1def6c..5b4a8e7d6 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-a.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-a.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-aaaa.md b/examples/1.9.x/console-web/examples/domains/create-record-aaaa.md index 6b10e0f03..feb0bb11e 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-aaaa.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-aaaa.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-alias.md b/examples/1.9.x/console-web/examples/domains/create-record-alias.md index 4226aadfe..97e52881a 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-alias.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-alias.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-caa.md b/examples/1.9.x/console-web/examples/domains/create-record-caa.md index d687850d9..ac07bf04d 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-caa.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-caa.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-cname.md b/examples/1.9.x/console-web/examples/domains/create-record-cname.md index 79330be5b..c336a7256 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-cname.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-cname.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-https.md b/examples/1.9.x/console-web/examples/domains/create-record-https.md index 3b6981f63..53c977ddc 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-https.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-https.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-mx.md b/examples/1.9.x/console-web/examples/domains/create-record-mx.md index ad116953f..47d009e9d 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-mx.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-mx.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-ns.md b/examples/1.9.x/console-web/examples/domains/create-record-ns.md index bafcb5060..7a9b36e7e 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-ns.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-ns.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-srv.md b/examples/1.9.x/console-web/examples/domains/create-record-srv.md index 8e48733d5..9c9365a15 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-srv.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-srv.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-record-txt.md b/examples/1.9.x/console-web/examples/domains/create-record-txt.md index f2614202a..65f862d55 100644 --- a/examples/1.9.x/console-web/examples/domains/create-record-txt.md +++ b/examples/1.9.x/console-web/examples/domains/create-record-txt.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-transfer-in.md b/examples/1.9.x/console-web/examples/domains/create-transfer-in.md index a5705d04e..589468c94 100644 --- a/examples/1.9.x/console-web/examples/domains/create-transfer-in.md +++ b/examples/1.9.x/console-web/examples/domains/create-transfer-in.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create-transfer-out.md b/examples/1.9.x/console-web/examples/domains/create-transfer-out.md index e8107b9f0..e5e97b0d5 100644 --- a/examples/1.9.x/console-web/examples/domains/create-transfer-out.md +++ b/examples/1.9.x/console-web/examples/domains/create-transfer-out.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/create.md b/examples/1.9.x/console-web/examples/domains/create.md index b479e370a..5bf5fc99c 100644 --- a/examples/1.9.x/console-web/examples/domains/create.md +++ b/examples/1.9.x/console-web/examples/domains/create.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/delete-record.md b/examples/1.9.x/console-web/examples/domains/delete-record.md index 5d551ad9b..d78c18322 100644 --- a/examples/1.9.x/console-web/examples/domains/delete-record.md +++ b/examples/1.9.x/console-web/examples/domains/delete-record.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/delete.md b/examples/1.9.x/console-web/examples/domains/delete.md index b52b25656..da8980816 100644 --- a/examples/1.9.x/console-web/examples/domains/delete.md +++ b/examples/1.9.x/console-web/examples/domains/delete.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-preset-google-workspace.md b/examples/1.9.x/console-web/examples/domains/get-preset-google-workspace.md index 01b78b65c..fba049573 100644 --- a/examples/1.9.x/console-web/examples/domains/get-preset-google-workspace.md +++ b/examples/1.9.x/console-web/examples/domains/get-preset-google-workspace.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-preset-i-cloud.md b/examples/1.9.x/console-web/examples/domains/get-preset-i-cloud.md index ba6eb991a..dcd5aa9af 100644 --- a/examples/1.9.x/console-web/examples/domains/get-preset-i-cloud.md +++ b/examples/1.9.x/console-web/examples/domains/get-preset-i-cloud.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-preset-mailgun.md b/examples/1.9.x/console-web/examples/domains/get-preset-mailgun.md index 3bce37dbd..40bfabb9c 100644 --- a/examples/1.9.x/console-web/examples/domains/get-preset-mailgun.md +++ b/examples/1.9.x/console-web/examples/domains/get-preset-mailgun.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-preset-outlook.md b/examples/1.9.x/console-web/examples/domains/get-preset-outlook.md index 67e3d8bd5..2423a8d27 100644 --- a/examples/1.9.x/console-web/examples/domains/get-preset-outlook.md +++ b/examples/1.9.x/console-web/examples/domains/get-preset-outlook.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-preset-proton-mail.md b/examples/1.9.x/console-web/examples/domains/get-preset-proton-mail.md index 6fccf2c6b..6d3bc4633 100644 --- a/examples/1.9.x/console-web/examples/domains/get-preset-proton-mail.md +++ b/examples/1.9.x/console-web/examples/domains/get-preset-proton-mail.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-preset-zoho.md b/examples/1.9.x/console-web/examples/domains/get-preset-zoho.md index 1dbf403ed..45e88fd1f 100644 --- a/examples/1.9.x/console-web/examples/domains/get-preset-zoho.md +++ b/examples/1.9.x/console-web/examples/domains/get-preset-zoho.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-price.md b/examples/1.9.x/console-web/examples/domains/get-price.md index 78ffc2e06..f7cd89739 100644 --- a/examples/1.9.x/console-web/examples/domains/get-price.md +++ b/examples/1.9.x/console-web/examples/domains/get-price.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Domains, RegistrationType } from "@appwrite.io/console"; +import { Client, Domains, DomainRegistrationType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); @@ -10,7 +10,7 @@ const domains = new Domains(client); const result = await domains.getPrice({ domain: '', periodYears: null, // optional - registrationType: RegistrationType.New // optional + registrationType: DomainRegistrationType.New // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/domains/get-record.md b/examples/1.9.x/console-web/examples/domains/get-record.md index ba184a940..4777e9804 100644 --- a/examples/1.9.x/console-web/examples/domains/get-record.md +++ b/examples/1.9.x/console-web/examples/domains/get-record.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-transfer-status.md b/examples/1.9.x/console-web/examples/domains/get-transfer-status.md index 3305e05c5..914c9830a 100644 --- a/examples/1.9.x/console-web/examples/domains/get-transfer-status.md +++ b/examples/1.9.x/console-web/examples/domains/get-transfer-status.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get-zone.md b/examples/1.9.x/console-web/examples/domains/get-zone.md index b526aff8b..538261579 100644 --- a/examples/1.9.x/console-web/examples/domains/get-zone.md +++ b/examples/1.9.x/console-web/examples/domains/get-zone.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/get.md b/examples/1.9.x/console-web/examples/domains/get.md index b99cdc091..20053bd1a 100644 --- a/examples/1.9.x/console-web/examples/domains/get.md +++ b/examples/1.9.x/console-web/examples/domains/get.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/list-records.md b/examples/1.9.x/console-web/examples/domains/list-records.md index ba51f9b0f..b7a8b88ea 100644 --- a/examples/1.9.x/console-web/examples/domains/list-records.md +++ b/examples/1.9.x/console-web/examples/domains/list-records.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/list-suggestions.md b/examples/1.9.x/console-web/examples/domains/list-suggestions.md index 429ad498a..4f8855e47 100644 --- a/examples/1.9.x/console-web/examples/domains/list-suggestions.md +++ b/examples/1.9.x/console-web/examples/domains/list-suggestions.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Domains, FilterType } from "@appwrite.io/console"; +import { Client, Domains, DomainSuggestionType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); @@ -11,7 +11,7 @@ const result = await domains.listSuggestions({ query: '', tlds: [], // optional limit: null, // optional - filterType: FilterType.Premium, // optional + filterType: DomainSuggestionType.Premium, // optional priceMax: null, // optional priceMin: null // optional }); diff --git a/examples/1.9.x/console-web/examples/domains/list.md b/examples/1.9.x/console-web/examples/domains/list.md index be05a032a..328d51c36 100644 --- a/examples/1.9.x/console-web/examples/domains/list.md +++ b/examples/1.9.x/console-web/examples/domains/list.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-auto-renewal.md b/examples/1.9.x/console-web/examples/domains/update-auto-renewal.md index 48512c06b..1e554d1d3 100644 --- a/examples/1.9.x/console-web/examples/domains/update-auto-renewal.md +++ b/examples/1.9.x/console-web/examples/domains/update-auto-renewal.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-nameservers.md b/examples/1.9.x/console-web/examples/domains/update-nameservers.md index 33d8a45df..5ae7444a1 100644 --- a/examples/1.9.x/console-web/examples/domains/update-nameservers.md +++ b/examples/1.9.x/console-web/examples/domains/update-nameservers.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-purchase.md b/examples/1.9.x/console-web/examples/domains/update-purchase.md index b2165d207..8f476efe6 100644 --- a/examples/1.9.x/console-web/examples/domains/update-purchase.md +++ b/examples/1.9.x/console-web/examples/domains/update-purchase.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-a.md b/examples/1.9.x/console-web/examples/domains/update-record-a.md index 81b105a8f..e34019040 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-a.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-a.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-aaaa.md b/examples/1.9.x/console-web/examples/domains/update-record-aaaa.md index 9a41bb323..454e5953a 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-aaaa.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-aaaa.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-alias.md b/examples/1.9.x/console-web/examples/domains/update-record-alias.md index 34e05ff22..3630ffbc2 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-alias.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-alias.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-caa.md b/examples/1.9.x/console-web/examples/domains/update-record-caa.md index d380256d4..4184893e2 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-caa.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-caa.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-cname.md b/examples/1.9.x/console-web/examples/domains/update-record-cname.md index 59066de29..365b5ba0a 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-cname.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-cname.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-https.md b/examples/1.9.x/console-web/examples/domains/update-record-https.md index abc9e32ca..4f6ef31ce 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-https.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-https.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-mx.md b/examples/1.9.x/console-web/examples/domains/update-record-mx.md index 2c8ca7bd9..92f79202d 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-mx.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-mx.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-ns.md b/examples/1.9.x/console-web/examples/domains/update-record-ns.md index cadc5f1bb..20fff917d 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-ns.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-ns.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-srv.md b/examples/1.9.x/console-web/examples/domains/update-record-srv.md index 11ec6e721..3d7f9a5f7 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-srv.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-srv.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-record-txt.md b/examples/1.9.x/console-web/examples/domains/update-record-txt.md index 4bd6d0093..d8d1ea561 100644 --- a/examples/1.9.x/console-web/examples/domains/update-record-txt.md +++ b/examples/1.9.x/console-web/examples/domains/update-record-txt.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-team.md b/examples/1.9.x/console-web/examples/domains/update-team.md index 2c56c9669..01bce308d 100644 --- a/examples/1.9.x/console-web/examples/domains/update-team.md +++ b/examples/1.9.x/console-web/examples/domains/update-team.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-transfer-in.md b/examples/1.9.x/console-web/examples/domains/update-transfer-in.md index 04ea52017..339dff440 100644 --- a/examples/1.9.x/console-web/examples/domains/update-transfer-in.md +++ b/examples/1.9.x/console-web/examples/domains/update-transfer-in.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/domains/update-zone.md b/examples/1.9.x/console-web/examples/domains/update-zone.md index a8308c27b..55eb29248 100644 --- a/examples/1.9.x/console-web/examples/domains/update-zone.md +++ b/examples/1.9.x/console-web/examples/domains/update-zone.md @@ -2,7 +2,7 @@ import { Client, Domains } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const domains = new Domains(client); diff --git a/examples/1.9.x/console-web/examples/functions/create-deployment.md b/examples/1.9.x/console-web/examples/functions/create-deployment.md index 020c4aad8..4e50acbc9 100644 --- a/examples/1.9.x/console-web/examples/functions/create-deployment.md +++ b/examples/1.9.x/console-web/examples/functions/create-deployment.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/console-web/examples/functions/create-duplicate-deployment.md index 77e792b39..b1f11ddb6 100644 --- a/examples/1.9.x/console-web/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/console-web/examples/functions/create-duplicate-deployment.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/create-execution.md b/examples/1.9.x/console-web/examples/functions/create-execution.md index 2707b7905..32f01486f 100644 --- a/examples/1.9.x/console-web/examples/functions/create-execution.md +++ b/examples/1.9.x/console-web/examples/functions/create-execution.md @@ -2,7 +2,7 @@ import { Client, Functions, ExecutionMethod } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/create-template-deployment.md b/examples/1.9.x/console-web/examples/functions/create-template-deployment.md index 6e311461c..8f6c09120 100644 --- a/examples/1.9.x/console-web/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/console-web/examples/functions/create-template-deployment.md @@ -2,7 +2,7 @@ import { Client, Functions, TemplateReferenceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/create-variable.md b/examples/1.9.x/console-web/examples/functions/create-variable.md index 444a0c6c3..0d0a66dbd 100644 --- a/examples/1.9.x/console-web/examples/functions/create-variable.md +++ b/examples/1.9.x/console-web/examples/functions/create-variable.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/create-vcs-deployment.md b/examples/1.9.x/console-web/examples/functions/create-vcs-deployment.md index 50a54465c..362d91971 100644 --- a/examples/1.9.x/console-web/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/console-web/examples/functions/create-vcs-deployment.md @@ -2,7 +2,7 @@ import { Client, Functions, VCSReferenceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/create.md b/examples/1.9.x/console-web/examples/functions/create.md index 5cd33258d..8ae332758 100644 --- a/examples/1.9.x/console-web/examples/functions/create.md +++ b/examples/1.9.x/console-web/examples/functions/create.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Functions, Runtime, Scopes } from "@appwrite.io/console"; +import { Client, Functions, FunctionRuntime, ProjectKeyScopes } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); @@ -10,7 +10,7 @@ const functions = new Functions(client); const result = await functions.create({ functionId: '', name: '', - runtime: Runtime.Node145, + runtime: FunctionRuntime.Node145, execute: ["any"], // optional events: [], // optional schedule: '', // optional @@ -19,12 +19,14 @@ const result = await functions.create({ logging: false, // optional entrypoint: '', // optional commands: '', // optional - scopes: [Scopes.ProjectRead], // optional + scopes: [ProjectKeyScopes.ProjectRead], // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/console-web/examples/functions/delete-deployment.md b/examples/1.9.x/console-web/examples/functions/delete-deployment.md index 9fee1bfd4..a114ceb16 100644 --- a/examples/1.9.x/console-web/examples/functions/delete-deployment.md +++ b/examples/1.9.x/console-web/examples/functions/delete-deployment.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/delete-execution.md b/examples/1.9.x/console-web/examples/functions/delete-execution.md index 4f8569be6..98568a7aa 100644 --- a/examples/1.9.x/console-web/examples/functions/delete-execution.md +++ b/examples/1.9.x/console-web/examples/functions/delete-execution.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/delete-variable.md b/examples/1.9.x/console-web/examples/functions/delete-variable.md index 5775d4db7..57070e51a 100644 --- a/examples/1.9.x/console-web/examples/functions/delete-variable.md +++ b/examples/1.9.x/console-web/examples/functions/delete-variable.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/delete.md b/examples/1.9.x/console-web/examples/functions/delete.md index 141706ca4..09bdc2971 100644 --- a/examples/1.9.x/console-web/examples/functions/delete.md +++ b/examples/1.9.x/console-web/examples/functions/delete.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/get-deployment-download.md b/examples/1.9.x/console-web/examples/functions/get-deployment-download.md index d6b46f1d7..72a93f008 100644 --- a/examples/1.9.x/console-web/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/console-web/examples/functions/get-deployment-download.md @@ -2,7 +2,7 @@ import { Client, Functions, DeploymentDownloadType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/get-deployment.md b/examples/1.9.x/console-web/examples/functions/get-deployment.md index 34ebaaca9..c7f998b33 100644 --- a/examples/1.9.x/console-web/examples/functions/get-deployment.md +++ b/examples/1.9.x/console-web/examples/functions/get-deployment.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/get-execution.md b/examples/1.9.x/console-web/examples/functions/get-execution.md index dc49ea5d9..acb62a1fc 100644 --- a/examples/1.9.x/console-web/examples/functions/get-execution.md +++ b/examples/1.9.x/console-web/examples/functions/get-execution.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/get-template.md b/examples/1.9.x/console-web/examples/functions/get-template.md index 64c515d66..478b9815e 100644 --- a/examples/1.9.x/console-web/examples/functions/get-template.md +++ b/examples/1.9.x/console-web/examples/functions/get-template.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/get-usage.md b/examples/1.9.x/console-web/examples/functions/get-usage.md index 38529294d..cc6b4b8e4 100644 --- a/examples/1.9.x/console-web/examples/functions/get-usage.md +++ b/examples/1.9.x/console-web/examples/functions/get-usage.md @@ -2,7 +2,7 @@ import { Client, Functions, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/get-variable.md b/examples/1.9.x/console-web/examples/functions/get-variable.md index 31417ad25..6e5563e95 100644 --- a/examples/1.9.x/console-web/examples/functions/get-variable.md +++ b/examples/1.9.x/console-web/examples/functions/get-variable.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/get.md b/examples/1.9.x/console-web/examples/functions/get.md index 9cdadfbf5..464dba199 100644 --- a/examples/1.9.x/console-web/examples/functions/get.md +++ b/examples/1.9.x/console-web/examples/functions/get.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/list-deployments.md b/examples/1.9.x/console-web/examples/functions/list-deployments.md index 07f50b093..cb12dadbe 100644 --- a/examples/1.9.x/console-web/examples/functions/list-deployments.md +++ b/examples/1.9.x/console-web/examples/functions/list-deployments.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/list-executions.md b/examples/1.9.x/console-web/examples/functions/list-executions.md index b04560577..7cd994777 100644 --- a/examples/1.9.x/console-web/examples/functions/list-executions.md +++ b/examples/1.9.x/console-web/examples/functions/list-executions.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/list-runtimes.md b/examples/1.9.x/console-web/examples/functions/list-runtimes.md index 6136507d9..a350b3605 100644 --- a/examples/1.9.x/console-web/examples/functions/list-runtimes.md +++ b/examples/1.9.x/console-web/examples/functions/list-runtimes.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/list-specifications.md b/examples/1.9.x/console-web/examples/functions/list-specifications.md index 90fd9d93d..3b9b19432 100644 --- a/examples/1.9.x/console-web/examples/functions/list-specifications.md +++ b/examples/1.9.x/console-web/examples/functions/list-specifications.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/list-templates.md b/examples/1.9.x/console-web/examples/functions/list-templates.md index 41bf6cb34..edaeda327 100644 --- a/examples/1.9.x/console-web/examples/functions/list-templates.md +++ b/examples/1.9.x/console-web/examples/functions/list-templates.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Functions, Runtimes, UseCases } from "@appwrite.io/console"; +import { Client, Functions, FunctionRuntime, FunctionTemplateUseCase } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); const result = await functions.listTemplates({ - runtimes: [Runtimes.Node145], // optional - useCases: [UseCases.Starter], // optional + runtimes: [FunctionRuntime.Node145], // optional + useCases: [FunctionTemplateUseCase.Starter], // optional limit: 1, // optional offset: 0, // optional total: false // optional diff --git a/examples/1.9.x/console-web/examples/functions/list-usage.md b/examples/1.9.x/console-web/examples/functions/list-usage.md index 4088175f6..b48df2709 100644 --- a/examples/1.9.x/console-web/examples/functions/list-usage.md +++ b/examples/1.9.x/console-web/examples/functions/list-usage.md @@ -2,7 +2,7 @@ import { Client, Functions, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/list-variables.md b/examples/1.9.x/console-web/examples/functions/list-variables.md index 9407b8ef5..d388daecc 100644 --- a/examples/1.9.x/console-web/examples/functions/list-variables.md +++ b/examples/1.9.x/console-web/examples/functions/list-variables.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/list.md b/examples/1.9.x/console-web/examples/functions/list.md index 83272a93f..eb99d5435 100644 --- a/examples/1.9.x/console-web/examples/functions/list.md +++ b/examples/1.9.x/console-web/examples/functions/list.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/update-deployment-status.md b/examples/1.9.x/console-web/examples/functions/update-deployment-status.md index 6a2d14723..302c6d9f1 100644 --- a/examples/1.9.x/console-web/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/console-web/examples/functions/update-deployment-status.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/update-function-deployment.md b/examples/1.9.x/console-web/examples/functions/update-function-deployment.md index d5fed6e02..b9d0f05e1 100644 --- a/examples/1.9.x/console-web/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/console-web/examples/functions/update-function-deployment.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/update-variable.md b/examples/1.9.x/console-web/examples/functions/update-variable.md index 5d7dc9aa4..34b4c1446 100644 --- a/examples/1.9.x/console-web/examples/functions/update-variable.md +++ b/examples/1.9.x/console-web/examples/functions/update-variable.md @@ -2,7 +2,7 @@ import { Client, Functions } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); diff --git a/examples/1.9.x/console-web/examples/functions/update.md b/examples/1.9.x/console-web/examples/functions/update.md index cb77dea18..9c4007054 100644 --- a/examples/1.9.x/console-web/examples/functions/update.md +++ b/examples/1.9.x/console-web/examples/functions/update.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Functions, Runtime, Scopes } from "@appwrite.io/console"; +import { Client, Functions, FunctionRuntime, ProjectKeyScopes } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const functions = new Functions(client); @@ -10,7 +10,7 @@ const functions = new Functions(client); const result = await functions.update({ functionId: '', name: '', - runtime: Runtime.Node145, // optional + runtime: FunctionRuntime.Node145, // optional execute: ["any"], // optional events: [], // optional schedule: '', // optional @@ -19,12 +19,14 @@ const result = await functions.update({ logging: false, // optional entrypoint: '', // optional commands: '', // optional - scopes: [Scopes.ProjectRead], // optional + scopes: [ProjectKeyScopes.ProjectRead], // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/console-web/examples/graphql/mutation.md b/examples/1.9.x/console-web/examples/graphql/mutation.md index f8efffe81..46f6bec91 100644 --- a/examples/1.9.x/console-web/examples/graphql/mutation.md +++ b/examples/1.9.x/console-web/examples/graphql/mutation.md @@ -2,7 +2,7 @@ import { Client, Graphql } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const graphql = new Graphql(client); diff --git a/examples/1.9.x/console-web/examples/graphql/query.md b/examples/1.9.x/console-web/examples/graphql/query.md index 604e431cd..8a95082a1 100644 --- a/examples/1.9.x/console-web/examples/graphql/query.md +++ b/examples/1.9.x/console-web/examples/graphql/query.md @@ -2,7 +2,7 @@ import { Client, Graphql } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const graphql = new Graphql(client); diff --git a/examples/1.9.x/console-web/examples/health/get-antivirus.md b/examples/1.9.x/console-web/examples/health/get-antivirus.md index c9091fb58..8f96d37ec 100644 --- a/examples/1.9.x/console-web/examples/health/get-antivirus.md +++ b/examples/1.9.x/console-web/examples/health/get-antivirus.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-cache.md b/examples/1.9.x/console-web/examples/health/get-cache.md index b69b9880b..cf6154835 100644 --- a/examples/1.9.x/console-web/examples/health/get-cache.md +++ b/examples/1.9.x/console-web/examples/health/get-cache.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-certificate.md b/examples/1.9.x/console-web/examples/health/get-certificate.md index 375dba058..457252418 100644 --- a/examples/1.9.x/console-web/examples/health/get-certificate.md +++ b/examples/1.9.x/console-web/examples/health/get-certificate.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-console-pausing.md b/examples/1.9.x/console-web/examples/health/get-console-pausing.md index 2f3cc0bcf..26f0299ba 100644 --- a/examples/1.9.x/console-web/examples/health/get-console-pausing.md +++ b/examples/1.9.x/console-web/examples/health/get-console-pausing.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-db.md b/examples/1.9.x/console-web/examples/health/get-db.md index 1b86f74f4..63bfd0ed5 100644 --- a/examples/1.9.x/console-web/examples/health/get-db.md +++ b/examples/1.9.x/console-web/examples/health/get-db.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-failed-jobs.md b/examples/1.9.x/console-web/examples/health/get-failed-jobs.md index f87018ff9..c5efd8fe7 100644 --- a/examples/1.9.x/console-web/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/console-web/examples/health/get-failed-jobs.md @@ -1,14 +1,14 @@ ```javascript -import { Client, Health, Name } from "@appwrite.io/console"; +import { Client, Health, HealthQueueName } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); const result = await health.getFailedJobs({ - name: Name.V1Database, + name: HealthQueueName.V1Database, threshold: null // optional }); diff --git a/examples/1.9.x/console-web/examples/health/get-pub-sub.md b/examples/1.9.x/console-web/examples/health/get-pub-sub.md index 869943d76..ee0d2e961 100644 --- a/examples/1.9.x/console-web/examples/health/get-pub-sub.md +++ b/examples/1.9.x/console-web/examples/health/get-pub-sub.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-audits.md b/examples/1.9.x/console-web/examples/health/get-queue-audits.md index 6823fb145..a8dd9c814 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-audits.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-audits.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-billing-project-aggregation.md b/examples/1.9.x/console-web/examples/health/get-queue-billing-project-aggregation.md index 59bf95577..9649b9153 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-billing-project-aggregation.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-billing-project-aggregation.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-billing-team-aggregation.md b/examples/1.9.x/console-web/examples/health/get-queue-billing-team-aggregation.md index 5f7260fec..b18095a1e 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-billing-team-aggregation.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-billing-team-aggregation.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-builds.md b/examples/1.9.x/console-web/examples/health/get-queue-builds.md index 0a69b799a..cc6ff5e55 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-builds.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-builds.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-certificates.md b/examples/1.9.x/console-web/examples/health/get-queue-certificates.md index ddec046a7..1fb2d0041 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-certificates.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-databases.md b/examples/1.9.x/console-web/examples/health/get-queue-databases.md index eab195070..7e0c752a1 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-databases.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-databases.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-deletes.md b/examples/1.9.x/console-web/examples/health/get-queue-deletes.md index da34a82bf..7588e08f7 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-deletes.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-functions.md b/examples/1.9.x/console-web/examples/health/get-queue-functions.md index 420e3e744..a78372f1b 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-functions.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-functions.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-logs.md b/examples/1.9.x/console-web/examples/health/get-queue-logs.md index 083222fb1..32d9d278e 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-logs.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-logs.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-mails.md b/examples/1.9.x/console-web/examples/health/get-queue-mails.md index 8a68cb835..f8400a794 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-mails.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-mails.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-messaging.md b/examples/1.9.x/console-web/examples/health/get-queue-messaging.md index 3c63659cd..3c8e1ffa7 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-messaging.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-migrations.md b/examples/1.9.x/console-web/examples/health/get-queue-migrations.md index 626f9dc1d..9e2e219c5 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-migrations.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-priority-builds.md b/examples/1.9.x/console-web/examples/health/get-queue-priority-builds.md index 64bf78b3d..edd2145d9 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-priority-builds.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-priority-builds.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-region-manager.md b/examples/1.9.x/console-web/examples/health/get-queue-region-manager.md index 6176817ad..84f9324c4 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-region-manager.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-region-manager.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-stats-resources.md b/examples/1.9.x/console-web/examples/health/get-queue-stats-resources.md index 8f4d0e0ef..c88f10089 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-stats-resources.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-threats.md b/examples/1.9.x/console-web/examples/health/get-queue-threats.md index a19d5d716..119b87603 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-threats.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-threats.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-usage.md b/examples/1.9.x/console-web/examples/health/get-queue-usage.md index 1f33effff..6072c5abe 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-usage.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-usage.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-queue-webhooks.md b/examples/1.9.x/console-web/examples/health/get-queue-webhooks.md index dd8d2012b..5e08a8f0e 100644 --- a/examples/1.9.x/console-web/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/console-web/examples/health/get-queue-webhooks.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-storage-local.md b/examples/1.9.x/console-web/examples/health/get-storage-local.md index d5dcc178a..b56189c00 100644 --- a/examples/1.9.x/console-web/examples/health/get-storage-local.md +++ b/examples/1.9.x/console-web/examples/health/get-storage-local.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-storage.md b/examples/1.9.x/console-web/examples/health/get-storage.md index 8373e2f3d..95ae8099d 100644 --- a/examples/1.9.x/console-web/examples/health/get-storage.md +++ b/examples/1.9.x/console-web/examples/health/get-storage.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get-time.md b/examples/1.9.x/console-web/examples/health/get-time.md index c0d4d3012..5d4b09e36 100644 --- a/examples/1.9.x/console-web/examples/health/get-time.md +++ b/examples/1.9.x/console-web/examples/health/get-time.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/health/get.md b/examples/1.9.x/console-web/examples/health/get.md index 558b24174..70cbbfba9 100644 --- a/examples/1.9.x/console-web/examples/health/get.md +++ b/examples/1.9.x/console-web/examples/health/get.md @@ -2,7 +2,7 @@ import { Client, Health } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const health = new Health(client); diff --git a/examples/1.9.x/console-web/examples/locale/get.md b/examples/1.9.x/console-web/examples/locale/get.md index 37b259230..b398111e8 100644 --- a/examples/1.9.x/console-web/examples/locale/get.md +++ b/examples/1.9.x/console-web/examples/locale/get.md @@ -2,7 +2,7 @@ import { Client, Locale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/console-web/examples/locale/list-codes.md b/examples/1.9.x/console-web/examples/locale/list-codes.md index 739e3255f..c56988df6 100644 --- a/examples/1.9.x/console-web/examples/locale/list-codes.md +++ b/examples/1.9.x/console-web/examples/locale/list-codes.md @@ -2,7 +2,7 @@ import { Client, Locale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/console-web/examples/locale/list-continents.md b/examples/1.9.x/console-web/examples/locale/list-continents.md index 56fbe897a..c7999fc00 100644 --- a/examples/1.9.x/console-web/examples/locale/list-continents.md +++ b/examples/1.9.x/console-web/examples/locale/list-continents.md @@ -2,7 +2,7 @@ import { Client, Locale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/console-web/examples/locale/list-countries-eu.md b/examples/1.9.x/console-web/examples/locale/list-countries-eu.md index aca056bbb..19ff4e680 100644 --- a/examples/1.9.x/console-web/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/console-web/examples/locale/list-countries-eu.md @@ -2,7 +2,7 @@ import { Client, Locale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/console-web/examples/locale/list-countries-phones.md b/examples/1.9.x/console-web/examples/locale/list-countries-phones.md index 41de55a73..ddb6b71da 100644 --- a/examples/1.9.x/console-web/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/console-web/examples/locale/list-countries-phones.md @@ -2,7 +2,7 @@ import { Client, Locale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/console-web/examples/locale/list-countries.md b/examples/1.9.x/console-web/examples/locale/list-countries.md index f6d7b9e8e..fb4019b73 100644 --- a/examples/1.9.x/console-web/examples/locale/list-countries.md +++ b/examples/1.9.x/console-web/examples/locale/list-countries.md @@ -2,7 +2,7 @@ import { Client, Locale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/console-web/examples/locale/list-currencies.md b/examples/1.9.x/console-web/examples/locale/list-currencies.md index 18fc15b60..5aa668add 100644 --- a/examples/1.9.x/console-web/examples/locale/list-currencies.md +++ b/examples/1.9.x/console-web/examples/locale/list-currencies.md @@ -2,7 +2,7 @@ import { Client, Locale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/console-web/examples/locale/list-languages.md b/examples/1.9.x/console-web/examples/locale/list-languages.md index 93f34bf83..c10bc8329 100644 --- a/examples/1.9.x/console-web/examples/locale/list-languages.md +++ b/examples/1.9.x/console-web/examples/locale/list-languages.md @@ -2,7 +2,7 @@ import { Client, Locale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const locale = new Locale(client); diff --git a/examples/1.9.x/console-web/examples/manager/create-block.md b/examples/1.9.x/console-web/examples/manager/create-block.md index 3515e471d..a74194c73 100644 --- a/examples/1.9.x/console-web/examples/manager/create-block.md +++ b/examples/1.9.x/console-web/examples/manager/create-block.md @@ -1,14 +1,14 @@ ```javascript -import { Client, Manager, ResourceType } from "@appwrite.io/console"; +import { Client, Manager, BlockResourceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint const manager = new Manager(client); const result = await manager.createBlock({ projectId: '', - resourceType: ResourceType.Projects, + resourceType: BlockResourceType.Projects, resourceId: '', // optional reason: '', // optional expiredAt: '2020-10-15T06:38:00.000+00:00' // optional diff --git a/examples/1.9.x/console-web/examples/manager/delete-block.md b/examples/1.9.x/console-web/examples/manager/delete-block.md index 285eee035..f33f55a37 100644 --- a/examples/1.9.x/console-web/examples/manager/delete-block.md +++ b/examples/1.9.x/console-web/examples/manager/delete-block.md @@ -1,14 +1,14 @@ ```javascript -import { Client, Manager, ResourceType } from "@appwrite.io/console"; +import { Client, Manager, BlockResourceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint const manager = new Manager(client); const result = await manager.deleteBlock({ projectId: '', - resourceType: ResourceType.Projects, + resourceType: BlockResourceType.Projects, resourceId: '' // optional }); diff --git a/examples/1.9.x/console-web/examples/manager/list-blocks.md b/examples/1.9.x/console-web/examples/manager/list-blocks.md index 0bdd5c102..ed505a696 100644 --- a/examples/1.9.x/console-web/examples/manager/list-blocks.md +++ b/examples/1.9.x/console-web/examples/manager/list-blocks.md @@ -2,7 +2,7 @@ import { Client, Manager } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint const manager = new Manager(client); diff --git a/examples/1.9.x/console-web/examples/manager/update-user-status.md b/examples/1.9.x/console-web/examples/manager/update-user-status.md index 34af5753b..b2f0e57e7 100644 --- a/examples/1.9.x/console-web/examples/manager/update-user-status.md +++ b/examples/1.9.x/console-web/examples/manager/update-user-status.md @@ -2,7 +2,7 @@ import { Client, Manager } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint const manager = new Manager(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-apns-provider.md b/examples/1.9.x/console-web/examples/messaging/create-apns-provider.md index a361f0d49..1435937cb 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-apns-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-email.md b/examples/1.9.x/console-web/examples/messaging/create-email.md index 6c6fa02fe..2d889c527 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-email.md +++ b/examples/1.9.x/console-web/examples/messaging/create-email.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-fcm-provider.md b/examples/1.9.x/console-web/examples/messaging/create-fcm-provider.md index 382ffe1d7..40e038a2d 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-fcm-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/console-web/examples/messaging/create-mailgun-provider.md index 956f91383..7d964cac2 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-mailgun-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/console-web/examples/messaging/create-msg-91-provider.md index 79135cb50..9054b27a6 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-msg-91-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-push.md b/examples/1.9.x/console-web/examples/messaging/create-push.md index 24385f727..af0e24294 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-push.md +++ b/examples/1.9.x/console-web/examples/messaging/create-push.md @@ -2,7 +2,7 @@ import { Client, Messaging, MessagePriority } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-resend-provider.md b/examples/1.9.x/console-web/examples/messaging/create-resend-provider.md index 5de02136e..3c915571e 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-resend-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/console-web/examples/messaging/create-sendgrid-provider.md index c03cdc80c..b1aad4865 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-sendgrid-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-sms.md b/examples/1.9.x/console-web/examples/messaging/create-sms.md index a6e0e0ec1..378009c54 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-sms.md +++ b/examples/1.9.x/console-web/examples/messaging/create-sms.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-smtp-provider.md b/examples/1.9.x/console-web/examples/messaging/create-smtp-provider.md index 5e7099ad3..fbdac9552 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-smtp-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging, SmtpEncryption } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-subscriber.md b/examples/1.9.x/console-web/examples/messaging/create-subscriber.md index d5abed7ac..e364c365c 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/console-web/examples/messaging/create-subscriber.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-telesign-provider.md b/examples/1.9.x/console-web/examples/messaging/create-telesign-provider.md index fecf2bbd2..8949aea63 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-telesign-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/console-web/examples/messaging/create-textmagic-provider.md index dce3a211f..e1dc7e59e 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-textmagic-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-topic.md b/examples/1.9.x/console-web/examples/messaging/create-topic.md index 9a86f78b5..7f14cc17b 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-topic.md +++ b/examples/1.9.x/console-web/examples/messaging/create-topic.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-twilio-provider.md b/examples/1.9.x/console-web/examples/messaging/create-twilio-provider.md index 53d004872..ec0ffff2b 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-twilio-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/create-vonage-provider.md b/examples/1.9.x/console-web/examples/messaging/create-vonage-provider.md index 8e970d6f5..3fafae532 100644 --- a/examples/1.9.x/console-web/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/create-vonage-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/delete-provider.md b/examples/1.9.x/console-web/examples/messaging/delete-provider.md index e4f0b6a87..b8e9950f9 100644 --- a/examples/1.9.x/console-web/examples/messaging/delete-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/delete-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/delete-subscriber.md b/examples/1.9.x/console-web/examples/messaging/delete-subscriber.md index 9dea15eb0..28b7c8527 100644 --- a/examples/1.9.x/console-web/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/console-web/examples/messaging/delete-subscriber.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/delete-topic.md b/examples/1.9.x/console-web/examples/messaging/delete-topic.md index fb07baf0a..7a9ce89bd 100644 --- a/examples/1.9.x/console-web/examples/messaging/delete-topic.md +++ b/examples/1.9.x/console-web/examples/messaging/delete-topic.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/delete.md b/examples/1.9.x/console-web/examples/messaging/delete.md index e8702e575..4ea2425aa 100644 --- a/examples/1.9.x/console-web/examples/messaging/delete.md +++ b/examples/1.9.x/console-web/examples/messaging/delete.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/get-message.md b/examples/1.9.x/console-web/examples/messaging/get-message.md index d5e777b37..4b0985570 100644 --- a/examples/1.9.x/console-web/examples/messaging/get-message.md +++ b/examples/1.9.x/console-web/examples/messaging/get-message.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/get-provider.md b/examples/1.9.x/console-web/examples/messaging/get-provider.md index d2adcc1ef..269b0d179 100644 --- a/examples/1.9.x/console-web/examples/messaging/get-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/get-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/get-subscriber.md b/examples/1.9.x/console-web/examples/messaging/get-subscriber.md index 3a6b0c4e2..f608ccb8e 100644 --- a/examples/1.9.x/console-web/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/console-web/examples/messaging/get-subscriber.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/get-topic.md b/examples/1.9.x/console-web/examples/messaging/get-topic.md index 6efb434be..09c81262e 100644 --- a/examples/1.9.x/console-web/examples/messaging/get-topic.md +++ b/examples/1.9.x/console-web/examples/messaging/get-topic.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-message-logs.md b/examples/1.9.x/console-web/examples/messaging/list-message-logs.md index 86dc05181..82b362557 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/console-web/examples/messaging/list-message-logs.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-messages.md b/examples/1.9.x/console-web/examples/messaging/list-messages.md index 86d2a6b12..4e474ea2b 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-messages.md +++ b/examples/1.9.x/console-web/examples/messaging/list-messages.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-provider-logs.md b/examples/1.9.x/console-web/examples/messaging/list-provider-logs.md index a3e4deb92..a3c0ee8b7 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/console-web/examples/messaging/list-provider-logs.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-providers.md b/examples/1.9.x/console-web/examples/messaging/list-providers.md index ab3cf343a..3b1ea7c2d 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-providers.md +++ b/examples/1.9.x/console-web/examples/messaging/list-providers.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/console-web/examples/messaging/list-subscriber-logs.md index 745fb0492..90ec53ef5 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/console-web/examples/messaging/list-subscriber-logs.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-subscribers.md b/examples/1.9.x/console-web/examples/messaging/list-subscribers.md index c7aabf9ce..198861a89 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/console-web/examples/messaging/list-subscribers.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-targets.md b/examples/1.9.x/console-web/examples/messaging/list-targets.md index 613be1207..2bc22c21b 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-targets.md +++ b/examples/1.9.x/console-web/examples/messaging/list-targets.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-topic-logs.md b/examples/1.9.x/console-web/examples/messaging/list-topic-logs.md index 5f7f2515b..19aa5b9d6 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/console-web/examples/messaging/list-topic-logs.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/list-topics.md b/examples/1.9.x/console-web/examples/messaging/list-topics.md index c2af07edc..6bd60776e 100644 --- a/examples/1.9.x/console-web/examples/messaging/list-topics.md +++ b/examples/1.9.x/console-web/examples/messaging/list-topics.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-apns-provider.md b/examples/1.9.x/console-web/examples/messaging/update-apns-provider.md index dd06d1189..29f5d631e 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-apns-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-email.md b/examples/1.9.x/console-web/examples/messaging/update-email.md index 819b9f130..6bbbf2f34 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-email.md +++ b/examples/1.9.x/console-web/examples/messaging/update-email.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-fcm-provider.md b/examples/1.9.x/console-web/examples/messaging/update-fcm-provider.md index c16475be9..83de7a34e 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-fcm-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/console-web/examples/messaging/update-mailgun-provider.md index e78d70274..6ccd31eaa 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-mailgun-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/console-web/examples/messaging/update-msg-91-provider.md index 7aa3ec3f5..61ed393e8 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-msg-91-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-push.md b/examples/1.9.x/console-web/examples/messaging/update-push.md index bb0448b44..dd1691ce3 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-push.md +++ b/examples/1.9.x/console-web/examples/messaging/update-push.md @@ -2,7 +2,7 @@ import { Client, Messaging, MessagePriority } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-resend-provider.md b/examples/1.9.x/console-web/examples/messaging/update-resend-provider.md index cfbc37d05..6ff55771f 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-resend-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/console-web/examples/messaging/update-sendgrid-provider.md index 28660a7a2..2d54dac12 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-sendgrid-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-sms.md b/examples/1.9.x/console-web/examples/messaging/update-sms.md index 593445a6c..9409642ee 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-sms.md +++ b/examples/1.9.x/console-web/examples/messaging/update-sms.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-smtp-provider.md b/examples/1.9.x/console-web/examples/messaging/update-smtp-provider.md index ebd649b7e..d04ad77dc 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-smtp-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging, SmtpEncryption } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-telesign-provider.md b/examples/1.9.x/console-web/examples/messaging/update-telesign-provider.md index c95ff2080..807de19b4 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-telesign-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/console-web/examples/messaging/update-textmagic-provider.md index 86fc6ef1b..5d611dd51 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-textmagic-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-topic.md b/examples/1.9.x/console-web/examples/messaging/update-topic.md index ac03014e6..ed562b799 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-topic.md +++ b/examples/1.9.x/console-web/examples/messaging/update-topic.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-twilio-provider.md b/examples/1.9.x/console-web/examples/messaging/update-twilio-provider.md index 8d448fa05..0ce205086 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-twilio-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/messaging/update-vonage-provider.md b/examples/1.9.x/console-web/examples/messaging/update-vonage-provider.md index 3f9175559..25488eeb5 100644 --- a/examples/1.9.x/console-web/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/console-web/examples/messaging/update-vonage-provider.md @@ -2,7 +2,7 @@ import { Client, Messaging } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const messaging = new Messaging(client); diff --git a/examples/1.9.x/console-web/examples/migrations/create-appwrite-migration.md b/examples/1.9.x/console-web/examples/migrations/create-appwrite-migration.md index 9729806fa..e33d1e4f5 100644 --- a/examples/1.9.x/console-web/examples/migrations/create-appwrite-migration.md +++ b/examples/1.9.x/console-web/examples/migrations/create-appwrite-migration.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Migrations, AppwriteMigrationResource, OnDuplicate } from "@appwrite.io/console"; +import { Client, Migrations, AppwriteMigrationResource, MigrationOnDuplicate } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); @@ -12,7 +12,7 @@ const result = await migrations.createAppwriteMigration({ endpoint: 'https://example.com', projectId: '', apiKey: '', - onDuplicate: OnDuplicate.Fail // optional + onDuplicate: MigrationOnDuplicate.Fail // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/migrations/create-csv-export.md b/examples/1.9.x/console-web/examples/migrations/create-csv-export.md index 250a16b19..9229e233d 100644 --- a/examples/1.9.x/console-web/examples/migrations/create-csv-export.md +++ b/examples/1.9.x/console-web/examples/migrations/create-csv-export.md @@ -2,7 +2,7 @@ import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/create-csv-import.md b/examples/1.9.x/console-web/examples/migrations/create-csv-import.md index d24792b68..18a4dd83f 100644 --- a/examples/1.9.x/console-web/examples/migrations/create-csv-import.md +++ b/examples/1.9.x/console-web/examples/migrations/create-csv-import.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Migrations, OnDuplicate } from "@appwrite.io/console"; +import { Client, Migrations, MigrationOnDuplicate } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); @@ -12,7 +12,7 @@ const result = await migrations.createCSVImport({ fileId: '', resourceId: '', internalFile: false, // optional - onDuplicate: OnDuplicate.Fail // optional + onDuplicate: MigrationOnDuplicate.Fail // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/migrations/create-firebase-migration.md b/examples/1.9.x/console-web/examples/migrations/create-firebase-migration.md index 775df5569..d4e0dbf18 100644 --- a/examples/1.9.x/console-web/examples/migrations/create-firebase-migration.md +++ b/examples/1.9.x/console-web/examples/migrations/create-firebase-migration.md @@ -2,7 +2,7 @@ import { Client, Migrations, FirebaseMigrationResource } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/create-json-export.md b/examples/1.9.x/console-web/examples/migrations/create-json-export.md index c5120d074..e9860ff9a 100644 --- a/examples/1.9.x/console-web/examples/migrations/create-json-export.md +++ b/examples/1.9.x/console-web/examples/migrations/create-json-export.md @@ -2,7 +2,7 @@ import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/create-json-import.md b/examples/1.9.x/console-web/examples/migrations/create-json-import.md index f55fc8ffa..386482109 100644 --- a/examples/1.9.x/console-web/examples/migrations/create-json-import.md +++ b/examples/1.9.x/console-web/examples/migrations/create-json-import.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Migrations, OnDuplicate } from "@appwrite.io/console"; +import { Client, Migrations, MigrationOnDuplicate } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); @@ -12,7 +12,7 @@ const result = await migrations.createJSONImport({ fileId: '', resourceId: '', internalFile: false, // optional - onDuplicate: OnDuplicate.Fail // optional + onDuplicate: MigrationOnDuplicate.Fail // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/migrations/create-n-host-migration.md b/examples/1.9.x/console-web/examples/migrations/create-n-host-migration.md index cd17162ab..6fd818520 100644 --- a/examples/1.9.x/console-web/examples/migrations/create-n-host-migration.md +++ b/examples/1.9.x/console-web/examples/migrations/create-n-host-migration.md @@ -2,7 +2,7 @@ import { Client, Migrations, NHostMigrationResource } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/create-supabase-migration.md b/examples/1.9.x/console-web/examples/migrations/create-supabase-migration.md index 6463d3582..0d21d33ab 100644 --- a/examples/1.9.x/console-web/examples/migrations/create-supabase-migration.md +++ b/examples/1.9.x/console-web/examples/migrations/create-supabase-migration.md @@ -2,7 +2,7 @@ import { Client, Migrations, SupabaseMigrationResource } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/delete.md b/examples/1.9.x/console-web/examples/migrations/delete.md index 4eaebdb2f..119fb3bc7 100644 --- a/examples/1.9.x/console-web/examples/migrations/delete.md +++ b/examples/1.9.x/console-web/examples/migrations/delete.md @@ -2,7 +2,7 @@ import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/get-appwrite-report.md b/examples/1.9.x/console-web/examples/migrations/get-appwrite-report.md index d5417c9f6..1f24c49c9 100644 --- a/examples/1.9.x/console-web/examples/migrations/get-appwrite-report.md +++ b/examples/1.9.x/console-web/examples/migrations/get-appwrite-report.md @@ -2,7 +2,7 @@ import { Client, Migrations, AppwriteMigrationResource } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/get-firebase-report.md b/examples/1.9.x/console-web/examples/migrations/get-firebase-report.md index 46b9d8597..ebb628869 100644 --- a/examples/1.9.x/console-web/examples/migrations/get-firebase-report.md +++ b/examples/1.9.x/console-web/examples/migrations/get-firebase-report.md @@ -2,7 +2,7 @@ import { Client, Migrations, FirebaseMigrationResource } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/get-n-host-report.md b/examples/1.9.x/console-web/examples/migrations/get-n-host-report.md index 4ed95ea92..8394cb03d 100644 --- a/examples/1.9.x/console-web/examples/migrations/get-n-host-report.md +++ b/examples/1.9.x/console-web/examples/migrations/get-n-host-report.md @@ -2,7 +2,7 @@ import { Client, Migrations, NHostMigrationResource } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/get-supabase-report.md b/examples/1.9.x/console-web/examples/migrations/get-supabase-report.md index 834dd6bbc..182ec6d1d 100644 --- a/examples/1.9.x/console-web/examples/migrations/get-supabase-report.md +++ b/examples/1.9.x/console-web/examples/migrations/get-supabase-report.md @@ -2,7 +2,7 @@ import { Client, Migrations, SupabaseMigrationResource } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/get.md b/examples/1.9.x/console-web/examples/migrations/get.md index 7e9a6dd78..a7413a04a 100644 --- a/examples/1.9.x/console-web/examples/migrations/get.md +++ b/examples/1.9.x/console-web/examples/migrations/get.md @@ -2,7 +2,7 @@ import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/list.md b/examples/1.9.x/console-web/examples/migrations/list.md index 3bd32ec02..cd9e9e5b9 100644 --- a/examples/1.9.x/console-web/examples/migrations/list.md +++ b/examples/1.9.x/console-web/examples/migrations/list.md @@ -2,7 +2,7 @@ import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/migrations/retry.md b/examples/1.9.x/console-web/examples/migrations/retry.md index 257075078..a3ee1e930 100644 --- a/examples/1.9.x/console-web/examples/migrations/retry.md +++ b/examples/1.9.x/console-web/examples/migrations/retry.md @@ -2,7 +2,7 @@ import { Client, Migrations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const migrations = new Migrations(client); diff --git a/examples/1.9.x/console-web/examples/organization/create-key.md b/examples/1.9.x/console-web/examples/organization/create-key.md new file mode 100644 index 000000000..373c91bf4 --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/create-key.md @@ -0,0 +1,18 @@ +```javascript +import { Client, Organization, OrganizationKeyScopes } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.createKey({ + keyId: '', + name: '', + scopes: [OrganizationKeyScopes.ProjectsRead], + expire: '2020-10-15T06:38:00.000+00:00' // optional +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/create-project.md b/examples/1.9.x/console-web/examples/organization/create-project.md new file mode 100644 index 000000000..e40d9047b --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/create-project.md @@ -0,0 +1,17 @@ +```javascript +import { Client, Organization, Region } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.createProject({ + projectId: '', + name: '', + region: Region.Fra // optional +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/delete-key.md b/examples/1.9.x/console-web/examples/organization/delete-key.md new file mode 100644 index 000000000..6d473e023 --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/delete-key.md @@ -0,0 +1,15 @@ +```javascript +import { Client, Organization } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.deleteKey({ + keyId: '' +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/delete-project.md b/examples/1.9.x/console-web/examples/organization/delete-project.md new file mode 100644 index 000000000..ff00ebb4c --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/delete-project.md @@ -0,0 +1,15 @@ +```javascript +import { Client, Organization } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.deleteProject({ + projectId: '' +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/get-key.md b/examples/1.9.x/console-web/examples/organization/get-key.md new file mode 100644 index 000000000..c0e958d69 --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/get-key.md @@ -0,0 +1,15 @@ +```javascript +import { Client, Organization } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.getKey({ + keyId: '' +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/get-project.md b/examples/1.9.x/console-web/examples/organization/get-project.md new file mode 100644 index 000000000..ec5e5b6b7 --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/get-project.md @@ -0,0 +1,15 @@ +```javascript +import { Client, Organization } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.getProject({ + projectId: '' +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/list-keys.md b/examples/1.9.x/console-web/examples/organization/list-keys.md new file mode 100644 index 000000000..94c9260d9 --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/list-keys.md @@ -0,0 +1,16 @@ +```javascript +import { Client, Organization } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.listKeys({ + queries: [], // optional + total: false // optional +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/list-projects.md b/examples/1.9.x/console-web/examples/organization/list-projects.md new file mode 100644 index 000000000..c9662e64b --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/list-projects.md @@ -0,0 +1,17 @@ +```javascript +import { Client, Organization } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.listProjects({ + queries: [], // optional + search: '', // optional + total: false // optional +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/update-key.md b/examples/1.9.x/console-web/examples/organization/update-key.md new file mode 100644 index 000000000..a1b544ba9 --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/update-key.md @@ -0,0 +1,18 @@ +```javascript +import { Client, Organization, OrganizationKeyScopes } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.updateKey({ + keyId: '', + name: '', + scopes: [OrganizationKeyScopes.ProjectsRead], + expire: '2020-10-15T06:38:00.000+00:00' // optional +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organization/update-project.md b/examples/1.9.x/console-web/examples/organization/update-project.md new file mode 100644 index 000000000..cc14d570f --- /dev/null +++ b/examples/1.9.x/console-web/examples/organization/update-project.md @@ -0,0 +1,16 @@ +```javascript +import { Client, Organization } from "@appwrite.io/console"; + +const client = new Client() + .setEndpoint('') // Your API Endpoint + .setProject(''); // Your project ID + +const organization = new Organization(client); + +const result = await organization.updateProject({ + projectId: '', + name: '' +}); + +console.log(result); +``` diff --git a/examples/1.9.x/console-web/examples/organizations/add-credit.md b/examples/1.9.x/console-web/examples/organizations/add-credit.md index 0fda043a4..1514f1ac4 100644 --- a/examples/1.9.x/console-web/examples/organizations/add-credit.md +++ b/examples/1.9.x/console-web/examples/organizations/add-credit.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/cancel-downgrade.md b/examples/1.9.x/console-web/examples/organizations/cancel-downgrade.md index 3cdc46149..db939d782 100644 --- a/examples/1.9.x/console-web/examples/organizations/cancel-downgrade.md +++ b/examples/1.9.x/console-web/examples/organizations/cancel-downgrade.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/confirm-addon-payment.md b/examples/1.9.x/console-web/examples/organizations/confirm-addon-payment.md index 7c6197834..5f9890d5b 100644 --- a/examples/1.9.x/console-web/examples/organizations/confirm-addon-payment.md +++ b/examples/1.9.x/console-web/examples/organizations/confirm-addon-payment.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/create-baa-addon.md b/examples/1.9.x/console-web/examples/organizations/create-baa-addon.md index 02b1e5275..f8429eb81 100644 --- a/examples/1.9.x/console-web/examples/organizations/create-baa-addon.md +++ b/examples/1.9.x/console-web/examples/organizations/create-baa-addon.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/create-downgrade-feedback.md b/examples/1.9.x/console-web/examples/organizations/create-downgrade-feedback.md index 8b025e082..d4d81dade 100644 --- a/examples/1.9.x/console-web/examples/organizations/create-downgrade-feedback.md +++ b/examples/1.9.x/console-web/examples/organizations/create-downgrade-feedback.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/create-invoice-payment.md b/examples/1.9.x/console-web/examples/organizations/create-invoice-payment.md index 286d85553..c37585a83 100644 --- a/examples/1.9.x/console-web/examples/organizations/create-invoice-payment.md +++ b/examples/1.9.x/console-web/examples/organizations/create-invoice-payment.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/create-plan-estimation.md b/examples/1.9.x/console-web/examples/organizations/create-plan-estimation.md index ee143eccd..86fe2f56f 100644 --- a/examples/1.9.x/console-web/examples/organizations/create-plan-estimation.md +++ b/examples/1.9.x/console-web/examples/organizations/create-plan-estimation.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/create.md b/examples/1.9.x/console-web/examples/organizations/create.md index 109bf6e84..47093bed3 100644 --- a/examples/1.9.x/console-web/examples/organizations/create.md +++ b/examples/1.9.x/console-web/examples/organizations/create.md @@ -2,7 +2,7 @@ import { Client, Organizations, Platform } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/delete-addon.md b/examples/1.9.x/console-web/examples/organizations/delete-addon.md index 98c64eac9..9f42549c9 100644 --- a/examples/1.9.x/console-web/examples/organizations/delete-addon.md +++ b/examples/1.9.x/console-web/examples/organizations/delete-addon.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/delete-backup-payment-method.md b/examples/1.9.x/console-web/examples/organizations/delete-backup-payment-method.md index d16cdffcb..5aa0f7f3b 100644 --- a/examples/1.9.x/console-web/examples/organizations/delete-backup-payment-method.md +++ b/examples/1.9.x/console-web/examples/organizations/delete-backup-payment-method.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/delete-billing-address.md b/examples/1.9.x/console-web/examples/organizations/delete-billing-address.md index c39188dbb..6d065b9f8 100644 --- a/examples/1.9.x/console-web/examples/organizations/delete-billing-address.md +++ b/examples/1.9.x/console-web/examples/organizations/delete-billing-address.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/delete-default-payment-method.md b/examples/1.9.x/console-web/examples/organizations/delete-default-payment-method.md index b998b4d07..271c2d8fc 100644 --- a/examples/1.9.x/console-web/examples/organizations/delete-default-payment-method.md +++ b/examples/1.9.x/console-web/examples/organizations/delete-default-payment-method.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/delete.md b/examples/1.9.x/console-web/examples/organizations/delete.md index f0871e645..5a33ac892 100644 --- a/examples/1.9.x/console-web/examples/organizations/delete.md +++ b/examples/1.9.x/console-web/examples/organizations/delete.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/estimation-create-organization.md b/examples/1.9.x/console-web/examples/organizations/estimation-create-organization.md index e98b30314..23ecd5551 100644 --- a/examples/1.9.x/console-web/examples/organizations/estimation-create-organization.md +++ b/examples/1.9.x/console-web/examples/organizations/estimation-create-organization.md @@ -2,7 +2,7 @@ import { Client, Organizations, Platform } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/estimation-delete-organization.md b/examples/1.9.x/console-web/examples/organizations/estimation-delete-organization.md index 8049bb994..b00458d72 100644 --- a/examples/1.9.x/console-web/examples/organizations/estimation-delete-organization.md +++ b/examples/1.9.x/console-web/examples/organizations/estimation-delete-organization.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/estimation-update-plan.md b/examples/1.9.x/console-web/examples/organizations/estimation-update-plan.md index 0a5b40aab..9526b88b4 100644 --- a/examples/1.9.x/console-web/examples/organizations/estimation-update-plan.md +++ b/examples/1.9.x/console-web/examples/organizations/estimation-update-plan.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-addon-price.md b/examples/1.9.x/console-web/examples/organizations/get-addon-price.md index 1f96ba391..20aaf902a 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-addon-price.md +++ b/examples/1.9.x/console-web/examples/organizations/get-addon-price.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Organizations, Addon } from "@appwrite.io/console"; +import { Client, Organizations, OrganizationAddon } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); const result = await organizations.getAddonPrice({ organizationId: '', - addon: Addon.Baa + addon: OrganizationAddon.Baa }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/organizations/get-addon.md b/examples/1.9.x/console-web/examples/organizations/get-addon.md index ea67f7a2a..6448307fa 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-addon.md +++ b/examples/1.9.x/console-web/examples/organizations/get-addon.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-aggregation.md b/examples/1.9.x/console-web/examples/organizations/get-aggregation.md index c512261f7..6bb9d203b 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-aggregation.md +++ b/examples/1.9.x/console-web/examples/organizations/get-aggregation.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-available-credits.md b/examples/1.9.x/console-web/examples/organizations/get-available-credits.md index 832ba4121..cb4067e3d 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-available-credits.md +++ b/examples/1.9.x/console-web/examples/organizations/get-available-credits.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-billing-address.md b/examples/1.9.x/console-web/examples/organizations/get-billing-address.md index 054f9c475..8437d0d0b 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-billing-address.md +++ b/examples/1.9.x/console-web/examples/organizations/get-billing-address.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-credit.md b/examples/1.9.x/console-web/examples/organizations/get-credit.md index 89f352add..35d59a215 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-credit.md +++ b/examples/1.9.x/console-web/examples/organizations/get-credit.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-invoice-download.md b/examples/1.9.x/console-web/examples/organizations/get-invoice-download.md index d20191ee5..496cf6dc0 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-invoice-download.md +++ b/examples/1.9.x/console-web/examples/organizations/get-invoice-download.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-invoice-view.md b/examples/1.9.x/console-web/examples/organizations/get-invoice-view.md index 58d822e5c..c17b6bf4f 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-invoice-view.md +++ b/examples/1.9.x/console-web/examples/organizations/get-invoice-view.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-invoice.md b/examples/1.9.x/console-web/examples/organizations/get-invoice.md index 94f391854..0de0aac89 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-invoice.md +++ b/examples/1.9.x/console-web/examples/organizations/get-invoice.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-payment-method.md b/examples/1.9.x/console-web/examples/organizations/get-payment-method.md index 8eb8a205d..4f72c2217 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-payment-method.md +++ b/examples/1.9.x/console-web/examples/organizations/get-payment-method.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-plan.md b/examples/1.9.x/console-web/examples/organizations/get-plan.md index a803a967c..2f7c52e16 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-plan.md +++ b/examples/1.9.x/console-web/examples/organizations/get-plan.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-scopes.md b/examples/1.9.x/console-web/examples/organizations/get-scopes.md index dfc1d214b..e18dab942 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-scopes.md +++ b/examples/1.9.x/console-web/examples/organizations/get-scopes.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/get-usage.md b/examples/1.9.x/console-web/examples/organizations/get-usage.md index c637eb271..565505b35 100644 --- a/examples/1.9.x/console-web/examples/organizations/get-usage.md +++ b/examples/1.9.x/console-web/examples/organizations/get-usage.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/list-addons.md b/examples/1.9.x/console-web/examples/organizations/list-addons.md index 57995752c..0abaef0c6 100644 --- a/examples/1.9.x/console-web/examples/organizations/list-addons.md +++ b/examples/1.9.x/console-web/examples/organizations/list-addons.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/list-aggregations.md b/examples/1.9.x/console-web/examples/organizations/list-aggregations.md index 6afefb721..c813f26b4 100644 --- a/examples/1.9.x/console-web/examples/organizations/list-aggregations.md +++ b/examples/1.9.x/console-web/examples/organizations/list-aggregations.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/list-credits.md b/examples/1.9.x/console-web/examples/organizations/list-credits.md index bde215abd..8c8434ca4 100644 --- a/examples/1.9.x/console-web/examples/organizations/list-credits.md +++ b/examples/1.9.x/console-web/examples/organizations/list-credits.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/list-invoices.md b/examples/1.9.x/console-web/examples/organizations/list-invoices.md index 91befb1ac..63c9ccdd0 100644 --- a/examples/1.9.x/console-web/examples/organizations/list-invoices.md +++ b/examples/1.9.x/console-web/examples/organizations/list-invoices.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/list-regions.md b/examples/1.9.x/console-web/examples/organizations/list-regions.md index 851995cdf..aea519b2b 100644 --- a/examples/1.9.x/console-web/examples/organizations/list-regions.md +++ b/examples/1.9.x/console-web/examples/organizations/list-regions.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/list.md b/examples/1.9.x/console-web/examples/organizations/list.md index 27794c998..d5574b975 100644 --- a/examples/1.9.x/console-web/examples/organizations/list.md +++ b/examples/1.9.x/console-web/examples/organizations/list.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/set-backup-payment-method.md b/examples/1.9.x/console-web/examples/organizations/set-backup-payment-method.md index 3db0dffe5..6bea5c449 100644 --- a/examples/1.9.x/console-web/examples/organizations/set-backup-payment-method.md +++ b/examples/1.9.x/console-web/examples/organizations/set-backup-payment-method.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/set-billing-address.md b/examples/1.9.x/console-web/examples/organizations/set-billing-address.md index 1c1c5b193..1bd329b83 100644 --- a/examples/1.9.x/console-web/examples/organizations/set-billing-address.md +++ b/examples/1.9.x/console-web/examples/organizations/set-billing-address.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/set-billing-email.md b/examples/1.9.x/console-web/examples/organizations/set-billing-email.md index 61cd3b880..cd8be04d2 100644 --- a/examples/1.9.x/console-web/examples/organizations/set-billing-email.md +++ b/examples/1.9.x/console-web/examples/organizations/set-billing-email.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/set-billing-tax-id.md b/examples/1.9.x/console-web/examples/organizations/set-billing-tax-id.md index f5b660074..c58c60821 100644 --- a/examples/1.9.x/console-web/examples/organizations/set-billing-tax-id.md +++ b/examples/1.9.x/console-web/examples/organizations/set-billing-tax-id.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/set-default-payment-method.md b/examples/1.9.x/console-web/examples/organizations/set-default-payment-method.md index b6d465f6a..31186571b 100644 --- a/examples/1.9.x/console-web/examples/organizations/set-default-payment-method.md +++ b/examples/1.9.x/console-web/examples/organizations/set-default-payment-method.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/update-budget.md b/examples/1.9.x/console-web/examples/organizations/update-budget.md index a923b5f9c..7ca17cafd 100644 --- a/examples/1.9.x/console-web/examples/organizations/update-budget.md +++ b/examples/1.9.x/console-web/examples/organizations/update-budget.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/update-plan.md b/examples/1.9.x/console-web/examples/organizations/update-plan.md index 7ca08da61..ab996a0b2 100644 --- a/examples/1.9.x/console-web/examples/organizations/update-plan.md +++ b/examples/1.9.x/console-web/examples/organizations/update-plan.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/validate-invoice.md b/examples/1.9.x/console-web/examples/organizations/validate-invoice.md index 2b1c078f7..47fd50e46 100644 --- a/examples/1.9.x/console-web/examples/organizations/validate-invoice.md +++ b/examples/1.9.x/console-web/examples/organizations/validate-invoice.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/organizations/validate-payment.md b/examples/1.9.x/console-web/examples/organizations/validate-payment.md index 9e999952e..f11e60ab0 100644 --- a/examples/1.9.x/console-web/examples/organizations/validate-payment.md +++ b/examples/1.9.x/console-web/examples/organizations/validate-payment.md @@ -2,7 +2,7 @@ import { Client, Organizations } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const organizations = new Organizations(client); diff --git a/examples/1.9.x/console-web/examples/presences/delete.md b/examples/1.9.x/console-web/examples/presences/delete.md index 7773d3a29..4e4d9bfef 100644 --- a/examples/1.9.x/console-web/examples/presences/delete.md +++ b/examples/1.9.x/console-web/examples/presences/delete.md @@ -2,7 +2,7 @@ import { Client, Presences } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/console-web/examples/presences/get-usage.md b/examples/1.9.x/console-web/examples/presences/get-usage.md index 5f9549801..11df9f0a5 100644 --- a/examples/1.9.x/console-web/examples/presences/get-usage.md +++ b/examples/1.9.x/console-web/examples/presences/get-usage.md @@ -2,13 +2,13 @@ import { Client, Presences, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); const result = await presences.getUsage({ - range: UsageRange.24h // optional + range: UsageRange.TwentyFourHours // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/presences/get.md b/examples/1.9.x/console-web/examples/presences/get.md index c2d4ca0d7..62f95474a 100644 --- a/examples/1.9.x/console-web/examples/presences/get.md +++ b/examples/1.9.x/console-web/examples/presences/get.md @@ -2,7 +2,7 @@ import { Client, Presences } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/console-web/examples/presences/list.md b/examples/1.9.x/console-web/examples/presences/list.md index 5cd70b446..ef094ed00 100644 --- a/examples/1.9.x/console-web/examples/presences/list.md +++ b/examples/1.9.x/console-web/examples/presences/list.md @@ -2,7 +2,7 @@ import { Client, Presences } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/console-web/examples/presences/update-presence.md b/examples/1.9.x/console-web/examples/presences/update-presence.md index f735ef39c..3b48a17d1 100644 --- a/examples/1.9.x/console-web/examples/presences/update-presence.md +++ b/examples/1.9.x/console-web/examples/presences/update-presence.md @@ -2,7 +2,7 @@ import { Client, Presences, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/console-web/examples/presences/upsert.md b/examples/1.9.x/console-web/examples/presences/upsert.md index fa7d6cba1..2b0d50ccd 100644 --- a/examples/1.9.x/console-web/examples/presences/upsert.md +++ b/examples/1.9.x/console-web/examples/presences/upsert.md @@ -2,7 +2,7 @@ import { Client, Presences, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const presences = new Presences(client); diff --git a/examples/1.9.x/console-web/examples/project/create-android-platform.md b/examples/1.9.x/console-web/examples/project/create-android-platform.md index 7a553d5d0..1ce480b7a 100644 --- a/examples/1.9.x/console-web/examples/project/create-android-platform.md +++ b/examples/1.9.x/console-web/examples/project/create-android-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-apple-platform.md b/examples/1.9.x/console-web/examples/project/create-apple-platform.md index 313f77057..3dac1d0ac 100644 --- a/examples/1.9.x/console-web/examples/project/create-apple-platform.md +++ b/examples/1.9.x/console-web/examples/project/create-apple-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-ephemeral-key.md b/examples/1.9.x/console-web/examples/project/create-ephemeral-key.md index 233f3b8e5..5e00a5472 100644 --- a/examples/1.9.x/console-web/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/console-web/examples/project/create-ephemeral-key.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectKeyScopes } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-key.md b/examples/1.9.x/console-web/examples/project/create-key.md index b0feb14f3..5c80f5717 100644 --- a/examples/1.9.x/console-web/examples/project/create-key.md +++ b/examples/1.9.x/console-web/examples/project/create-key.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectKeyScopes } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-linux-platform.md b/examples/1.9.x/console-web/examples/project/create-linux-platform.md index f7c54062f..c8629a1de 100644 --- a/examples/1.9.x/console-web/examples/project/create-linux-platform.md +++ b/examples/1.9.x/console-web/examples/project/create-linux-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-mock-phone.md b/examples/1.9.x/console-web/examples/project/create-mock-phone.md index eaf3dad68..d345c423e 100644 --- a/examples/1.9.x/console-web/examples/project/create-mock-phone.md +++ b/examples/1.9.x/console-web/examples/project/create-mock-phone.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-smtp-test.md b/examples/1.9.x/console-web/examples/project/create-smtp-test.md index 85a119491..4f44cad6d 100644 --- a/examples/1.9.x/console-web/examples/project/create-smtp-test.md +++ b/examples/1.9.x/console-web/examples/project/create-smtp-test.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-variable.md b/examples/1.9.x/console-web/examples/project/create-variable.md index c27a58ddb..f7362693f 100644 --- a/examples/1.9.x/console-web/examples/project/create-variable.md +++ b/examples/1.9.x/console-web/examples/project/create-variable.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-web-platform.md b/examples/1.9.x/console-web/examples/project/create-web-platform.md index 1349d26d4..8e90a61e2 100644 --- a/examples/1.9.x/console-web/examples/project/create-web-platform.md +++ b/examples/1.9.x/console-web/examples/project/create-web-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/create-windows-platform.md b/examples/1.9.x/console-web/examples/project/create-windows-platform.md index a099d9101..49b1c4d04 100644 --- a/examples/1.9.x/console-web/examples/project/create-windows-platform.md +++ b/examples/1.9.x/console-web/examples/project/create-windows-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/delete-key.md b/examples/1.9.x/console-web/examples/project/delete-key.md index b97331d08..d3ee5f543 100644 --- a/examples/1.9.x/console-web/examples/project/delete-key.md +++ b/examples/1.9.x/console-web/examples/project/delete-key.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/delete-mock-phone.md b/examples/1.9.x/console-web/examples/project/delete-mock-phone.md index 598c56aae..ac7b09e9e 100644 --- a/examples/1.9.x/console-web/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/console-web/examples/project/delete-mock-phone.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/delete-platform.md b/examples/1.9.x/console-web/examples/project/delete-platform.md index 54092d789..0db8717e1 100644 --- a/examples/1.9.x/console-web/examples/project/delete-platform.md +++ b/examples/1.9.x/console-web/examples/project/delete-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/delete-variable.md b/examples/1.9.x/console-web/examples/project/delete-variable.md index 1435d112f..8dd90ee92 100644 --- a/examples/1.9.x/console-web/examples/project/delete-variable.md +++ b/examples/1.9.x/console-web/examples/project/delete-variable.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/delete.md b/examples/1.9.x/console-web/examples/project/delete.md index 7e38d433e..74c14bd6f 100644 --- a/examples/1.9.x/console-web/examples/project/delete.md +++ b/examples/1.9.x/console-web/examples/project/delete.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get-email-template.md b/examples/1.9.x/console-web/examples/project/get-email-template.md index 48e3b230a..69b894ab4 100644 --- a/examples/1.9.x/console-web/examples/project/get-email-template.md +++ b/examples/1.9.x/console-web/examples/project/get-email-template.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectEmailTemplateId, ProjectEmailTemplateLocale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get-key.md b/examples/1.9.x/console-web/examples/project/get-key.md index f2454e214..afa498b05 100644 --- a/examples/1.9.x/console-web/examples/project/get-key.md +++ b/examples/1.9.x/console-web/examples/project/get-key.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get-mock-phone.md b/examples/1.9.x/console-web/examples/project/get-mock-phone.md index 938b5915c..b13856891 100644 --- a/examples/1.9.x/console-web/examples/project/get-mock-phone.md +++ b/examples/1.9.x/console-web/examples/project/get-mock-phone.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/console-web/examples/project/get-o-auth-2-provider.md index ed4d80920..d056ae637 100644 --- a/examples/1.9.x/console-web/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/console-web/examples/project/get-o-auth-2-provider.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectOAuthProviderId } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get-platform.md b/examples/1.9.x/console-web/examples/project/get-platform.md index 1ae148783..a8bf6a6f2 100644 --- a/examples/1.9.x/console-web/examples/project/get-platform.md +++ b/examples/1.9.x/console-web/examples/project/get-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get-policy.md b/examples/1.9.x/console-web/examples/project/get-policy.md index be06807f9..d9bfb582d 100644 --- a/examples/1.9.x/console-web/examples/project/get-policy.md +++ b/examples/1.9.x/console-web/examples/project/get-policy.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectPolicyId } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get-usage.md b/examples/1.9.x/console-web/examples/project/get-usage.md index 79bf3af99..198a4bb3e 100644 --- a/examples/1.9.x/console-web/examples/project/get-usage.md +++ b/examples/1.9.x/console-web/examples/project/get-usage.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectUsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get-variable.md b/examples/1.9.x/console-web/examples/project/get-variable.md index bf5de97bd..08e1784f1 100644 --- a/examples/1.9.x/console-web/examples/project/get-variable.md +++ b/examples/1.9.x/console-web/examples/project/get-variable.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/get.md b/examples/1.9.x/console-web/examples/project/get.md index 2d4d9f943..105602f9a 100644 --- a/examples/1.9.x/console-web/examples/project/get.md +++ b/examples/1.9.x/console-web/examples/project/get.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/list-email-templates.md b/examples/1.9.x/console-web/examples/project/list-email-templates.md index ec206bf39..80380ec01 100644 --- a/examples/1.9.x/console-web/examples/project/list-email-templates.md +++ b/examples/1.9.x/console-web/examples/project/list-email-templates.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/list-keys.md b/examples/1.9.x/console-web/examples/project/list-keys.md index c91def363..d8af19d40 100644 --- a/examples/1.9.x/console-web/examples/project/list-keys.md +++ b/examples/1.9.x/console-web/examples/project/list-keys.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/list-mock-phones.md b/examples/1.9.x/console-web/examples/project/list-mock-phones.md index d60a0570c..47d78713c 100644 --- a/examples/1.9.x/console-web/examples/project/list-mock-phones.md +++ b/examples/1.9.x/console-web/examples/project/list-mock-phones.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/console-web/examples/project/list-o-auth-2-providers.md index 3c8d5ea60..a5ca17fe4 100644 --- a/examples/1.9.x/console-web/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/console-web/examples/project/list-o-auth-2-providers.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/list-platforms.md b/examples/1.9.x/console-web/examples/project/list-platforms.md index fe3bb74c4..0af9ef5a0 100644 --- a/examples/1.9.x/console-web/examples/project/list-platforms.md +++ b/examples/1.9.x/console-web/examples/project/list-platforms.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/list-policies.md b/examples/1.9.x/console-web/examples/project/list-policies.md index d1d842418..5f7f0dcef 100644 --- a/examples/1.9.x/console-web/examples/project/list-policies.md +++ b/examples/1.9.x/console-web/examples/project/list-policies.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/list-variables.md b/examples/1.9.x/console-web/examples/project/list-variables.md index 52cdb7336..e33fcb8fb 100644 --- a/examples/1.9.x/console-web/examples/project/list-variables.md +++ b/examples/1.9.x/console-web/examples/project/list-variables.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-android-platform.md b/examples/1.9.x/console-web/examples/project/update-android-platform.md index 7842a6d60..ab3c67047 100644 --- a/examples/1.9.x/console-web/examples/project/update-android-platform.md +++ b/examples/1.9.x/console-web/examples/project/update-android-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-apple-platform.md b/examples/1.9.x/console-web/examples/project/update-apple-platform.md index 3788edfc6..9e1d6969a 100644 --- a/examples/1.9.x/console-web/examples/project/update-apple-platform.md +++ b/examples/1.9.x/console-web/examples/project/update-apple-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-auth-method.md b/examples/1.9.x/console-web/examples/project/update-auth-method.md index e92f12456..1a06c694d 100644 --- a/examples/1.9.x/console-web/examples/project/update-auth-method.md +++ b/examples/1.9.x/console-web/examples/project/update-auth-method.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectAuthMethodId } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/console-web/examples/project/update-deny-aliased-email-policy.md index f9a253de2..8d7da745a 100644 --- a/examples/1.9.x/console-web/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-deny-aliased-email-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/console-web/examples/project/update-deny-disposable-email-policy.md index 498ad335b..1ce6589f6 100644 --- a/examples/1.9.x/console-web/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-deny-disposable-email-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/console-web/examples/project/update-deny-free-email-policy.md index 0356a7982..7b26139bf 100644 --- a/examples/1.9.x/console-web/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-deny-free-email-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-email-template.md b/examples/1.9.x/console-web/examples/project/update-email-template.md index 7b2951f93..9f72b831e 100644 --- a/examples/1.9.x/console-web/examples/project/update-email-template.md +++ b/examples/1.9.x/console-web/examples/project/update-email-template.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectEmailTemplateId, ProjectEmailTemplateLocale } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-key.md b/examples/1.9.x/console-web/examples/project/update-key.md index 636419e00..3e210f05b 100644 --- a/examples/1.9.x/console-web/examples/project/update-key.md +++ b/examples/1.9.x/console-web/examples/project/update-key.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectKeyScopes } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-labels.md b/examples/1.9.x/console-web/examples/project/update-labels.md index acf873ad8..60a925fd5 100644 --- a/examples/1.9.x/console-web/examples/project/update-labels.md +++ b/examples/1.9.x/console-web/examples/project/update-labels.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-linux-platform.md b/examples/1.9.x/console-web/examples/project/update-linux-platform.md index 9e1d680cc..6e4d3c788 100644 --- a/examples/1.9.x/console-web/examples/project/update-linux-platform.md +++ b/examples/1.9.x/console-web/examples/project/update-linux-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/console-web/examples/project/update-membership-privacy-policy.md index 006f1f82c..9c26800a6 100644 --- a/examples/1.9.x/console-web/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-membership-privacy-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-mock-phone.md b/examples/1.9.x/console-web/examples/project/update-mock-phone.md index 88204665f..4c6ebfed3 100644 --- a/examples/1.9.x/console-web/examples/project/update-mock-phone.md +++ b/examples/1.9.x/console-web/examples/project/update-mock-phone.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-amazon.md index 415051517..c0426ac8c 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-amazon.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-apple.md index 088f42faa..82b117dc7 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-apple.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-auth-0.md index aae061ce6..59da012f6 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-auth-0.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-authentik.md index b59b7ced6..1396634fd 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-authentik.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-autodesk.md index 675caa2ab..f637bdfe2 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-autodesk.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-bitbucket.md index 98b39d672..0455e6aa6 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-bitbucket.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-bitly.md index 572d6dcff..eae2f112a 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-bitly.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-box.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-box.md index a3010c050..97ddf8ee3 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-box.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-dailymotion.md index 40912058c..582509237 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-dailymotion.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-discord.md index c289e4b4c..ca76b1b50 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-discord.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-disqus.md index b356ce7fc..9136a0331 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-disqus.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-dropbox.md index f088118af..a9c203d5f 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-dropbox.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-etsy.md index 469c0a081..dec475240 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-etsy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-facebook.md index 1af18fbdb..9f8a5598e 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-facebook.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-figma.md index e1b358751..2b3154322 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-figma.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-fusion-auth.md index da29e909e..669048291 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-fusion-auth.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-git-hub.md index f1dbb6170..daa275f5c 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-git-hub.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-gitlab.md index 5191d0138..2f36b9316 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-gitlab.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-google.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-google.md index c84567de7..245ea68b3 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-google.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectOAuth2GooglePrompt } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-keycloak.md index 7121691d5..6039e11b9 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-keycloak.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-kick.md index 1bf99d6be..b4cec2bad 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-kick.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-linkedin.md index 2ba49a513..4459988ee 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-linkedin.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-microsoft.md index 3e10286a1..4fd5c3df0 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-microsoft.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-notion.md index 7c9c0f09a..7d0f67624 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-notion.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-oidc.md index 4f97fb2ff..b9986f665 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-oidc.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-okta.md index 6621728e5..d54477a54 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-okta.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-paypal-sandbox.md index d69e3e05f..018191854 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-paypal-sandbox.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-paypal.md index 4e41a3243..aedf98ba0 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-paypal.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-podio.md index 247b96cc4..069067e28 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-podio.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-salesforce.md index 8472e309f..0dda72ba4 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-salesforce.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-slack.md index 7258f2784..19f579e7e 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-slack.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-spotify.md index 796fd5cb5..8a1712234 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-spotify.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-stripe.md index 6faf6dc10..ef55d6db2 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-stripe.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-tradeshift-sandbox.md index d7eabe6e8..b5c88422b 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-tradeshift.md index 90a18465a..39ff66f79 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-tradeshift.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-twitch.md index 0fc86b17e..b1f912de0 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-twitch.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-word-press.md index 1925bdd2c..edd72edd8 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-word-press.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-yahoo.md index 07af9e12d..c320753e2 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-yahoo.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-yandex.md index b43566b7e..ddd01b6e8 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-yandex.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-zoho.md index f0113d059..0ffe00899 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-zoho.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2-zoom.md index 531a66a6d..5cf43dce9 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2-zoom.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-o-auth-2x.md b/examples/1.9.x/console-web/examples/project/update-o-auth-2x.md index 8510e6e5e..1b6c81a7f 100644 --- a/examples/1.9.x/console-web/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/console-web/examples/project/update-o-auth-2x.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/console-web/examples/project/update-password-dictionary-policy.md index 1c37ab287..221e530dd 100644 --- a/examples/1.9.x/console-web/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-password-dictionary-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-password-history-policy.md b/examples/1.9.x/console-web/examples/project/update-password-history-policy.md index a038012a6..c80c7672d 100644 --- a/examples/1.9.x/console-web/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-password-history-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/console-web/examples/project/update-password-personal-data-policy.md index d7de7f17b..b59290356 100644 --- a/examples/1.9.x/console-web/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-password-personal-data-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-protocol.md b/examples/1.9.x/console-web/examples/project/update-protocol.md index e966ad7c4..a390d6c7f 100644 --- a/examples/1.9.x/console-web/examples/project/update-protocol.md +++ b/examples/1.9.x/console-web/examples/project/update-protocol.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectProtocolId } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-service.md b/examples/1.9.x/console-web/examples/project/update-service.md index b3b1ffd30..74f5d6fc1 100644 --- a/examples/1.9.x/console-web/examples/project/update-service.md +++ b/examples/1.9.x/console-web/examples/project/update-service.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectServiceId } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-session-alert-policy.md b/examples/1.9.x/console-web/examples/project/update-session-alert-policy.md index 96d6a4897..ce55d5842 100644 --- a/examples/1.9.x/console-web/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-session-alert-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-session-duration-policy.md b/examples/1.9.x/console-web/examples/project/update-session-duration-policy.md index b5c9852aa..f94b10aeb 100644 --- a/examples/1.9.x/console-web/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-session-duration-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/console-web/examples/project/update-session-invalidation-policy.md index 448eb6e78..0718017a9 100644 --- a/examples/1.9.x/console-web/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-session-invalidation-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-session-limit-policy.md b/examples/1.9.x/console-web/examples/project/update-session-limit-policy.md index 5dc94994c..7040ab195 100644 --- a/examples/1.9.x/console-web/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-session-limit-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-smtp.md b/examples/1.9.x/console-web/examples/project/update-smtp.md index c2236be50..af969a28e 100644 --- a/examples/1.9.x/console-web/examples/project/update-smtp.md +++ b/examples/1.9.x/console-web/examples/project/update-smtp.md @@ -2,7 +2,7 @@ import { Client, Project, ProjectSMTPSecure } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-user-limit-policy.md b/examples/1.9.x/console-web/examples/project/update-user-limit-policy.md index c85620a41..f8164cb13 100644 --- a/examples/1.9.x/console-web/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/console-web/examples/project/update-user-limit-policy.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-variable.md b/examples/1.9.x/console-web/examples/project/update-variable.md index 2eedd9026..15fb87862 100644 --- a/examples/1.9.x/console-web/examples/project/update-variable.md +++ b/examples/1.9.x/console-web/examples/project/update-variable.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-web-platform.md b/examples/1.9.x/console-web/examples/project/update-web-platform.md index 13ece6e7f..4bdf820ae 100644 --- a/examples/1.9.x/console-web/examples/project/update-web-platform.md +++ b/examples/1.9.x/console-web/examples/project/update-web-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/project/update-windows-platform.md b/examples/1.9.x/console-web/examples/project/update-windows-platform.md index c49a42849..e13d29d5e 100644 --- a/examples/1.9.x/console-web/examples/project/update-windows-platform.md +++ b/examples/1.9.x/console-web/examples/project/update-windows-platform.md @@ -2,7 +2,7 @@ import { Client, Project } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const project = new Project(client); diff --git a/examples/1.9.x/console-web/examples/projects/create-dev-key.md b/examples/1.9.x/console-web/examples/projects/create-dev-key.md index ce2f1f124..5f11447b8 100644 --- a/examples/1.9.x/console-web/examples/projects/create-dev-key.md +++ b/examples/1.9.x/console-web/examples/projects/create-dev-key.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/projects/create-schedule.md b/examples/1.9.x/console-web/examples/projects/create-schedule.md index a55d7f0f1..88c142847 100644 --- a/examples/1.9.x/console-web/examples/projects/create-schedule.md +++ b/examples/1.9.x/console-web/examples/projects/create-schedule.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Projects, ResourceType } from "@appwrite.io/console"; +import { Client, Projects, ScheduleResourceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); const result = await projects.createSchedule({ projectId: '', - resourceType: ResourceType.Function, + resourceType: ScheduleResourceType.Function, resourceId: '', schedule: '', active: false, // optional diff --git a/examples/1.9.x/console-web/examples/projects/delete-dev-key.md b/examples/1.9.x/console-web/examples/projects/delete-dev-key.md index 8130044a9..7b7f1aadb 100644 --- a/examples/1.9.x/console-web/examples/projects/delete-dev-key.md +++ b/examples/1.9.x/console-web/examples/projects/delete-dev-key.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/projects/get-dev-key.md b/examples/1.9.x/console-web/examples/projects/get-dev-key.md index 3262240ac..7b9d84268 100644 --- a/examples/1.9.x/console-web/examples/projects/get-dev-key.md +++ b/examples/1.9.x/console-web/examples/projects/get-dev-key.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/projects/get-schedule.md b/examples/1.9.x/console-web/examples/projects/get-schedule.md index 356c0f0c7..4c072234e 100644 --- a/examples/1.9.x/console-web/examples/projects/get-schedule.md +++ b/examples/1.9.x/console-web/examples/projects/get-schedule.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/projects/list-dev-keys.md b/examples/1.9.x/console-web/examples/projects/list-dev-keys.md index 02ff49626..442fd06a4 100644 --- a/examples/1.9.x/console-web/examples/projects/list-dev-keys.md +++ b/examples/1.9.x/console-web/examples/projects/list-dev-keys.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/projects/list-schedules.md b/examples/1.9.x/console-web/examples/projects/list-schedules.md index 64f030a2e..ce0e96755 100644 --- a/examples/1.9.x/console-web/examples/projects/list-schedules.md +++ b/examples/1.9.x/console-web/examples/projects/list-schedules.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/projects/update-console-access.md b/examples/1.9.x/console-web/examples/projects/update-console-access.md index c861c6df1..4fbb4fe0c 100644 --- a/examples/1.9.x/console-web/examples/projects/update-console-access.md +++ b/examples/1.9.x/console-web/examples/projects/update-console-access.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/projects/update-dev-key.md b/examples/1.9.x/console-web/examples/projects/update-dev-key.md index aa667ca78..860217f0a 100644 --- a/examples/1.9.x/console-web/examples/projects/update-dev-key.md +++ b/examples/1.9.x/console-web/examples/projects/update-dev-key.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/projects/update-status.md b/examples/1.9.x/console-web/examples/projects/update-status.md index d795d87e5..c8a039ebe 100644 --- a/examples/1.9.x/console-web/examples/projects/update-status.md +++ b/examples/1.9.x/console-web/examples/projects/update-status.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Projects, Status } from "@appwrite.io/console"; +import { Client, Projects, ProjectStatus } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); const result = await projects.updateStatus({ projectId: '', - status: Status.Active + status: ProjectStatus.Active }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/projects/update-team.md b/examples/1.9.x/console-web/examples/projects/update-team.md index 4062f8faa..da942087b 100644 --- a/examples/1.9.x/console-web/examples/projects/update-team.md +++ b/examples/1.9.x/console-web/examples/projects/update-team.md @@ -2,7 +2,7 @@ import { Client, Projects } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const projects = new Projects(client); diff --git a/examples/1.9.x/console-web/examples/proxy/create-api-rule.md b/examples/1.9.x/console-web/examples/proxy/create-api-rule.md index 8fb6d2387..4b63b4023 100644 --- a/examples/1.9.x/console-web/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/console-web/examples/proxy/create-api-rule.md @@ -2,7 +2,7 @@ import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const proxy = new Proxy(client); diff --git a/examples/1.9.x/console-web/examples/proxy/create-function-rule.md b/examples/1.9.x/console-web/examples/proxy/create-function-rule.md index a7d9ae631..222108087 100644 --- a/examples/1.9.x/console-web/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/console-web/examples/proxy/create-function-rule.md @@ -2,7 +2,7 @@ import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const proxy = new Proxy(client); diff --git a/examples/1.9.x/console-web/examples/proxy/create-redirect-rule.md b/examples/1.9.x/console-web/examples/proxy/create-redirect-rule.md index 1b8d2f39f..b7a92bbbd 100644 --- a/examples/1.9.x/console-web/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/console-web/examples/proxy/create-redirect-rule.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Proxy, StatusCode, ProxyResourceType } from "@appwrite.io/console"; +import { Client, Proxy, RedirectStatusCode, ProxyResourceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const proxy = new Proxy(client); @@ -10,7 +10,7 @@ const proxy = new Proxy(client); const result = await proxy.createRedirectRule({ domain: '', url: 'https://example.com', - statusCode: StatusCode.MovedPermanently301, + statusCode: RedirectStatusCode.MovedPermanently, resourceId: '', resourceType: ProxyResourceType.Site }); diff --git a/examples/1.9.x/console-web/examples/proxy/create-site-rule.md b/examples/1.9.x/console-web/examples/proxy/create-site-rule.md index 9f30b1806..c808c13e1 100644 --- a/examples/1.9.x/console-web/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/console-web/examples/proxy/create-site-rule.md @@ -2,7 +2,7 @@ import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const proxy = new Proxy(client); diff --git a/examples/1.9.x/console-web/examples/proxy/delete-rule.md b/examples/1.9.x/console-web/examples/proxy/delete-rule.md index 96bd5b2fc..091bba633 100644 --- a/examples/1.9.x/console-web/examples/proxy/delete-rule.md +++ b/examples/1.9.x/console-web/examples/proxy/delete-rule.md @@ -2,7 +2,7 @@ import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const proxy = new Proxy(client); diff --git a/examples/1.9.x/console-web/examples/proxy/get-rule.md b/examples/1.9.x/console-web/examples/proxy/get-rule.md index 2cb890fb9..3f562227f 100644 --- a/examples/1.9.x/console-web/examples/proxy/get-rule.md +++ b/examples/1.9.x/console-web/examples/proxy/get-rule.md @@ -2,7 +2,7 @@ import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const proxy = new Proxy(client); diff --git a/examples/1.9.x/console-web/examples/proxy/list-rules.md b/examples/1.9.x/console-web/examples/proxy/list-rules.md index b4bd8701c..851d6b70f 100644 --- a/examples/1.9.x/console-web/examples/proxy/list-rules.md +++ b/examples/1.9.x/console-web/examples/proxy/list-rules.md @@ -2,7 +2,7 @@ import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const proxy = new Proxy(client); diff --git a/examples/1.9.x/console-web/examples/proxy/update-rule-status.md b/examples/1.9.x/console-web/examples/proxy/update-rule-status.md index 393108887..b16929582 100644 --- a/examples/1.9.x/console-web/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/console-web/examples/proxy/update-rule-status.md @@ -2,7 +2,7 @@ import { Client, Proxy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const proxy = new Proxy(client); diff --git a/examples/1.9.x/console-web/examples/sites/create-deployment.md b/examples/1.9.x/console-web/examples/sites/create-deployment.md index ce2f439ed..ac6d6d4d1 100644 --- a/examples/1.9.x/console-web/examples/sites/create-deployment.md +++ b/examples/1.9.x/console-web/examples/sites/create-deployment.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/console-web/examples/sites/create-duplicate-deployment.md index e202b7e3d..03ca85db0 100644 --- a/examples/1.9.x/console-web/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/console-web/examples/sites/create-duplicate-deployment.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/create-template-deployment.md b/examples/1.9.x/console-web/examples/sites/create-template-deployment.md index 1a9584cf9..663671d95 100644 --- a/examples/1.9.x/console-web/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/console-web/examples/sites/create-template-deployment.md @@ -2,7 +2,7 @@ import { Client, Sites, TemplateReferenceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/create-variable.md b/examples/1.9.x/console-web/examples/sites/create-variable.md index 73f2f2d9b..e01e6f875 100644 --- a/examples/1.9.x/console-web/examples/sites/create-variable.md +++ b/examples/1.9.x/console-web/examples/sites/create-variable.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/create-vcs-deployment.md b/examples/1.9.x/console-web/examples/sites/create-vcs-deployment.md index c4313ec80..aa75b3cfd 100644 --- a/examples/1.9.x/console-web/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/console-web/examples/sites/create-vcs-deployment.md @@ -2,7 +2,7 @@ import { Client, Sites, VCSReferenceType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/create.md b/examples/1.9.x/console-web/examples/sites/create.md index a86709e8b..df42f398a 100644 --- a/examples/1.9.x/console-web/examples/sites/create.md +++ b/examples/1.9.x/console-web/examples/sites/create.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Sites, Framework, BuildRuntime, Adapter } from "@appwrite.io/console"; +import { Client, Sites, SiteFramework, SiteBuildRuntime, SiteAdapter } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); @@ -10,8 +10,8 @@ const sites = new Sites(client); const result = await sites.create({ siteId: '', name: '', - framework: Framework.Analog, - buildRuntime: BuildRuntime.Node145, + framework: SiteFramework.Analog, + buildRuntime: SiteBuildRuntime.Node145, enabled: false, // optional logging: false, // optional timeout: 1, // optional @@ -19,13 +19,15 @@ const result = await sites.create({ buildCommand: '', // optional startCommand: '', // optional outputDirectory: '', // optional - adapter: Adapter.Static, // optional + adapter: SiteAdapter.Static, // optional installationId: '', // optional fallbackFile: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/console-web/examples/sites/delete-deployment.md b/examples/1.9.x/console-web/examples/sites/delete-deployment.md index 6dcaaf7ec..384b83533 100644 --- a/examples/1.9.x/console-web/examples/sites/delete-deployment.md +++ b/examples/1.9.x/console-web/examples/sites/delete-deployment.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/delete-log.md b/examples/1.9.x/console-web/examples/sites/delete-log.md index 6e22e9bec..a4f620ecd 100644 --- a/examples/1.9.x/console-web/examples/sites/delete-log.md +++ b/examples/1.9.x/console-web/examples/sites/delete-log.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/delete-variable.md b/examples/1.9.x/console-web/examples/sites/delete-variable.md index 753080a22..c98b50fe5 100644 --- a/examples/1.9.x/console-web/examples/sites/delete-variable.md +++ b/examples/1.9.x/console-web/examples/sites/delete-variable.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/delete.md b/examples/1.9.x/console-web/examples/sites/delete.md index 13b944cec..a3e4642ce 100644 --- a/examples/1.9.x/console-web/examples/sites/delete.md +++ b/examples/1.9.x/console-web/examples/sites/delete.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/get-deployment-download.md b/examples/1.9.x/console-web/examples/sites/get-deployment-download.md index 2645bd510..adde80b27 100644 --- a/examples/1.9.x/console-web/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/console-web/examples/sites/get-deployment-download.md @@ -2,7 +2,7 @@ import { Client, Sites, DeploymentDownloadType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/get-deployment.md b/examples/1.9.x/console-web/examples/sites/get-deployment.md index 86e84fc0f..5f31658e4 100644 --- a/examples/1.9.x/console-web/examples/sites/get-deployment.md +++ b/examples/1.9.x/console-web/examples/sites/get-deployment.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/get-log.md b/examples/1.9.x/console-web/examples/sites/get-log.md index ba6f399a4..9994b7c8f 100644 --- a/examples/1.9.x/console-web/examples/sites/get-log.md +++ b/examples/1.9.x/console-web/examples/sites/get-log.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/get-template.md b/examples/1.9.x/console-web/examples/sites/get-template.md index 94b740438..39442aaa9 100644 --- a/examples/1.9.x/console-web/examples/sites/get-template.md +++ b/examples/1.9.x/console-web/examples/sites/get-template.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/get-usage.md b/examples/1.9.x/console-web/examples/sites/get-usage.md index f76d91d9b..57e52277b 100644 --- a/examples/1.9.x/console-web/examples/sites/get-usage.md +++ b/examples/1.9.x/console-web/examples/sites/get-usage.md @@ -2,7 +2,7 @@ import { Client, Sites, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/get-variable.md b/examples/1.9.x/console-web/examples/sites/get-variable.md index dd0871444..a34a56b29 100644 --- a/examples/1.9.x/console-web/examples/sites/get-variable.md +++ b/examples/1.9.x/console-web/examples/sites/get-variable.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/get.md b/examples/1.9.x/console-web/examples/sites/get.md index c49df69f6..04a146c08 100644 --- a/examples/1.9.x/console-web/examples/sites/get.md +++ b/examples/1.9.x/console-web/examples/sites/get.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/list-deployments.md b/examples/1.9.x/console-web/examples/sites/list-deployments.md index d7fb2766f..d9af6ca3a 100644 --- a/examples/1.9.x/console-web/examples/sites/list-deployments.md +++ b/examples/1.9.x/console-web/examples/sites/list-deployments.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/list-frameworks.md b/examples/1.9.x/console-web/examples/sites/list-frameworks.md index 2d4daa8e6..1602ef480 100644 --- a/examples/1.9.x/console-web/examples/sites/list-frameworks.md +++ b/examples/1.9.x/console-web/examples/sites/list-frameworks.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/list-logs.md b/examples/1.9.x/console-web/examples/sites/list-logs.md index 3a57a8d47..38cb32168 100644 --- a/examples/1.9.x/console-web/examples/sites/list-logs.md +++ b/examples/1.9.x/console-web/examples/sites/list-logs.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/list-specifications.md b/examples/1.9.x/console-web/examples/sites/list-specifications.md index b019a627b..6741e0e15 100644 --- a/examples/1.9.x/console-web/examples/sites/list-specifications.md +++ b/examples/1.9.x/console-web/examples/sites/list-specifications.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/list-templates.md b/examples/1.9.x/console-web/examples/sites/list-templates.md index f427bd255..cf381843e 100644 --- a/examples/1.9.x/console-web/examples/sites/list-templates.md +++ b/examples/1.9.x/console-web/examples/sites/list-templates.md @@ -1,15 +1,15 @@ ```javascript -import { Client, Sites, Frameworks, UseCases } from "@appwrite.io/console"; +import { Client, Sites, SiteFramework, SiteTemplateUseCase } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); const result = await sites.listTemplates({ - frameworks: [Frameworks.Analog], // optional - useCases: [UseCases.Portfolio], // optional + frameworks: [SiteFramework.Analog], // optional + useCases: [SiteTemplateUseCase.Portfolio], // optional limit: 1, // optional offset: 0 // optional }); diff --git a/examples/1.9.x/console-web/examples/sites/list-usage.md b/examples/1.9.x/console-web/examples/sites/list-usage.md index d5582437e..10658e59b 100644 --- a/examples/1.9.x/console-web/examples/sites/list-usage.md +++ b/examples/1.9.x/console-web/examples/sites/list-usage.md @@ -2,7 +2,7 @@ import { Client, Sites, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/list-variables.md b/examples/1.9.x/console-web/examples/sites/list-variables.md index ae7626c15..d8d99beb5 100644 --- a/examples/1.9.x/console-web/examples/sites/list-variables.md +++ b/examples/1.9.x/console-web/examples/sites/list-variables.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/list.md b/examples/1.9.x/console-web/examples/sites/list.md index 316553fe0..25dd9184e 100644 --- a/examples/1.9.x/console-web/examples/sites/list.md +++ b/examples/1.9.x/console-web/examples/sites/list.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/update-deployment-status.md b/examples/1.9.x/console-web/examples/sites/update-deployment-status.md index 960718d5e..a0e628cb2 100644 --- a/examples/1.9.x/console-web/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/console-web/examples/sites/update-deployment-status.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/update-site-deployment.md b/examples/1.9.x/console-web/examples/sites/update-site-deployment.md index 20558fca8..545100f1c 100644 --- a/examples/1.9.x/console-web/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/console-web/examples/sites/update-site-deployment.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/update-variable.md b/examples/1.9.x/console-web/examples/sites/update-variable.md index df1aeaf7e..104a10bbf 100644 --- a/examples/1.9.x/console-web/examples/sites/update-variable.md +++ b/examples/1.9.x/console-web/examples/sites/update-variable.md @@ -2,7 +2,7 @@ import { Client, Sites } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); diff --git a/examples/1.9.x/console-web/examples/sites/update.md b/examples/1.9.x/console-web/examples/sites/update.md index 731ae4b9c..8469d55bb 100644 --- a/examples/1.9.x/console-web/examples/sites/update.md +++ b/examples/1.9.x/console-web/examples/sites/update.md @@ -1,8 +1,8 @@ ```javascript -import { Client, Sites, Framework, BuildRuntime, Adapter } from "@appwrite.io/console"; +import { Client, Sites, SiteFramework, SiteBuildRuntime, SiteAdapter } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const sites = new Sites(client); @@ -10,7 +10,7 @@ const sites = new Sites(client); const result = await sites.update({ siteId: '', name: '', - framework: Framework.Analog, + framework: SiteFramework.Analog, enabled: false, // optional logging: false, // optional timeout: 1, // optional @@ -18,14 +18,16 @@ const result = await sites.update({ buildCommand: '', // optional startCommand: '', // optional outputDirectory: '', // optional - buildRuntime: BuildRuntime.Node145, // optional - adapter: Adapter.Static, // optional + buildRuntime: SiteBuildRuntime.Node145, // optional + adapter: SiteAdapter.Static, // optional fallbackFile: '', // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/console-web/examples/storage/create-bucket.md b/examples/1.9.x/console-web/examples/storage/create-bucket.md index fa8f9d494..6f09bd9f7 100644 --- a/examples/1.9.x/console-web/examples/storage/create-bucket.md +++ b/examples/1.9.x/console-web/examples/storage/create-bucket.md @@ -2,7 +2,7 @@ import { Client, Storage, Compression, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/create-file.md b/examples/1.9.x/console-web/examples/storage/create-file.md index ddf29a000..ada5ca3d9 100644 --- a/examples/1.9.x/console-web/examples/storage/create-file.md +++ b/examples/1.9.x/console-web/examples/storage/create-file.md @@ -2,7 +2,7 @@ import { Client, Storage, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/delete-bucket.md b/examples/1.9.x/console-web/examples/storage/delete-bucket.md index 1d2aa69ce..a82ed6a82 100644 --- a/examples/1.9.x/console-web/examples/storage/delete-bucket.md +++ b/examples/1.9.x/console-web/examples/storage/delete-bucket.md @@ -2,7 +2,7 @@ import { Client, Storage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/delete-file.md b/examples/1.9.x/console-web/examples/storage/delete-file.md index e40590c1a..0361f1e74 100644 --- a/examples/1.9.x/console-web/examples/storage/delete-file.md +++ b/examples/1.9.x/console-web/examples/storage/delete-file.md @@ -2,7 +2,7 @@ import { Client, Storage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/get-bucket-usage.md b/examples/1.9.x/console-web/examples/storage/get-bucket-usage.md index 0cbd184fa..3c1a60ee1 100644 --- a/examples/1.9.x/console-web/examples/storage/get-bucket-usage.md +++ b/examples/1.9.x/console-web/examples/storage/get-bucket-usage.md @@ -2,7 +2,7 @@ import { Client, Storage, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/get-bucket.md b/examples/1.9.x/console-web/examples/storage/get-bucket.md index a710bc7f8..cb2adb26d 100644 --- a/examples/1.9.x/console-web/examples/storage/get-bucket.md +++ b/examples/1.9.x/console-web/examples/storage/get-bucket.md @@ -2,7 +2,7 @@ import { Client, Storage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/get-file-download.md b/examples/1.9.x/console-web/examples/storage/get-file-download.md index 1e940d16f..d69a17d69 100644 --- a/examples/1.9.x/console-web/examples/storage/get-file-download.md +++ b/examples/1.9.x/console-web/examples/storage/get-file-download.md @@ -2,7 +2,7 @@ import { Client, Storage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/get-file-preview.md b/examples/1.9.x/console-web/examples/storage/get-file-preview.md index 781c5cc4d..4cb4766e9 100644 --- a/examples/1.9.x/console-web/examples/storage/get-file-preview.md +++ b/examples/1.9.x/console-web/examples/storage/get-file-preview.md @@ -2,7 +2,7 @@ import { Client, Storage, ImageGravity, ImageFormat } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/get-file-view.md b/examples/1.9.x/console-web/examples/storage/get-file-view.md index 800f3f935..d547f1f4f 100644 --- a/examples/1.9.x/console-web/examples/storage/get-file-view.md +++ b/examples/1.9.x/console-web/examples/storage/get-file-view.md @@ -2,7 +2,7 @@ import { Client, Storage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/get-file.md b/examples/1.9.x/console-web/examples/storage/get-file.md index a48d4dfe4..5c86b2ddc 100644 --- a/examples/1.9.x/console-web/examples/storage/get-file.md +++ b/examples/1.9.x/console-web/examples/storage/get-file.md @@ -2,7 +2,7 @@ import { Client, Storage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/get-usage.md b/examples/1.9.x/console-web/examples/storage/get-usage.md index 7637f02aa..8fba58b9b 100644 --- a/examples/1.9.x/console-web/examples/storage/get-usage.md +++ b/examples/1.9.x/console-web/examples/storage/get-usage.md @@ -2,7 +2,7 @@ import { Client, Storage, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/list-buckets.md b/examples/1.9.x/console-web/examples/storage/list-buckets.md index bad2cd177..4fc087fc8 100644 --- a/examples/1.9.x/console-web/examples/storage/list-buckets.md +++ b/examples/1.9.x/console-web/examples/storage/list-buckets.md @@ -2,7 +2,7 @@ import { Client, Storage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/list-files.md b/examples/1.9.x/console-web/examples/storage/list-files.md index 4085f3923..b058c8cee 100644 --- a/examples/1.9.x/console-web/examples/storage/list-files.md +++ b/examples/1.9.x/console-web/examples/storage/list-files.md @@ -2,7 +2,7 @@ import { Client, Storage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/update-bucket.md b/examples/1.9.x/console-web/examples/storage/update-bucket.md index cca106f0a..c6a9b3da5 100644 --- a/examples/1.9.x/console-web/examples/storage/update-bucket.md +++ b/examples/1.9.x/console-web/examples/storage/update-bucket.md @@ -2,7 +2,7 @@ import { Client, Storage, Compression, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/storage/update-file.md b/examples/1.9.x/console-web/examples/storage/update-file.md index b24ff730c..496020a50 100644 --- a/examples/1.9.x/console-web/examples/storage/update-file.md +++ b/examples/1.9.x/console-web/examples/storage/update-file.md @@ -2,7 +2,7 @@ import { Client, Storage, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const storage = new Storage(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-big-int-column.md index c00adcc43..3935c6c1b 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-big-int-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-boolean-column.md index 9945d4c1f..cb176232a 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-boolean-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-datetime-column.md index 2c71780b4..71b546374 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-datetime-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-email-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-email-column.md index 4a10aeb8b..812f52408 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-email-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-enum-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-enum-column.md index 38aa95a6e..0e569846d 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-enum-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-float-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-float-column.md index bae50920b..c490b19dd 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-float-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-index.md b/examples/1.9.x/console-web/examples/tablesdb/create-index.md index aa5aa3e4c..48fffa264 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-index.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-index.md @@ -2,7 +2,7 @@ import { Client, TablesDB, TablesDBIndexType, OrderBy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-integer-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-integer-column.md index f81045089..cd1207bca 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-integer-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-ip-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-ip-column.md index 71810e884..ff1bb8429 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-ip-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-line-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-line-column.md index 751368748..81d33ca6d 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-line-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-longtext-column.md index adc47e70f..5bf8f3edc 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-longtext-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-mediumtext-column.md index 416cb048e..bb100928e 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-mediumtext-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-operations.md b/examples/1.9.x/console-web/examples/tablesdb/create-operations.md index 60a681354..008dd8cc7 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-operations.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-point-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-point-column.md index 40ab6a44c..6e5371bd8 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-point-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-polygon-column.md index 5ad3723bd..b6ef28a49 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-polygon-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-relationship-column.md index 851f8c3ea..cd752cab5 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-relationship-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB, RelationshipType, RelationMutate } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-row.md b/examples/1.9.x/console-web/examples/tablesdb/create-row.md index 1d24f7873..ca7b728a1 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-row.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-rows.md b/examples/1.9.x/console-web/examples/tablesdb/create-rows.md index b57175c88..89d10d06b 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-rows.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-string-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-string-column.md index 1e1c77101..ec21b948a 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-string-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-table.md b/examples/1.9.x/console-web/examples/tablesdb/create-table.md index 78fde6c6d..6d97bf52e 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-table.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-table.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-text-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-text-column.md index 0ca82673f..b6e66cbe5 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-text-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-transaction.md b/examples/1.9.x/console-web/examples/tablesdb/create-transaction.md index 29c1af688..f08b58d54 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-url-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-url-column.md index ffdb6e4f0..df5d8c9b6 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-url-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/console-web/examples/tablesdb/create-varchar-column.md index e143cc820..ed4609b57 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create-varchar-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/create.md b/examples/1.9.x/console-web/examples/tablesdb/create.md index d64f39634..ac9a9ffc5 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/create.md +++ b/examples/1.9.x/console-web/examples/tablesdb/create.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/console-web/examples/tablesdb/decrement-row-column.md index 50477de15..76dfab5a8 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/decrement-row-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/delete-column.md b/examples/1.9.x/console-web/examples/tablesdb/delete-column.md index 73d092a6e..65c7fcbe2 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/delete-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/delete-index.md b/examples/1.9.x/console-web/examples/tablesdb/delete-index.md index 0287aa5b7..2125ee139 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/console-web/examples/tablesdb/delete-index.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/delete-row.md b/examples/1.9.x/console-web/examples/tablesdb/delete-row.md index bb2f7edda..542df9398 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/console-web/examples/tablesdb/delete-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/delete-rows.md b/examples/1.9.x/console-web/examples/tablesdb/delete-rows.md index 4c5757811..e5633bdb7 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/console-web/examples/tablesdb/delete-rows.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/delete-table.md b/examples/1.9.x/console-web/examples/tablesdb/delete-table.md index 22548e343..c8216cdc2 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/console-web/examples/tablesdb/delete-table.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/delete-transaction.md b/examples/1.9.x/console-web/examples/tablesdb/delete-transaction.md index be5edcc08..893abe0f5 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/console-web/examples/tablesdb/delete-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/delete.md b/examples/1.9.x/console-web/examples/tablesdb/delete.md index 4906f8440..dea4da810 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/delete.md +++ b/examples/1.9.x/console-web/examples/tablesdb/delete.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/get-column.md b/examples/1.9.x/console-web/examples/tablesdb/get-column.md index 75425492c..059405dc0 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/get-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/get-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/get-index.md b/examples/1.9.x/console-web/examples/tablesdb/get-index.md index 8f8b0c82d..f8bd8087e 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/get-index.md +++ b/examples/1.9.x/console-web/examples/tablesdb/get-index.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/get-row.md b/examples/1.9.x/console-web/examples/tablesdb/get-row.md index 717e9720d..d014e79bb 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/get-row.md +++ b/examples/1.9.x/console-web/examples/tablesdb/get-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/get-table-usage.md b/examples/1.9.x/console-web/examples/tablesdb/get-table-usage.md index 21e0505c7..78a2b328a 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/get-table-usage.md +++ b/examples/1.9.x/console-web/examples/tablesdb/get-table-usage.md @@ -2,7 +2,7 @@ import { Client, TablesDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/get-table.md b/examples/1.9.x/console-web/examples/tablesdb/get-table.md index 6de4b809e..3e02441e3 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/get-table.md +++ b/examples/1.9.x/console-web/examples/tablesdb/get-table.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/get-transaction.md b/examples/1.9.x/console-web/examples/tablesdb/get-transaction.md index 511c60292..ac82054c8 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/console-web/examples/tablesdb/get-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/get-usage.md b/examples/1.9.x/console-web/examples/tablesdb/get-usage.md index 854523876..964a5a7e5 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/get-usage.md +++ b/examples/1.9.x/console-web/examples/tablesdb/get-usage.md @@ -2,7 +2,7 @@ import { Client, TablesDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/get.md b/examples/1.9.x/console-web/examples/tablesdb/get.md index 275d646b2..cbfef3672 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/get.md +++ b/examples/1.9.x/console-web/examples/tablesdb/get.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/increment-row-column.md b/examples/1.9.x/console-web/examples/tablesdb/increment-row-column.md index 60fad4d8b..b26bea3a9 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/increment-row-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list-columns.md b/examples/1.9.x/console-web/examples/tablesdb/list-columns.md index 831c46756..0e484cdf4 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list-columns.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list-indexes.md b/examples/1.9.x/console-web/examples/tablesdb/list-indexes.md index ea4a541ce..66c363fe6 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list-indexes.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list-row-logs.md b/examples/1.9.x/console-web/examples/tablesdb/list-row-logs.md index 8c6acd01f..8b8f1e697 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list-row-logs.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list-row-logs.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list-rows.md b/examples/1.9.x/console-web/examples/tablesdb/list-rows.md index 95df1e02f..9f6d0fab9 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list-rows.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list-table-logs.md b/examples/1.9.x/console-web/examples/tablesdb/list-table-logs.md index 094c66033..8cd63b9ec 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list-table-logs.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list-table-logs.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list-tables.md b/examples/1.9.x/console-web/examples/tablesdb/list-tables.md index c9a182dff..3d38dd4c1 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list-tables.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list-transactions.md b/examples/1.9.x/console-web/examples/tablesdb/list-transactions.md index c2f6b3cff..736100d9b 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list-transactions.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list-usage.md b/examples/1.9.x/console-web/examples/tablesdb/list-usage.md index 1c3658423..15a1acc65 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list-usage.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list-usage.md @@ -2,7 +2,7 @@ import { Client, TablesDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/list.md b/examples/1.9.x/console-web/examples/tablesdb/list.md index a487fabeb..d567c1f07 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/list.md +++ b/examples/1.9.x/console-web/examples/tablesdb/list.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-big-int-column.md index 578e813cf..fbc927b1e 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-big-int-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-boolean-column.md index 67380638f..b8ac96779 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-boolean-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-datetime-column.md index 89ec138fc..69dde6e0b 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-datetime-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-email-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-email-column.md index 981e5dd59..b16b7337b 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-email-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-enum-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-enum-column.md index 493e9f3ac..3e5352580 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-enum-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-float-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-float-column.md index 0f655fd8f..275566b00 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-float-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-integer-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-integer-column.md index e42a71426..567ae744e 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-integer-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-ip-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-ip-column.md index d96b01219..660cd489f 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-ip-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-line-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-line-column.md index ffc3813bc..b52b6d484 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-line-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-longtext-column.md index 6e3fda801..871bd0829 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-longtext-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-mediumtext-column.md index dc994757a..39e9cb55d 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-mediumtext-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-point-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-point-column.md index eac241e88..0791a400d 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-point-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-polygon-column.md index 854db0bde..54e33903d 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-polygon-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-relationship-column.md index adc6e16d0..564b0094e 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-relationship-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB, RelationMutate } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-row.md b/examples/1.9.x/console-web/examples/tablesdb/update-row.md index e516e012d..78a5bcbc4 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-row.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-rows.md b/examples/1.9.x/console-web/examples/tablesdb/update-rows.md index 1ef873da6..0caae79f9 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-rows.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-string-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-string-column.md index 3be9e866f..7e8861f8d 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-string-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-table.md b/examples/1.9.x/console-web/examples/tablesdb/update-table.md index 943657d6d..1646f3052 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-table.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-table.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-text-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-text-column.md index f5bd5abd5..850d1f99e 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-text-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-transaction.md b/examples/1.9.x/console-web/examples/tablesdb/update-transaction.md index ab7e64985..4750f413b 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-transaction.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-url-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-url-column.md index 6af45cd0b..85e6880a5 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-url-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/console-web/examples/tablesdb/update-varchar-column.md index 0b46befed..3b8c17b9e 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update-varchar-column.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/update.md b/examples/1.9.x/console-web/examples/tablesdb/update.md index 9e66c9666..b66161ee1 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/update.md +++ b/examples/1.9.x/console-web/examples/tablesdb/update.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/upsert-row.md b/examples/1.9.x/console-web/examples/tablesdb/upsert-row.md index 20d39e6c8..db63ba683 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/console-web/examples/tablesdb/upsert-row.md @@ -2,7 +2,7 @@ import { Client, TablesDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/tablesdb/upsert-rows.md b/examples/1.9.x/console-web/examples/tablesdb/upsert-rows.md index 510dc3e7b..5deae729f 100644 --- a/examples/1.9.x/console-web/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/console-web/examples/tablesdb/upsert-rows.md @@ -2,7 +2,7 @@ import { Client, TablesDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tablesDB = new TablesDB(client); diff --git a/examples/1.9.x/console-web/examples/teams/create-membership.md b/examples/1.9.x/console-web/examples/teams/create-membership.md index f7c832133..f9f569e58 100644 --- a/examples/1.9.x/console-web/examples/teams/create-membership.md +++ b/examples/1.9.x/console-web/examples/teams/create-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/create.md b/examples/1.9.x/console-web/examples/teams/create.md index a4dc3f2da..0c19c3f23 100644 --- a/examples/1.9.x/console-web/examples/teams/create.md +++ b/examples/1.9.x/console-web/examples/teams/create.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/delete-membership.md b/examples/1.9.x/console-web/examples/teams/delete-membership.md index a54c5a2f4..4f04b9347 100644 --- a/examples/1.9.x/console-web/examples/teams/delete-membership.md +++ b/examples/1.9.x/console-web/examples/teams/delete-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/delete.md b/examples/1.9.x/console-web/examples/teams/delete.md index 655f7c79a..5024b37d6 100644 --- a/examples/1.9.x/console-web/examples/teams/delete.md +++ b/examples/1.9.x/console-web/examples/teams/delete.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/get-membership.md b/examples/1.9.x/console-web/examples/teams/get-membership.md index 9f4922551..4369748ac 100644 --- a/examples/1.9.x/console-web/examples/teams/get-membership.md +++ b/examples/1.9.x/console-web/examples/teams/get-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/get-prefs.md b/examples/1.9.x/console-web/examples/teams/get-prefs.md index 040ea35b1..135fcb9bc 100644 --- a/examples/1.9.x/console-web/examples/teams/get-prefs.md +++ b/examples/1.9.x/console-web/examples/teams/get-prefs.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/get.md b/examples/1.9.x/console-web/examples/teams/get.md index 4192dac7c..e5081483a 100644 --- a/examples/1.9.x/console-web/examples/teams/get.md +++ b/examples/1.9.x/console-web/examples/teams/get.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/list-logs.md b/examples/1.9.x/console-web/examples/teams/list-logs.md index 769b7cec4..4f9cbc821 100644 --- a/examples/1.9.x/console-web/examples/teams/list-logs.md +++ b/examples/1.9.x/console-web/examples/teams/list-logs.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/list-memberships.md b/examples/1.9.x/console-web/examples/teams/list-memberships.md index 656a46ca4..8ee605f98 100644 --- a/examples/1.9.x/console-web/examples/teams/list-memberships.md +++ b/examples/1.9.x/console-web/examples/teams/list-memberships.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/list.md b/examples/1.9.x/console-web/examples/teams/list.md index 739a3040c..bedfa776a 100644 --- a/examples/1.9.x/console-web/examples/teams/list.md +++ b/examples/1.9.x/console-web/examples/teams/list.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/update-membership-status.md b/examples/1.9.x/console-web/examples/teams/update-membership-status.md index 94ae41f29..7613e8e01 100644 --- a/examples/1.9.x/console-web/examples/teams/update-membership-status.md +++ b/examples/1.9.x/console-web/examples/teams/update-membership-status.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/update-membership.md b/examples/1.9.x/console-web/examples/teams/update-membership.md index a7ac4a745..d53c8b8c7 100644 --- a/examples/1.9.x/console-web/examples/teams/update-membership.md +++ b/examples/1.9.x/console-web/examples/teams/update-membership.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/update-name.md b/examples/1.9.x/console-web/examples/teams/update-name.md index 5723ad178..7f67cdd3e 100644 --- a/examples/1.9.x/console-web/examples/teams/update-name.md +++ b/examples/1.9.x/console-web/examples/teams/update-name.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/teams/update-prefs.md b/examples/1.9.x/console-web/examples/teams/update-prefs.md index e4e790444..16a8ca417 100644 --- a/examples/1.9.x/console-web/examples/teams/update-prefs.md +++ b/examples/1.9.x/console-web/examples/teams/update-prefs.md @@ -2,7 +2,7 @@ import { Client, Teams } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const teams = new Teams(client); diff --git a/examples/1.9.x/console-web/examples/tokens/create-file-token.md b/examples/1.9.x/console-web/examples/tokens/create-file-token.md index 2b474eeae..e79326f82 100644 --- a/examples/1.9.x/console-web/examples/tokens/create-file-token.md +++ b/examples/1.9.x/console-web/examples/tokens/create-file-token.md @@ -2,7 +2,7 @@ import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tokens = new Tokens(client); diff --git a/examples/1.9.x/console-web/examples/tokens/delete.md b/examples/1.9.x/console-web/examples/tokens/delete.md index 20c59410e..2096d21d4 100644 --- a/examples/1.9.x/console-web/examples/tokens/delete.md +++ b/examples/1.9.x/console-web/examples/tokens/delete.md @@ -2,7 +2,7 @@ import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tokens = new Tokens(client); diff --git a/examples/1.9.x/console-web/examples/tokens/get.md b/examples/1.9.x/console-web/examples/tokens/get.md index f918dd22f..b4983e011 100644 --- a/examples/1.9.x/console-web/examples/tokens/get.md +++ b/examples/1.9.x/console-web/examples/tokens/get.md @@ -2,7 +2,7 @@ import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tokens = new Tokens(client); diff --git a/examples/1.9.x/console-web/examples/tokens/list.md b/examples/1.9.x/console-web/examples/tokens/list.md index 5b190cb65..15d459f7e 100644 --- a/examples/1.9.x/console-web/examples/tokens/list.md +++ b/examples/1.9.x/console-web/examples/tokens/list.md @@ -2,7 +2,7 @@ import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tokens = new Tokens(client); diff --git a/examples/1.9.x/console-web/examples/tokens/update.md b/examples/1.9.x/console-web/examples/tokens/update.md index 3374cced5..54b39f56c 100644 --- a/examples/1.9.x/console-web/examples/tokens/update.md +++ b/examples/1.9.x/console-web/examples/tokens/update.md @@ -2,7 +2,7 @@ import { Client, Tokens } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const tokens = new Tokens(client); diff --git a/examples/1.9.x/console-web/examples/usage/list-events.md b/examples/1.9.x/console-web/examples/usage/list-events.md index c8767f08e..1a2062881 100644 --- a/examples/1.9.x/console-web/examples/usage/list-events.md +++ b/examples/1.9.x/console-web/examples/usage/list-events.md @@ -2,7 +2,7 @@ import { Client, Usage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const usage = new Usage(client); diff --git a/examples/1.9.x/console-web/examples/usage/list-gauges.md b/examples/1.9.x/console-web/examples/usage/list-gauges.md index fe14dc556..fad6e37bc 100644 --- a/examples/1.9.x/console-web/examples/usage/list-gauges.md +++ b/examples/1.9.x/console-web/examples/usage/list-gauges.md @@ -2,7 +2,7 @@ import { Client, Usage } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const usage = new Usage(client); diff --git a/examples/1.9.x/console-web/examples/users/create-argon-2-user.md b/examples/1.9.x/console-web/examples/users/create-argon-2-user.md index 8b92df0bc..15ab57c31 100644 --- a/examples/1.9.x/console-web/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/console-web/examples/users/create-argon-2-user.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-bcrypt-user.md b/examples/1.9.x/console-web/examples/users/create-bcrypt-user.md index 0d9a15fb8..747f8902d 100644 --- a/examples/1.9.x/console-web/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/console-web/examples/users/create-bcrypt-user.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-jwt.md b/examples/1.9.x/console-web/examples/users/create-jwt.md index 01cbdc8bc..a060d852f 100644 --- a/examples/1.9.x/console-web/examples/users/create-jwt.md +++ b/examples/1.9.x/console-web/examples/users/create-jwt.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-md-5-user.md b/examples/1.9.x/console-web/examples/users/create-md-5-user.md index 239e1e524..203c896d7 100644 --- a/examples/1.9.x/console-web/examples/users/create-md-5-user.md +++ b/examples/1.9.x/console-web/examples/users/create-md-5-user.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/console-web/examples/users/create-mfa-recovery-codes.md index 431e4420d..1ea1738e2 100644 --- a/examples/1.9.x/console-web/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/console-web/examples/users/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-ph-pass-user.md b/examples/1.9.x/console-web/examples/users/create-ph-pass-user.md index b237c3076..373883c9e 100644 --- a/examples/1.9.x/console-web/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/console-web/examples/users/create-ph-pass-user.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/console-web/examples/users/create-scrypt-modified-user.md index 5d2909db2..91251dda7 100644 --- a/examples/1.9.x/console-web/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/console-web/examples/users/create-scrypt-modified-user.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-scrypt-user.md b/examples/1.9.x/console-web/examples/users/create-scrypt-user.md index 22749a80d..038774965 100644 --- a/examples/1.9.x/console-web/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/console-web/examples/users/create-scrypt-user.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-session.md b/examples/1.9.x/console-web/examples/users/create-session.md index 785ec0e61..d801309a3 100644 --- a/examples/1.9.x/console-web/examples/users/create-session.md +++ b/examples/1.9.x/console-web/examples/users/create-session.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-sha-user.md b/examples/1.9.x/console-web/examples/users/create-sha-user.md index e57bd0fe6..13f20c5ba 100644 --- a/examples/1.9.x/console-web/examples/users/create-sha-user.md +++ b/examples/1.9.x/console-web/examples/users/create-sha-user.md @@ -2,7 +2,7 @@ import { Client, Users, PasswordHash } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-target.md b/examples/1.9.x/console-web/examples/users/create-target.md index 905adb7c1..fa91cbed6 100644 --- a/examples/1.9.x/console-web/examples/users/create-target.md +++ b/examples/1.9.x/console-web/examples/users/create-target.md @@ -2,7 +2,7 @@ import { Client, Users, MessagingProviderType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create-token.md b/examples/1.9.x/console-web/examples/users/create-token.md index c6f43124f..22ff9de51 100644 --- a/examples/1.9.x/console-web/examples/users/create-token.md +++ b/examples/1.9.x/console-web/examples/users/create-token.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/create.md b/examples/1.9.x/console-web/examples/users/create.md index 1dcd2c245..c60f4bcab 100644 --- a/examples/1.9.x/console-web/examples/users/create.md +++ b/examples/1.9.x/console-web/examples/users/create.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/delete-identity.md b/examples/1.9.x/console-web/examples/users/delete-identity.md index 8a75f548e..74ec370a5 100644 --- a/examples/1.9.x/console-web/examples/users/delete-identity.md +++ b/examples/1.9.x/console-web/examples/users/delete-identity.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/console-web/examples/users/delete-mfa-authenticator.md index fac8f2fe8..dbc8603c3 100644 --- a/examples/1.9.x/console-web/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/console-web/examples/users/delete-mfa-authenticator.md @@ -2,7 +2,7 @@ import { Client, Users, AuthenticatorType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/delete-session.md b/examples/1.9.x/console-web/examples/users/delete-session.md index 0bea56266..7387b1213 100644 --- a/examples/1.9.x/console-web/examples/users/delete-session.md +++ b/examples/1.9.x/console-web/examples/users/delete-session.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/delete-sessions.md b/examples/1.9.x/console-web/examples/users/delete-sessions.md index 0087096e1..3ffd3ca41 100644 --- a/examples/1.9.x/console-web/examples/users/delete-sessions.md +++ b/examples/1.9.x/console-web/examples/users/delete-sessions.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/delete-target.md b/examples/1.9.x/console-web/examples/users/delete-target.md index d6b84512e..a86235fe4 100644 --- a/examples/1.9.x/console-web/examples/users/delete-target.md +++ b/examples/1.9.x/console-web/examples/users/delete-target.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/delete.md b/examples/1.9.x/console-web/examples/users/delete.md index fd7c6777a..ec1c900b6 100644 --- a/examples/1.9.x/console-web/examples/users/delete.md +++ b/examples/1.9.x/console-web/examples/users/delete.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/console-web/examples/users/get-mfa-recovery-codes.md index f0acfe911..fa5bf4c4f 100644 --- a/examples/1.9.x/console-web/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/console-web/examples/users/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/get-prefs.md b/examples/1.9.x/console-web/examples/users/get-prefs.md index b2b8fbbb5..f72118e75 100644 --- a/examples/1.9.x/console-web/examples/users/get-prefs.md +++ b/examples/1.9.x/console-web/examples/users/get-prefs.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/get-target.md b/examples/1.9.x/console-web/examples/users/get-target.md index 3ab5afaa1..fef20f283 100644 --- a/examples/1.9.x/console-web/examples/users/get-target.md +++ b/examples/1.9.x/console-web/examples/users/get-target.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/get-usage.md b/examples/1.9.x/console-web/examples/users/get-usage.md index 53d11decd..bf17f3bab 100644 --- a/examples/1.9.x/console-web/examples/users/get-usage.md +++ b/examples/1.9.x/console-web/examples/users/get-usage.md @@ -2,13 +2,13 @@ import { Client, Users, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); const result = await users.getUsage({ - range: UsageRange.TwentyFourHours // optional + range: UsageRange.24h // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/users/get.md b/examples/1.9.x/console-web/examples/users/get.md index 151401f85..d736b8643 100644 --- a/examples/1.9.x/console-web/examples/users/get.md +++ b/examples/1.9.x/console-web/examples/users/get.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/list-identities.md b/examples/1.9.x/console-web/examples/users/list-identities.md index 9afe716dc..bd64f69ef 100644 --- a/examples/1.9.x/console-web/examples/users/list-identities.md +++ b/examples/1.9.x/console-web/examples/users/list-identities.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/list-logs.md b/examples/1.9.x/console-web/examples/users/list-logs.md index 5b40db8e7..42e1f494e 100644 --- a/examples/1.9.x/console-web/examples/users/list-logs.md +++ b/examples/1.9.x/console-web/examples/users/list-logs.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/list-memberships.md b/examples/1.9.x/console-web/examples/users/list-memberships.md index de0cc69d0..6165459d5 100644 --- a/examples/1.9.x/console-web/examples/users/list-memberships.md +++ b/examples/1.9.x/console-web/examples/users/list-memberships.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/list-mfa-factors.md b/examples/1.9.x/console-web/examples/users/list-mfa-factors.md index 7120c655a..1d9f74eb3 100644 --- a/examples/1.9.x/console-web/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/console-web/examples/users/list-mfa-factors.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/list-sessions.md b/examples/1.9.x/console-web/examples/users/list-sessions.md index d8db6a651..64365cc7b 100644 --- a/examples/1.9.x/console-web/examples/users/list-sessions.md +++ b/examples/1.9.x/console-web/examples/users/list-sessions.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/list-targets.md b/examples/1.9.x/console-web/examples/users/list-targets.md index 456b824b6..18fa2db60 100644 --- a/examples/1.9.x/console-web/examples/users/list-targets.md +++ b/examples/1.9.x/console-web/examples/users/list-targets.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/list.md b/examples/1.9.x/console-web/examples/users/list.md index 47f3b2019..6a7444c42 100644 --- a/examples/1.9.x/console-web/examples/users/list.md +++ b/examples/1.9.x/console-web/examples/users/list.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-email-verification.md b/examples/1.9.x/console-web/examples/users/update-email-verification.md index 88c24c6fd..08dc6fd5b 100644 --- a/examples/1.9.x/console-web/examples/users/update-email-verification.md +++ b/examples/1.9.x/console-web/examples/users/update-email-verification.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-email.md b/examples/1.9.x/console-web/examples/users/update-email.md index b764d525f..8eabae3d8 100644 --- a/examples/1.9.x/console-web/examples/users/update-email.md +++ b/examples/1.9.x/console-web/examples/users/update-email.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-impersonator.md b/examples/1.9.x/console-web/examples/users/update-impersonator.md index 955af0321..1c25474e2 100644 --- a/examples/1.9.x/console-web/examples/users/update-impersonator.md +++ b/examples/1.9.x/console-web/examples/users/update-impersonator.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-labels.md b/examples/1.9.x/console-web/examples/users/update-labels.md index 14bb2ebb4..b6c7b7b13 100644 --- a/examples/1.9.x/console-web/examples/users/update-labels.md +++ b/examples/1.9.x/console-web/examples/users/update-labels.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/console-web/examples/users/update-mfa-recovery-codes.md index 8c4ead69e..c7665cdd6 100644 --- a/examples/1.9.x/console-web/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/console-web/examples/users/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-mfa.md b/examples/1.9.x/console-web/examples/users/update-mfa.md index 616ca30ed..ff589d054 100644 --- a/examples/1.9.x/console-web/examples/users/update-mfa.md +++ b/examples/1.9.x/console-web/examples/users/update-mfa.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-name.md b/examples/1.9.x/console-web/examples/users/update-name.md index 708733e87..fda5fd3d7 100644 --- a/examples/1.9.x/console-web/examples/users/update-name.md +++ b/examples/1.9.x/console-web/examples/users/update-name.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-password.md b/examples/1.9.x/console-web/examples/users/update-password.md index 04b1a9a5c..7c25e5453 100644 --- a/examples/1.9.x/console-web/examples/users/update-password.md +++ b/examples/1.9.x/console-web/examples/users/update-password.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-phone-verification.md b/examples/1.9.x/console-web/examples/users/update-phone-verification.md index 2666cd99e..7480a229e 100644 --- a/examples/1.9.x/console-web/examples/users/update-phone-verification.md +++ b/examples/1.9.x/console-web/examples/users/update-phone-verification.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-phone.md b/examples/1.9.x/console-web/examples/users/update-phone.md index 3244d09dc..617103a68 100644 --- a/examples/1.9.x/console-web/examples/users/update-phone.md +++ b/examples/1.9.x/console-web/examples/users/update-phone.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-prefs.md b/examples/1.9.x/console-web/examples/users/update-prefs.md index c2afe2ecb..609ff3b7f 100644 --- a/examples/1.9.x/console-web/examples/users/update-prefs.md +++ b/examples/1.9.x/console-web/examples/users/update-prefs.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-status.md b/examples/1.9.x/console-web/examples/users/update-status.md index 4a1d4c1ab..855578406 100644 --- a/examples/1.9.x/console-web/examples/users/update-status.md +++ b/examples/1.9.x/console-web/examples/users/update-status.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/users/update-target.md b/examples/1.9.x/console-web/examples/users/update-target.md index 2752bb78d..c978dc641 100644 --- a/examples/1.9.x/console-web/examples/users/update-target.md +++ b/examples/1.9.x/console-web/examples/users/update-target.md @@ -2,7 +2,7 @@ import { Client, Users } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const users = new Users(client); diff --git a/examples/1.9.x/console-web/examples/vcs/create-repository-detection.md b/examples/1.9.x/console-web/examples/vcs/create-repository-detection.md index 6666a9f3a..63e8dcd68 100644 --- a/examples/1.9.x/console-web/examples/vcs/create-repository-detection.md +++ b/examples/1.9.x/console-web/examples/vcs/create-repository-detection.md @@ -2,7 +2,7 @@ import { Client, Vcs, VCSDetectionType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/create-repository.md b/examples/1.9.x/console-web/examples/vcs/create-repository.md index a64eef87f..b3116bf30 100644 --- a/examples/1.9.x/console-web/examples/vcs/create-repository.md +++ b/examples/1.9.x/console-web/examples/vcs/create-repository.md @@ -2,7 +2,7 @@ import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/delete-installation.md b/examples/1.9.x/console-web/examples/vcs/delete-installation.md index 8afd6e6d4..6f2e1e54b 100644 --- a/examples/1.9.x/console-web/examples/vcs/delete-installation.md +++ b/examples/1.9.x/console-web/examples/vcs/delete-installation.md @@ -2,7 +2,7 @@ import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/get-installation.md b/examples/1.9.x/console-web/examples/vcs/get-installation.md index 2852c4ab1..e16f86215 100644 --- a/examples/1.9.x/console-web/examples/vcs/get-installation.md +++ b/examples/1.9.x/console-web/examples/vcs/get-installation.md @@ -2,7 +2,7 @@ import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/get-repository-contents.md b/examples/1.9.x/console-web/examples/vcs/get-repository-contents.md index 5be6ef873..f9f677ea3 100644 --- a/examples/1.9.x/console-web/examples/vcs/get-repository-contents.md +++ b/examples/1.9.x/console-web/examples/vcs/get-repository-contents.md @@ -2,7 +2,7 @@ import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/get-repository.md b/examples/1.9.x/console-web/examples/vcs/get-repository.md index bff984b39..ce7cf4aa3 100644 --- a/examples/1.9.x/console-web/examples/vcs/get-repository.md +++ b/examples/1.9.x/console-web/examples/vcs/get-repository.md @@ -2,7 +2,7 @@ import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/list-installations.md b/examples/1.9.x/console-web/examples/vcs/list-installations.md index cda9fc9cb..83a568f4e 100644 --- a/examples/1.9.x/console-web/examples/vcs/list-installations.md +++ b/examples/1.9.x/console-web/examples/vcs/list-installations.md @@ -2,7 +2,7 @@ import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/list-repositories.md b/examples/1.9.x/console-web/examples/vcs/list-repositories.md index 0aad1f021..d5795a4a2 100644 --- a/examples/1.9.x/console-web/examples/vcs/list-repositories.md +++ b/examples/1.9.x/console-web/examples/vcs/list-repositories.md @@ -2,7 +2,7 @@ import { Client, Vcs, VCSDetectionType } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/list-repository-branches.md b/examples/1.9.x/console-web/examples/vcs/list-repository-branches.md index 2943996fd..17340a2d5 100644 --- a/examples/1.9.x/console-web/examples/vcs/list-repository-branches.md +++ b/examples/1.9.x/console-web/examples/vcs/list-repository-branches.md @@ -2,7 +2,7 @@ import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vcs/update-external-deployments.md b/examples/1.9.x/console-web/examples/vcs/update-external-deployments.md index 20a11e02e..cc6a3f536 100644 --- a/examples/1.9.x/console-web/examples/vcs/update-external-deployments.md +++ b/examples/1.9.x/console-web/examples/vcs/update-external-deployments.md @@ -2,7 +2,7 @@ import { Client, Vcs } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vcs = new Vcs(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/create-collection.md b/examples/1.9.x/console-web/examples/vectorsdb/create-collection.md index 43924d6b7..65758725d 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/create-collection.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/create-collection.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/create-document.md b/examples/1.9.x/console-web/examples/vectorsdb/create-document.md index 850671684..8b91f69cb 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/create-document.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/create-document.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/create-documents.md b/examples/1.9.x/console-web/examples/vectorsdb/create-documents.md index 4f955e888..746f55a5d 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/create-documents.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/create-documents.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/create-index.md b/examples/1.9.x/console-web/examples/vectorsdb/create-index.md index 7bef86ede..e933e8ba7 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/create-index.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/create-index.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, VectorsDBIndexType, OrderBy } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/create-operations.md b/examples/1.9.x/console-web/examples/vectorsdb/create-operations.md index 5ff5f6879..eb2912b55 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/create-operations.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/create-operations.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/create-text-embeddings.md b/examples/1.9.x/console-web/examples/vectorsdb/create-text-embeddings.md index e024b563d..0330bd8fd 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/create-text-embeddings.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/create-text-embeddings.md @@ -1,15 +1,15 @@ ```javascript -import { Client, VectorsDB, Model } from "@appwrite.io/console"; +import { Client, VectorsDB, EmbeddingModel } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); const result = await vectorsDB.createTextEmbeddings({ texts: [], - model: Model.Embeddinggemma // optional + model: EmbeddingModel.Embeddinggemma // optional }); console.log(result); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/create-transaction.md b/examples/1.9.x/console-web/examples/vectorsdb/create-transaction.md index 99ee2ff6f..074605c8e 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/create-transaction.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/create-transaction.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/create.md b/examples/1.9.x/console-web/examples/vectorsdb/create.md index d37467a0b..37bac87d0 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/create.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/create.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/delete-collection.md b/examples/1.9.x/console-web/examples/vectorsdb/delete-collection.md index bc7997f93..3294b1072 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/delete-collection.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/delete-collection.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/delete-document.md b/examples/1.9.x/console-web/examples/vectorsdb/delete-document.md index a1db5dead..c2bbfcc4f 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/delete-document.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/delete-document.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/delete-documents.md b/examples/1.9.x/console-web/examples/vectorsdb/delete-documents.md index 92d6c8a62..9d5373a99 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/delete-documents.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/delete-documents.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/delete-index.md b/examples/1.9.x/console-web/examples/vectorsdb/delete-index.md index b592d6828..89e588a16 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/delete-index.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/delete-index.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/delete-transaction.md b/examples/1.9.x/console-web/examples/vectorsdb/delete-transaction.md index 12a213578..cffe79798 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/delete-transaction.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/delete-transaction.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/delete.md b/examples/1.9.x/console-web/examples/vectorsdb/delete.md index 768bf7bc0..587e6dd75 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/delete.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/delete.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/get-collection-usage.md b/examples/1.9.x/console-web/examples/vectorsdb/get-collection-usage.md index b41c7ab25..a3d3e5a22 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/get-collection-usage.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/get-collection-usage.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/get-collection.md b/examples/1.9.x/console-web/examples/vectorsdb/get-collection.md index 440adca26..bba532944 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/get-collection.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/get-collection.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/get-document.md b/examples/1.9.x/console-web/examples/vectorsdb/get-document.md index c3ecc5772..c4cab6f87 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/get-document.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/get-document.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/get-index.md b/examples/1.9.x/console-web/examples/vectorsdb/get-index.md index 08930cfea..97ed4df53 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/get-index.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/get-index.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/get-transaction.md b/examples/1.9.x/console-web/examples/vectorsdb/get-transaction.md index 80c1ab826..60ef0fde1 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/get-transaction.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/get-transaction.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/get-usage.md b/examples/1.9.x/console-web/examples/vectorsdb/get-usage.md index 91bf3b29a..e385a7da1 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/get-usage.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/get-usage.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/get.md b/examples/1.9.x/console-web/examples/vectorsdb/get.md index b7c5f5ac3..bb1ce03b6 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/get.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/get.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/list-collections.md b/examples/1.9.x/console-web/examples/vectorsdb/list-collections.md index dd4f27fb5..156e42557 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/list-collections.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/list-collections.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/list-documents.md b/examples/1.9.x/console-web/examples/vectorsdb/list-documents.md index 8b907aad5..cbabd9049 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/list-documents.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/list-documents.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/list-indexes.md b/examples/1.9.x/console-web/examples/vectorsdb/list-indexes.md index eeeddb5c6..2982cc2ec 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/list-indexes.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/list-indexes.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/list-transactions.md b/examples/1.9.x/console-web/examples/vectorsdb/list-transactions.md index 21edf97c5..2a0da82ca 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/list-transactions.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/list-transactions.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/list-usage.md b/examples/1.9.x/console-web/examples/vectorsdb/list-usage.md index 75f0eb0be..2423e7986 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/list-usage.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/list-usage.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, UsageRange } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/list.md b/examples/1.9.x/console-web/examples/vectorsdb/list.md index d09c6f988..d391b6c31 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/list.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/list.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/update-collection.md b/examples/1.9.x/console-web/examples/vectorsdb/update-collection.md index 2cbc7d5ab..81c912675 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/update-collection.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/update-collection.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/update-document.md b/examples/1.9.x/console-web/examples/vectorsdb/update-document.md index ce990ad60..603cc4cf5 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/update-document.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/update-document.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/update-documents.md b/examples/1.9.x/console-web/examples/vectorsdb/update-documents.md index 44c19fb4f..66a897ea6 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/update-documents.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/update-documents.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/update-transaction.md b/examples/1.9.x/console-web/examples/vectorsdb/update-transaction.md index a7809df79..68fcf9aad 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/update-transaction.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/update-transaction.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/update.md b/examples/1.9.x/console-web/examples/vectorsdb/update.md index c0fc980bb..095e1994c 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/update.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/update.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/upsert-document.md b/examples/1.9.x/console-web/examples/vectorsdb/upsert-document.md index 1221bad1b..ac4ab1d90 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/upsert-document.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/upsert-document.md @@ -2,7 +2,7 @@ import { Client, VectorsDB, Permission, Role } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/vectorsdb/upsert-documents.md b/examples/1.9.x/console-web/examples/vectorsdb/upsert-documents.md index 74a03f927..ae878def9 100644 --- a/examples/1.9.x/console-web/examples/vectorsdb/upsert-documents.md +++ b/examples/1.9.x/console-web/examples/vectorsdb/upsert-documents.md @@ -2,7 +2,7 @@ import { Client, VectorsDB } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const vectorsDB = new VectorsDB(client); diff --git a/examples/1.9.x/console-web/examples/webhooks/create.md b/examples/1.9.x/console-web/examples/webhooks/create.md index 72661fd4c..7f8bd752c 100644 --- a/examples/1.9.x/console-web/examples/webhooks/create.md +++ b/examples/1.9.x/console-web/examples/webhooks/create.md @@ -2,7 +2,7 @@ import { Client, Webhooks } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const webhooks = new Webhooks(client); diff --git a/examples/1.9.x/console-web/examples/webhooks/delete.md b/examples/1.9.x/console-web/examples/webhooks/delete.md index 1ba3b99dc..a5cc63a06 100644 --- a/examples/1.9.x/console-web/examples/webhooks/delete.md +++ b/examples/1.9.x/console-web/examples/webhooks/delete.md @@ -2,7 +2,7 @@ import { Client, Webhooks } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const webhooks = new Webhooks(client); diff --git a/examples/1.9.x/console-web/examples/webhooks/get.md b/examples/1.9.x/console-web/examples/webhooks/get.md index f8afc2f90..62a11ebb8 100644 --- a/examples/1.9.x/console-web/examples/webhooks/get.md +++ b/examples/1.9.x/console-web/examples/webhooks/get.md @@ -2,7 +2,7 @@ import { Client, Webhooks } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const webhooks = new Webhooks(client); diff --git a/examples/1.9.x/console-web/examples/webhooks/list.md b/examples/1.9.x/console-web/examples/webhooks/list.md index ebdd766ae..df34d1499 100644 --- a/examples/1.9.x/console-web/examples/webhooks/list.md +++ b/examples/1.9.x/console-web/examples/webhooks/list.md @@ -2,7 +2,7 @@ import { Client, Webhooks } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const webhooks = new Webhooks(client); diff --git a/examples/1.9.x/console-web/examples/webhooks/update-secret.md b/examples/1.9.x/console-web/examples/webhooks/update-secret.md index d1c362741..399203e0d 100644 --- a/examples/1.9.x/console-web/examples/webhooks/update-secret.md +++ b/examples/1.9.x/console-web/examples/webhooks/update-secret.md @@ -2,7 +2,7 @@ import { Client, Webhooks } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const webhooks = new Webhooks(client); diff --git a/examples/1.9.x/console-web/examples/webhooks/update.md b/examples/1.9.x/console-web/examples/webhooks/update.md index fb1b70b6d..517c65437 100644 --- a/examples/1.9.x/console-web/examples/webhooks/update.md +++ b/examples/1.9.x/console-web/examples/webhooks/update.md @@ -2,7 +2,7 @@ import { Client, Webhooks } from "@appwrite.io/console"; const client = new Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject(''); // Your project ID const webhooks = new Webhooks(client); diff --git a/examples/1.9.x/server-dart/examples/account/create-anonymous-session.md b/examples/1.9.x/server-dart/examples/account/create-anonymous-session.md index 542c0d644..2b0439217 100644 --- a/examples/1.9.x/server-dart/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-dart/examples/account/create-anonymous-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-email-password-session.md b/examples/1.9.x/server-dart/examples/account/create-email-password-session.md index bac35a125..3c354ae67 100644 --- a/examples/1.9.x/server-dart/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-dart/examples/account/create-email-password-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-email-token.md b/examples/1.9.x/server-dart/examples/account/create-email-token.md index dfcfc76c8..c8ee0c263 100644 --- a/examples/1.9.x/server-dart/examples/account/create-email-token.md +++ b/examples/1.9.x/server-dart/examples/account/create-email-token.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-email-verification.md b/examples/1.9.x/server-dart/examples/account/create-email-verification.md index 0db846c12..d0b2b758a 100644 --- a/examples/1.9.x/server-dart/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-dart/examples/account/create-email-verification.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-jwt.md b/examples/1.9.x/server-dart/examples/account/create-jwt.md index 0e02e203c..31f10c59c 100644 --- a/examples/1.9.x/server-dart/examples/account/create-jwt.md +++ b/examples/1.9.x/server-dart/examples/account/create-jwt.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-magic-url-token.md b/examples/1.9.x/server-dart/examples/account/create-magic-url-token.md index 4b4f703e8..cffc90536 100644 --- a/examples/1.9.x/server-dart/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-dart/examples/account/create-magic-url-token.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-dart/examples/account/create-mfa-authenticator.md index 98a10171c..d49e84bfa 100644 --- a/examples/1.9.x/server-dart/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-dart/examples/account/create-mfa-authenticator.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-dart/examples/account/create-mfa-challenge.md index 36d2f8981..410d114e5 100644 --- a/examples/1.9.x/server-dart/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-dart/examples/account/create-mfa-challenge.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-dart/examples/account/create-mfa-recovery-codes.md index 1fc2ec3b1..046ef0585 100644 --- a/examples/1.9.x/server-dart/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dart/examples/account/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-dart/examples/account/create-o-auth-2-token.md index de299d60b..80c2acdc1 100644 --- a/examples/1.9.x/server-dart/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-dart/examples/account/create-o-auth-2-token.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-phone-token.md b/examples/1.9.x/server-dart/examples/account/create-phone-token.md index 86a2ed36b..9e819c772 100644 --- a/examples/1.9.x/server-dart/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-dart/examples/account/create-phone-token.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-phone-verification.md b/examples/1.9.x/server-dart/examples/account/create-phone-verification.md index 400e47ec4..505243b53 100644 --- a/examples/1.9.x/server-dart/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-dart/examples/account/create-phone-verification.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-recovery.md b/examples/1.9.x/server-dart/examples/account/create-recovery.md index a71d691f5..f467abdf7 100644 --- a/examples/1.9.x/server-dart/examples/account/create-recovery.md +++ b/examples/1.9.x/server-dart/examples/account/create-recovery.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-session.md b/examples/1.9.x/server-dart/examples/account/create-session.md index 5e6f733d5..4d7b722d1 100644 --- a/examples/1.9.x/server-dart/examples/account/create-session.md +++ b/examples/1.9.x/server-dart/examples/account/create-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create-verification.md b/examples/1.9.x/server-dart/examples/account/create-verification.md index c12b0dd2d..48f7e127b 100644 --- a/examples/1.9.x/server-dart/examples/account/create-verification.md +++ b/examples/1.9.x/server-dart/examples/account/create-verification.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/create.md b/examples/1.9.x/server-dart/examples/account/create.md index fd08fa83c..4a27c171e 100644 --- a/examples/1.9.x/server-dart/examples/account/create.md +++ b/examples/1.9.x/server-dart/examples/account/create.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/delete-identity.md b/examples/1.9.x/server-dart/examples/account/delete-identity.md index e05b30fa5..fb9738e7e 100644 --- a/examples/1.9.x/server-dart/examples/account/delete-identity.md +++ b/examples/1.9.x/server-dart/examples/account/delete-identity.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-dart/examples/account/delete-mfa-authenticator.md index 06b60ece9..c38a1c8df 100644 --- a/examples/1.9.x/server-dart/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-dart/examples/account/delete-mfa-authenticator.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/delete-session.md b/examples/1.9.x/server-dart/examples/account/delete-session.md index 2961f1a48..fe15fcb9c 100644 --- a/examples/1.9.x/server-dart/examples/account/delete-session.md +++ b/examples/1.9.x/server-dart/examples/account/delete-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/delete-sessions.md b/examples/1.9.x/server-dart/examples/account/delete-sessions.md index 2b7f5b819..4726ad6f5 100644 --- a/examples/1.9.x/server-dart/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-dart/examples/account/delete-sessions.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-dart/examples/account/get-mfa-recovery-codes.md index 7b6c314ae..bb6654890 100644 --- a/examples/1.9.x/server-dart/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dart/examples/account/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/get-prefs.md b/examples/1.9.x/server-dart/examples/account/get-prefs.md index 667f2c040..cd0acf7f9 100644 --- a/examples/1.9.x/server-dart/examples/account/get-prefs.md +++ b/examples/1.9.x/server-dart/examples/account/get-prefs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/get-session.md b/examples/1.9.x/server-dart/examples/account/get-session.md index 36429bf74..6c7e5bdba 100644 --- a/examples/1.9.x/server-dart/examples/account/get-session.md +++ b/examples/1.9.x/server-dart/examples/account/get-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/get.md b/examples/1.9.x/server-dart/examples/account/get.md index fb5633f4b..5f7ec148f 100644 --- a/examples/1.9.x/server-dart/examples/account/get.md +++ b/examples/1.9.x/server-dart/examples/account/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/list-identities.md b/examples/1.9.x/server-dart/examples/account/list-identities.md index 9db450bbe..8f833229a 100644 --- a/examples/1.9.x/server-dart/examples/account/list-identities.md +++ b/examples/1.9.x/server-dart/examples/account/list-identities.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/list-logs.md b/examples/1.9.x/server-dart/examples/account/list-logs.md index f29691858..fc816eba6 100644 --- a/examples/1.9.x/server-dart/examples/account/list-logs.md +++ b/examples/1.9.x/server-dart/examples/account/list-logs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/list-mfa-factors.md b/examples/1.9.x/server-dart/examples/account/list-mfa-factors.md index 80f366802..f82da9cee 100644 --- a/examples/1.9.x/server-dart/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-dart/examples/account/list-mfa-factors.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/list-sessions.md b/examples/1.9.x/server-dart/examples/account/list-sessions.md index 53c0d220b..0cc8a5fcb 100644 --- a/examples/1.9.x/server-dart/examples/account/list-sessions.md +++ b/examples/1.9.x/server-dart/examples/account/list-sessions.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-email-verification.md b/examples/1.9.x/server-dart/examples/account/update-email-verification.md index 4f41ac059..9152fdf71 100644 --- a/examples/1.9.x/server-dart/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-dart/examples/account/update-email-verification.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-email.md b/examples/1.9.x/server-dart/examples/account/update-email.md index b6c7c5924..df64ce96c 100644 --- a/examples/1.9.x/server-dart/examples/account/update-email.md +++ b/examples/1.9.x/server-dart/examples/account/update-email.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-magic-url-session.md b/examples/1.9.x/server-dart/examples/account/update-magic-url-session.md index bed558eab..acc2b6d0c 100644 --- a/examples/1.9.x/server-dart/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-dart/examples/account/update-magic-url-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-dart/examples/account/update-mfa-authenticator.md index d898bc2d3..df90724d5 100644 --- a/examples/1.9.x/server-dart/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-dart/examples/account/update-mfa-authenticator.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-dart/examples/account/update-mfa-challenge.md index 928a7ad8f..510ce3eda 100644 --- a/examples/1.9.x/server-dart/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-dart/examples/account/update-mfa-challenge.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-dart/examples/account/update-mfa-recovery-codes.md index b1abcd858..9496e6862 100644 --- a/examples/1.9.x/server-dart/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dart/examples/account/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-mfa.md b/examples/1.9.x/server-dart/examples/account/update-mfa.md index 744a5da5d..141cced7d 100644 --- a/examples/1.9.x/server-dart/examples/account/update-mfa.md +++ b/examples/1.9.x/server-dart/examples/account/update-mfa.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-name.md b/examples/1.9.x/server-dart/examples/account/update-name.md index 402210076..28348eb4c 100644 --- a/examples/1.9.x/server-dart/examples/account/update-name.md +++ b/examples/1.9.x/server-dart/examples/account/update-name.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-password.md b/examples/1.9.x/server-dart/examples/account/update-password.md index 9f4ad4894..9be14b39e 100644 --- a/examples/1.9.x/server-dart/examples/account/update-password.md +++ b/examples/1.9.x/server-dart/examples/account/update-password.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-phone-session.md b/examples/1.9.x/server-dart/examples/account/update-phone-session.md index d99d8b6d3..f4f126fbf 100644 --- a/examples/1.9.x/server-dart/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-dart/examples/account/update-phone-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-phone-verification.md b/examples/1.9.x/server-dart/examples/account/update-phone-verification.md index 909b228ef..0b574cd10 100644 --- a/examples/1.9.x/server-dart/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-dart/examples/account/update-phone-verification.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-phone.md b/examples/1.9.x/server-dart/examples/account/update-phone.md index 7bf501690..aca017abe 100644 --- a/examples/1.9.x/server-dart/examples/account/update-phone.md +++ b/examples/1.9.x/server-dart/examples/account/update-phone.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-prefs.md b/examples/1.9.x/server-dart/examples/account/update-prefs.md index fe0076a27..3b21ae39c 100644 --- a/examples/1.9.x/server-dart/examples/account/update-prefs.md +++ b/examples/1.9.x/server-dart/examples/account/update-prefs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-recovery.md b/examples/1.9.x/server-dart/examples/account/update-recovery.md index 7b6920e1b..bf4527851 100644 --- a/examples/1.9.x/server-dart/examples/account/update-recovery.md +++ b/examples/1.9.x/server-dart/examples/account/update-recovery.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-session.md b/examples/1.9.x/server-dart/examples/account/update-session.md index 12ad41b51..d91ac2e2a 100644 --- a/examples/1.9.x/server-dart/examples/account/update-session.md +++ b/examples/1.9.x/server-dart/examples/account/update-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-status.md b/examples/1.9.x/server-dart/examples/account/update-status.md index 0841e5e25..f5435c6a8 100644 --- a/examples/1.9.x/server-dart/examples/account/update-status.md +++ b/examples/1.9.x/server-dart/examples/account/update-status.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/account/update-verification.md b/examples/1.9.x/server-dart/examples/account/update-verification.md index e45bfd3cf..92c3fcf1f 100644 --- a/examples/1.9.x/server-dart/examples/account/update-verification.md +++ b/examples/1.9.x/server-dart/examples/account/update-verification.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/activities/get-event.md b/examples/1.9.x/server-dart/examples/activities/get-event.md index 6d90a0371..6f3c3a147 100644 --- a/examples/1.9.x/server-dart/examples/activities/get-event.md +++ b/examples/1.9.x/server-dart/examples/activities/get-event.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/activities/list-events.md b/examples/1.9.x/server-dart/examples/activities/list-events.md index 9daf0d584..82c50783c 100644 --- a/examples/1.9.x/server-dart/examples/activities/list-events.md +++ b/examples/1.9.x/server-dart/examples/activities/list-events.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/advisor/delete-report.md b/examples/1.9.x/server-dart/examples/advisor/delete-report.md index d490e8209..1c7a4559e 100644 --- a/examples/1.9.x/server-dart/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-dart/examples/advisor/delete-report.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/advisor/get-insight.md b/examples/1.9.x/server-dart/examples/advisor/get-insight.md index 1920eb8e2..022ebb050 100644 --- a/examples/1.9.x/server-dart/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-dart/examples/advisor/get-insight.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/advisor/get-report.md b/examples/1.9.x/server-dart/examples/advisor/get-report.md index 4266ff05c..a1bc608a8 100644 --- a/examples/1.9.x/server-dart/examples/advisor/get-report.md +++ b/examples/1.9.x/server-dart/examples/advisor/get-report.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/advisor/list-insights.md b/examples/1.9.x/server-dart/examples/advisor/list-insights.md index 16d874f77..7ca1225a8 100644 --- a/examples/1.9.x/server-dart/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-dart/examples/advisor/list-insights.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/advisor/list-reports.md b/examples/1.9.x/server-dart/examples/advisor/list-reports.md index 292c014b1..40e40060f 100644 --- a/examples/1.9.x/server-dart/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-dart/examples/advisor/list-reports.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/avatars/get-browser.md b/examples/1.9.x/server-dart/examples/avatars/get-browser.md index b4626789b..037e74598 100644 --- a/examples/1.9.x/server-dart/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-dart/examples/avatars/get-browser.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/avatars/get-credit-card.md b/examples/1.9.x/server-dart/examples/avatars/get-credit-card.md index b5eb4f427..9e558f88a 100644 --- a/examples/1.9.x/server-dart/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-dart/examples/avatars/get-credit-card.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/avatars/get-favicon.md b/examples/1.9.x/server-dart/examples/avatars/get-favicon.md index 1bfa9b721..993eb51ba 100644 --- a/examples/1.9.x/server-dart/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-dart/examples/avatars/get-favicon.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/avatars/get-flag.md b/examples/1.9.x/server-dart/examples/avatars/get-flag.md index 920ccc5d8..e6ee1e4b5 100644 --- a/examples/1.9.x/server-dart/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-dart/examples/avatars/get-flag.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/avatars/get-image.md b/examples/1.9.x/server-dart/examples/avatars/get-image.md index c4c347102..e0f6cb86d 100644 --- a/examples/1.9.x/server-dart/examples/avatars/get-image.md +++ b/examples/1.9.x/server-dart/examples/avatars/get-image.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/avatars/get-initials.md b/examples/1.9.x/server-dart/examples/avatars/get-initials.md index 65ff5806b..a251d37f4 100644 --- a/examples/1.9.x/server-dart/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-dart/examples/avatars/get-initials.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/avatars/get-qr.md b/examples/1.9.x/server-dart/examples/avatars/get-qr.md index 9c470360e..040d5d27b 100644 --- a/examples/1.9.x/server-dart/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-dart/examples/avatars/get-qr.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/avatars/get-screenshot.md b/examples/1.9.x/server-dart/examples/avatars/get-screenshot.md index 774e94428..e54d8644b 100644 --- a/examples/1.9.x/server-dart/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-dart/examples/avatars/get-screenshot.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with @@ -18,7 +18,7 @@ Uint8List result = await avatars.getScreenshot( viewportWidth: 1920, // (optional) viewportHeight: 1080, // (optional) scale: 2, // (optional) - theme: enums.Theme.dark, // (optional) + theme: enums.BrowserTheme.dark, // (optional) userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', // (optional) fullpage: true, // (optional) locale: 'en-US', // (optional) diff --git a/examples/1.9.x/server-dart/examples/backups/create-archive.md b/examples/1.9.x/server-dart/examples/backups/create-archive.md index f6856c119..cd332cc83 100644 --- a/examples/1.9.x/server-dart/examples/backups/create-archive.md +++ b/examples/1.9.x/server-dart/examples/backups/create-archive.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/create-policy.md b/examples/1.9.x/server-dart/examples/backups/create-policy.md index 0241dcf1d..3892e0aa0 100644 --- a/examples/1.9.x/server-dart/examples/backups/create-policy.md +++ b/examples/1.9.x/server-dart/examples/backups/create-policy.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/create-restoration.md b/examples/1.9.x/server-dart/examples/backups/create-restoration.md index 84bc8ae96..d6395da44 100644 --- a/examples/1.9.x/server-dart/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-dart/examples/backups/create-restoration.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/delete-archive.md b/examples/1.9.x/server-dart/examples/backups/delete-archive.md index 59e2bb786..cab351754 100644 --- a/examples/1.9.x/server-dart/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-dart/examples/backups/delete-archive.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/delete-policy.md b/examples/1.9.x/server-dart/examples/backups/delete-policy.md index a91e4c2a6..9ef4b84bc 100644 --- a/examples/1.9.x/server-dart/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-dart/examples/backups/delete-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/get-archive.md b/examples/1.9.x/server-dart/examples/backups/get-archive.md index 16d714a48..7a22df875 100644 --- a/examples/1.9.x/server-dart/examples/backups/get-archive.md +++ b/examples/1.9.x/server-dart/examples/backups/get-archive.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/get-policy.md b/examples/1.9.x/server-dart/examples/backups/get-policy.md index 6a3d9606f..85e0125ef 100644 --- a/examples/1.9.x/server-dart/examples/backups/get-policy.md +++ b/examples/1.9.x/server-dart/examples/backups/get-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/get-restoration.md b/examples/1.9.x/server-dart/examples/backups/get-restoration.md index ef2a2a0b8..518ff19f1 100644 --- a/examples/1.9.x/server-dart/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-dart/examples/backups/get-restoration.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/list-archives.md b/examples/1.9.x/server-dart/examples/backups/list-archives.md index 57df2f169..b90f89b63 100644 --- a/examples/1.9.x/server-dart/examples/backups/list-archives.md +++ b/examples/1.9.x/server-dart/examples/backups/list-archives.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/list-policies.md b/examples/1.9.x/server-dart/examples/backups/list-policies.md index 00a04a893..ba8a5d20f 100644 --- a/examples/1.9.x/server-dart/examples/backups/list-policies.md +++ b/examples/1.9.x/server-dart/examples/backups/list-policies.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/list-restorations.md b/examples/1.9.x/server-dart/examples/backups/list-restorations.md index a4502a7bd..d1cad99b8 100644 --- a/examples/1.9.x/server-dart/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-dart/examples/backups/list-restorations.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/backups/update-policy.md b/examples/1.9.x/server-dart/examples/backups/update-policy.md index e46c84146..ad6f71caf 100644 --- a/examples/1.9.x/server-dart/examples/backups/update-policy.md +++ b/examples/1.9.x/server-dart/examples/backups/update-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-big-int-attribute.md index 2b4cb9742..457d4abb5 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-big-int-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-boolean-attribute.md index 6ffdea71d..7c02d104e 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-boolean-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-collection.md b/examples/1.9.x/server-dart/examples/databases/create-collection.md index f0c3aea51..c61169c76 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-collection.md +++ b/examples/1.9.x/server-dart/examples/databases/create-collection.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-datetime-attribute.md index b39322772..6f7b04d43 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-datetime-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-document.md b/examples/1.9.x/server-dart/examples/databases/create-document.md index f6dc0aaa6..584d63ccd 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-document.md +++ b/examples/1.9.x/server-dart/examples/databases/create-document.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/databases/create-documents.md b/examples/1.9.x/server-dart/examples/databases/create-documents.md index dd0204676..72c88faf3 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-documents.md +++ b/examples/1.9.x/server-dart/examples/databases/create-documents.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-email-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-email-attribute.md index 24347079d..aa6fbba87 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-email-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-enum-attribute.md index c50157b86..ee0b48822 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-enum-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-float-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-float-attribute.md index 33c120703..c2bb45d76 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-float-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-index.md b/examples/1.9.x/server-dart/examples/databases/create-index.md index 336678f27..9dc655a27 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-index.md +++ b/examples/1.9.x/server-dart/examples/databases/create-index.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-integer-attribute.md index 6d017d66e..573e552bb 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-integer-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-ip-attribute.md index 3648d5bb4..a2d3c62f8 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-ip-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-line-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-line-attribute.md index 15adc9686..fbab6dc91 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-line-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-longtext-attribute.md index fe8834796..9582752e8 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-longtext-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-mediumtext-attribute.md index 5672cdfd9..173b069b1 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-mediumtext-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-operations.md b/examples/1.9.x/server-dart/examples/databases/create-operations.md index d44b4e839..86af4f90e 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-operations.md +++ b/examples/1.9.x/server-dart/examples/databases/create-operations.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-point-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-point-attribute.md index c015d4b5a..d1c85a8bd 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-point-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-polygon-attribute.md index 3f16e332e..8918dcde3 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-polygon-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-relationship-attribute.md index 00afb5f75..dfa6f29de 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-relationship-attribute.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-string-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-string-attribute.md index e8f66c180..c468daaef 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-string-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-text-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-text-attribute.md index b1d714e8f..e614c3c62 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-text-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-transaction.md b/examples/1.9.x/server-dart/examples/databases/create-transaction.md index 5ab1c8ae1..350a3ab65 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-dart/examples/databases/create-transaction.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-url-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-url-attribute.md index 735f8a1d9..fa134cc4d 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-url-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-dart/examples/databases/create-varchar-attribute.md index 9e8ccbefc..58f21a200 100644 --- a/examples/1.9.x/server-dart/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/create-varchar-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/create.md b/examples/1.9.x/server-dart/examples/databases/create.md index 3abe57d10..6fa5dc6b4 100644 --- a/examples/1.9.x/server-dart/examples/databases/create.md +++ b/examples/1.9.x/server-dart/examples/databases/create.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-dart/examples/databases/decrement-document-attribute.md index 3c69500fa..d973d42f7 100644 --- a/examples/1.9.x/server-dart/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/decrement-document-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/databases/delete-attribute.md b/examples/1.9.x/server-dart/examples/databases/delete-attribute.md index aafeb0259..270147a78 100644 --- a/examples/1.9.x/server-dart/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/delete-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/delete-collection.md b/examples/1.9.x/server-dart/examples/databases/delete-collection.md index 76a0289e1..149ed8795 100644 --- a/examples/1.9.x/server-dart/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-dart/examples/databases/delete-collection.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/delete-document.md b/examples/1.9.x/server-dart/examples/databases/delete-document.md index 659e09e74..869b25411 100644 --- a/examples/1.9.x/server-dart/examples/databases/delete-document.md +++ b/examples/1.9.x/server-dart/examples/databases/delete-document.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/databases/delete-documents.md b/examples/1.9.x/server-dart/examples/databases/delete-documents.md index 6a8bd5a87..741afe6c3 100644 --- a/examples/1.9.x/server-dart/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-dart/examples/databases/delete-documents.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/delete-index.md b/examples/1.9.x/server-dart/examples/databases/delete-index.md index 2422caff7..a32bf7360 100644 --- a/examples/1.9.x/server-dart/examples/databases/delete-index.md +++ b/examples/1.9.x/server-dart/examples/databases/delete-index.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/delete-transaction.md b/examples/1.9.x/server-dart/examples/databases/delete-transaction.md index 1a00f8166..8b897f2f8 100644 --- a/examples/1.9.x/server-dart/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-dart/examples/databases/delete-transaction.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/delete.md b/examples/1.9.x/server-dart/examples/databases/delete.md index eabebed6f..074c0bcc9 100644 --- a/examples/1.9.x/server-dart/examples/databases/delete.md +++ b/examples/1.9.x/server-dart/examples/databases/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/get-attribute.md b/examples/1.9.x/server-dart/examples/databases/get-attribute.md index 495451469..b904234b2 100644 --- a/examples/1.9.x/server-dart/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/get-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/get-collection.md b/examples/1.9.x/server-dart/examples/databases/get-collection.md index 0e19f4e04..9929a3ee1 100644 --- a/examples/1.9.x/server-dart/examples/databases/get-collection.md +++ b/examples/1.9.x/server-dart/examples/databases/get-collection.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/get-document.md b/examples/1.9.x/server-dart/examples/databases/get-document.md index 75fbb943e..f1a0d8e4e 100644 --- a/examples/1.9.x/server-dart/examples/databases/get-document.md +++ b/examples/1.9.x/server-dart/examples/databases/get-document.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/databases/get-index.md b/examples/1.9.x/server-dart/examples/databases/get-index.md index 6190145ac..d1f0b6524 100644 --- a/examples/1.9.x/server-dart/examples/databases/get-index.md +++ b/examples/1.9.x/server-dart/examples/databases/get-index.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/get-transaction.md b/examples/1.9.x/server-dart/examples/databases/get-transaction.md index 230f2ee61..471640dbd 100644 --- a/examples/1.9.x/server-dart/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-dart/examples/databases/get-transaction.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/get.md b/examples/1.9.x/server-dart/examples/databases/get.md index e8b042b37..680a198ee 100644 --- a/examples/1.9.x/server-dart/examples/databases/get.md +++ b/examples/1.9.x/server-dart/examples/databases/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-dart/examples/databases/increment-document-attribute.md index 211740f42..d159f4b65 100644 --- a/examples/1.9.x/server-dart/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/increment-document-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/databases/list-attributes.md b/examples/1.9.x/server-dart/examples/databases/list-attributes.md index 3d98457fe..1b5f7fa5d 100644 --- a/examples/1.9.x/server-dart/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-dart/examples/databases/list-attributes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/list-collections.md b/examples/1.9.x/server-dart/examples/databases/list-collections.md index 6b983d6bb..6dc2dfc70 100644 --- a/examples/1.9.x/server-dart/examples/databases/list-collections.md +++ b/examples/1.9.x/server-dart/examples/databases/list-collections.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/list-documents.md b/examples/1.9.x/server-dart/examples/databases/list-documents.md index 5cb4a1231..eba9b3d25 100644 --- a/examples/1.9.x/server-dart/examples/databases/list-documents.md +++ b/examples/1.9.x/server-dart/examples/databases/list-documents.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/databases/list-indexes.md b/examples/1.9.x/server-dart/examples/databases/list-indexes.md index ccfa33582..b5281e451 100644 --- a/examples/1.9.x/server-dart/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-dart/examples/databases/list-indexes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/list-transactions.md b/examples/1.9.x/server-dart/examples/databases/list-transactions.md index 07a73e26d..5fea7265d 100644 --- a/examples/1.9.x/server-dart/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-dart/examples/databases/list-transactions.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/list.md b/examples/1.9.x/server-dart/examples/databases/list.md index 3da131483..9e273cac9 100644 --- a/examples/1.9.x/server-dart/examples/databases/list.md +++ b/examples/1.9.x/server-dart/examples/databases/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-big-int-attribute.md index e885b89fc..de2f7487b 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-big-int-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-boolean-attribute.md index 29b13e615..4eb0169ef 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-boolean-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-collection.md b/examples/1.9.x/server-dart/examples/databases/update-collection.md index b724e7b94..44efa2c71 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-collection.md +++ b/examples/1.9.x/server-dart/examples/databases/update-collection.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-datetime-attribute.md index 4548b2b46..36c4eb92e 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-datetime-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-document.md b/examples/1.9.x/server-dart/examples/databases/update-document.md index ccfc6838c..c21fbc990 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-document.md +++ b/examples/1.9.x/server-dart/examples/databases/update-document.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/databases/update-documents.md b/examples/1.9.x/server-dart/examples/databases/update-documents.md index 9ab88a699..24b051c93 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-documents.md +++ b/examples/1.9.x/server-dart/examples/databases/update-documents.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-email-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-email-attribute.md index 0a261f5f7..d38deb6cc 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-email-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-enum-attribute.md index b37ab12f7..ee44297c3 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-enum-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-float-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-float-attribute.md index d418bfd08..21ef57426 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-float-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-integer-attribute.md index 8a7b3775c..fb3bfda6b 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-integer-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-ip-attribute.md index 98d8eff42..9382a18cb 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-ip-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-line-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-line-attribute.md index 59ab5f710..a265bcfc7 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-line-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-longtext-attribute.md index c0f6d7ec9..235aef94f 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-longtext-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-mediumtext-attribute.md index fb5f85ac2..448ca6f5f 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-mediumtext-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-point-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-point-attribute.md index 29d1354ec..f783e2977 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-point-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-polygon-attribute.md index c2e2c6a56..cd9a007f4 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-polygon-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-relationship-attribute.md index d964f5006..e357803d6 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-relationship-attribute.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-string-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-string-attribute.md index 79dda5087..0defba586 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-string-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-text-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-text-attribute.md index 38f2b4bdf..436caee49 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-text-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-transaction.md b/examples/1.9.x/server-dart/examples/databases/update-transaction.md index f43e7e5d7..91c6d474d 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-dart/examples/databases/update-transaction.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-url-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-url-attribute.md index b05dd6f1b..4bef9fa0c 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-url-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-dart/examples/databases/update-varchar-attribute.md index adf562543..a9651bc12 100644 --- a/examples/1.9.x/server-dart/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-dart/examples/databases/update-varchar-attribute.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/update.md b/examples/1.9.x/server-dart/examples/databases/update.md index 4c097968a..54f50e6bb 100644 --- a/examples/1.9.x/server-dart/examples/databases/update.md +++ b/examples/1.9.x/server-dart/examples/databases/update.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/databases/upsert-document.md b/examples/1.9.x/server-dart/examples/databases/upsert-document.md index 46a70fda1..80fe3dcff 100644 --- a/examples/1.9.x/server-dart/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-dart/examples/databases/upsert-document.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/databases/upsert-documents.md b/examples/1.9.x/server-dart/examples/databases/upsert-documents.md index 95806e1ab..e4a2419bc 100644 --- a/examples/1.9.x/server-dart/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-dart/examples/databases/upsert-documents.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/create-deployment.md b/examples/1.9.x/server-dart/examples/functions/create-deployment.md index 62ac7cca5..ad08dab3d 100644 --- a/examples/1.9.x/server-dart/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-dart/examples/functions/create-deployment.md @@ -3,7 +3,7 @@ import 'dart:io'; import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-dart/examples/functions/create-duplicate-deployment.md index 14804895b..d1d006d01 100644 --- a/examples/1.9.x/server-dart/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-dart/examples/functions/create-duplicate-deployment.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/create-execution.md b/examples/1.9.x/server-dart/examples/functions/create-execution.md index 2f6ac1c33..5e34a672e 100644 --- a/examples/1.9.x/server-dart/examples/functions/create-execution.md +++ b/examples/1.9.x/server-dart/examples/functions/create-execution.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/functions/create-template-deployment.md b/examples/1.9.x/server-dart/examples/functions/create-template-deployment.md index 1b1f5d244..ac1135416 100644 --- a/examples/1.9.x/server-dart/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-dart/examples/functions/create-template-deployment.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/create-variable.md b/examples/1.9.x/server-dart/examples/functions/create-variable.md index 48d9ca801..c5787b0e8 100644 --- a/examples/1.9.x/server-dart/examples/functions/create-variable.md +++ b/examples/1.9.x/server-dart/examples/functions/create-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-dart/examples/functions/create-vcs-deployment.md index a241c80fe..6ae5518ad 100644 --- a/examples/1.9.x/server-dart/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-dart/examples/functions/create-vcs-deployment.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/create.md b/examples/1.9.x/server-dart/examples/functions/create.md index 744563092..8f413dbfb 100644 --- a/examples/1.9.x/server-dart/examples/functions/create.md +++ b/examples/1.9.x/server-dart/examples/functions/create.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -12,7 +12,7 @@ Functions functions = Functions(client); Func result = await functions.create( functionId: '', name: '', - runtime: enums.Runtime.node145, + runtime: enums.FunctionRuntime.node145, execute: ["any"], // (optional) events: [], // (optional) schedule: '', // (optional) @@ -21,12 +21,14 @@ Func result = await functions.create( logging: false, // (optional) entrypoint: '', // (optional) commands: '', // (optional) - scopes: [enums.Scopes.projectRead], // (optional) + scopes: [enums.ProjectKeyScopes.projectRead], // (optional) installationId: '', // (optional) providerRepositoryId: '', // (optional) providerBranch: '', // (optional) providerSilentMode: false, // (optional) providerRootDirectory: '', // (optional) + providerBranches: [], // (optional) + providerPaths: [], // (optional) buildSpecification: '', // (optional) runtimeSpecification: '', // (optional) deploymentRetention: 0, // (optional) diff --git a/examples/1.9.x/server-dart/examples/functions/delete-deployment.md b/examples/1.9.x/server-dart/examples/functions/delete-deployment.md index a4d629d19..e36ec1690 100644 --- a/examples/1.9.x/server-dart/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-dart/examples/functions/delete-deployment.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/delete-execution.md b/examples/1.9.x/server-dart/examples/functions/delete-execution.md index f5226dda0..fd8b3b171 100644 --- a/examples/1.9.x/server-dart/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-dart/examples/functions/delete-execution.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/delete-variable.md b/examples/1.9.x/server-dart/examples/functions/delete-variable.md index ce2c26c12..ee5955964 100644 --- a/examples/1.9.x/server-dart/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-dart/examples/functions/delete-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/delete.md b/examples/1.9.x/server-dart/examples/functions/delete.md index 9d0465d0c..0eb5f660a 100644 --- a/examples/1.9.x/server-dart/examples/functions/delete.md +++ b/examples/1.9.x/server-dart/examples/functions/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/get-deployment-download.md b/examples/1.9.x/server-dart/examples/functions/get-deployment-download.md index 378a366ad..f5186906e 100644 --- a/examples/1.9.x/server-dart/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-dart/examples/functions/get-deployment-download.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/get-deployment.md b/examples/1.9.x/server-dart/examples/functions/get-deployment.md index 8e3e2e28c..0e494c0ab 100644 --- a/examples/1.9.x/server-dart/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-dart/examples/functions/get-deployment.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/get-execution.md b/examples/1.9.x/server-dart/examples/functions/get-execution.md index 1f3654845..dc71e0db1 100644 --- a/examples/1.9.x/server-dart/examples/functions/get-execution.md +++ b/examples/1.9.x/server-dart/examples/functions/get-execution.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/functions/get-variable.md b/examples/1.9.x/server-dart/examples/functions/get-variable.md index ab8179e0c..9804fdd9b 100644 --- a/examples/1.9.x/server-dart/examples/functions/get-variable.md +++ b/examples/1.9.x/server-dart/examples/functions/get-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/get.md b/examples/1.9.x/server-dart/examples/functions/get.md index caafad0ac..5425cd32c 100644 --- a/examples/1.9.x/server-dart/examples/functions/get.md +++ b/examples/1.9.x/server-dart/examples/functions/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/list-deployments.md b/examples/1.9.x/server-dart/examples/functions/list-deployments.md index 0cd7c71fb..83ce06772 100644 --- a/examples/1.9.x/server-dart/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-dart/examples/functions/list-deployments.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/list-executions.md b/examples/1.9.x/server-dart/examples/functions/list-executions.md index deb100be0..dc2e246c1 100644 --- a/examples/1.9.x/server-dart/examples/functions/list-executions.md +++ b/examples/1.9.x/server-dart/examples/functions/list-executions.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/functions/list-runtimes.md b/examples/1.9.x/server-dart/examples/functions/list-runtimes.md index 6325f4e4b..be3ac6c21 100644 --- a/examples/1.9.x/server-dart/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-dart/examples/functions/list-runtimes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/list-specifications.md b/examples/1.9.x/server-dart/examples/functions/list-specifications.md index d7a3cffc0..db5109a9a 100644 --- a/examples/1.9.x/server-dart/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-dart/examples/functions/list-specifications.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/list-variables.md b/examples/1.9.x/server-dart/examples/functions/list-variables.md index bd07b0000..d78995f3e 100644 --- a/examples/1.9.x/server-dart/examples/functions/list-variables.md +++ b/examples/1.9.x/server-dart/examples/functions/list-variables.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/list.md b/examples/1.9.x/server-dart/examples/functions/list.md index 5b5fb5711..a4eba8018 100644 --- a/examples/1.9.x/server-dart/examples/functions/list.md +++ b/examples/1.9.x/server-dart/examples/functions/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/update-deployment-status.md b/examples/1.9.x/server-dart/examples/functions/update-deployment-status.md index 7c8d0cb8e..c9e802dc9 100644 --- a/examples/1.9.x/server-dart/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-dart/examples/functions/update-deployment-status.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/update-function-deployment.md b/examples/1.9.x/server-dart/examples/functions/update-function-deployment.md index 2fd5848b8..c4ef433a3 100644 --- a/examples/1.9.x/server-dart/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-dart/examples/functions/update-function-deployment.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/update-variable.md b/examples/1.9.x/server-dart/examples/functions/update-variable.md index e933473f6..9aeca5b5a 100644 --- a/examples/1.9.x/server-dart/examples/functions/update-variable.md +++ b/examples/1.9.x/server-dart/examples/functions/update-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/functions/update.md b/examples/1.9.x/server-dart/examples/functions/update.md index 904f8967b..c8c8ee7e4 100644 --- a/examples/1.9.x/server-dart/examples/functions/update.md +++ b/examples/1.9.x/server-dart/examples/functions/update.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -12,7 +12,7 @@ Functions functions = Functions(client); Func result = await functions.update( functionId: '', name: '', - runtime: enums.Runtime.node145, // (optional) + runtime: enums.FunctionRuntime.node145, // (optional) execute: ["any"], // (optional) events: [], // (optional) schedule: '', // (optional) @@ -21,12 +21,14 @@ Func result = await functions.update( logging: false, // (optional) entrypoint: '', // (optional) commands: '', // (optional) - scopes: [enums.Scopes.projectRead], // (optional) + scopes: [enums.ProjectKeyScopes.projectRead], // (optional) installationId: '', // (optional) providerRepositoryId: '', // (optional) providerBranch: '', // (optional) providerSilentMode: false, // (optional) providerRootDirectory: '', // (optional) + providerBranches: [], // (optional) + providerPaths: [], // (optional) buildSpecification: '', // (optional) runtimeSpecification: '', // (optional) deploymentRetention: 0, // (optional) diff --git a/examples/1.9.x/server-dart/examples/graphql/mutation.md b/examples/1.9.x/server-dart/examples/graphql/mutation.md index cd55d655e..625c6b18a 100644 --- a/examples/1.9.x/server-dart/examples/graphql/mutation.md +++ b/examples/1.9.x/server-dart/examples/graphql/mutation.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/graphql/query.md b/examples/1.9.x/server-dart/examples/graphql/query.md index 7d6fa1841..3cb38be3a 100644 --- a/examples/1.9.x/server-dart/examples/graphql/query.md +++ b/examples/1.9.x/server-dart/examples/graphql/query.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-antivirus.md b/examples/1.9.x/server-dart/examples/health/get-antivirus.md index 32b7065e2..c9e97d68e 100644 --- a/examples/1.9.x/server-dart/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-dart/examples/health/get-antivirus.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-cache.md b/examples/1.9.x/server-dart/examples/health/get-cache.md index 0a4751549..2732ede6f 100644 --- a/examples/1.9.x/server-dart/examples/health/get-cache.md +++ b/examples/1.9.x/server-dart/examples/health/get-cache.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-certificate.md b/examples/1.9.x/server-dart/examples/health/get-certificate.md index 692c55ae8..9079a4763 100644 --- a/examples/1.9.x/server-dart/examples/health/get-certificate.md +++ b/examples/1.9.x/server-dart/examples/health/get-certificate.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-console-pausing.md b/examples/1.9.x/server-dart/examples/health/get-console-pausing.md index 272d81d3f..9d56a0d40 100644 --- a/examples/1.9.x/server-dart/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-dart/examples/health/get-console-pausing.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-db.md b/examples/1.9.x/server-dart/examples/health/get-db.md index 9080ec235..8b8ac4060 100644 --- a/examples/1.9.x/server-dart/examples/health/get-db.md +++ b/examples/1.9.x/server-dart/examples/health/get-db.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-failed-jobs.md b/examples/1.9.x/server-dart/examples/health/get-failed-jobs.md index 472eb1aee..c72ad6222 100644 --- a/examples/1.9.x/server-dart/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-dart/examples/health/get-failed-jobs.md @@ -3,14 +3,14 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key Health health = Health(client); HealthQueue result = await health.getFailedJobs( - name: enums.Name.v1Database, + name: enums.HealthQueueName.v1Database, threshold: 0, // (optional) ); ``` diff --git a/examples/1.9.x/server-dart/examples/health/get-pub-sub.md b/examples/1.9.x/server-dart/examples/health/get-pub-sub.md index 10c906b06..2ecf80b01 100644 --- a/examples/1.9.x/server-dart/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-dart/examples/health/get-pub-sub.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-audits.md b/examples/1.9.x/server-dart/examples/health/get-queue-audits.md index d367220aa..e2e4dbe7a 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-audits.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-builds.md b/examples/1.9.x/server-dart/examples/health/get-queue-builds.md index f837c97df..746d375b0 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-builds.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-certificates.md b/examples/1.9.x/server-dart/examples/health/get-queue-certificates.md index c8ae26836..605b2451f 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-certificates.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-databases.md b/examples/1.9.x/server-dart/examples/health/get-queue-databases.md index aa37f3edb..34c7bf498 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-databases.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-deletes.md b/examples/1.9.x/server-dart/examples/health/get-queue-deletes.md index 851934906..3a345aa6d 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-deletes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-functions.md b/examples/1.9.x/server-dart/examples/health/get-queue-functions.md index 00e7879b1..61c289858 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-functions.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-logs.md b/examples/1.9.x/server-dart/examples/health/get-queue-logs.md index 33379121d..e3854a8c3 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-logs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-mails.md b/examples/1.9.x/server-dart/examples/health/get-queue-mails.md index 4631902e4..a20edf827 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-mails.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-messaging.md b/examples/1.9.x/server-dart/examples/health/get-queue-messaging.md index 5803dd9df..bb60f1e5a 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-messaging.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-migrations.md b/examples/1.9.x/server-dart/examples/health/get-queue-migrations.md index 862ca9d49..2d88127f6 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-migrations.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-dart/examples/health/get-queue-stats-resources.md index 23075db53..c6e49c7bc 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-stats-resources.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-usage.md b/examples/1.9.x/server-dart/examples/health/get-queue-usage.md index 06a3e9391..32dfacee9 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-usage.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-dart/examples/health/get-queue-webhooks.md index 38ee6e723..1fb9fc5c4 100644 --- a/examples/1.9.x/server-dart/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-dart/examples/health/get-queue-webhooks.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-storage-local.md b/examples/1.9.x/server-dart/examples/health/get-storage-local.md index 46a303614..689a7479f 100644 --- a/examples/1.9.x/server-dart/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-dart/examples/health/get-storage-local.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-storage.md b/examples/1.9.x/server-dart/examples/health/get-storage.md index b5e046f65..dc563082f 100644 --- a/examples/1.9.x/server-dart/examples/health/get-storage.md +++ b/examples/1.9.x/server-dart/examples/health/get-storage.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get-time.md b/examples/1.9.x/server-dart/examples/health/get-time.md index d4c4fc236..c5f269873 100644 --- a/examples/1.9.x/server-dart/examples/health/get-time.md +++ b/examples/1.9.x/server-dart/examples/health/get-time.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/health/get.md b/examples/1.9.x/server-dart/examples/health/get.md index 007a68f64..6bb1f0a6e 100644 --- a/examples/1.9.x/server-dart/examples/health/get.md +++ b/examples/1.9.x/server-dart/examples/health/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/locale/get.md b/examples/1.9.x/server-dart/examples/locale/get.md index e8d5a6e5f..39376bb21 100644 --- a/examples/1.9.x/server-dart/examples/locale/get.md +++ b/examples/1.9.x/server-dart/examples/locale/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/locale/list-codes.md b/examples/1.9.x/server-dart/examples/locale/list-codes.md index c8b2490d9..39d2ce5f7 100644 --- a/examples/1.9.x/server-dart/examples/locale/list-codes.md +++ b/examples/1.9.x/server-dart/examples/locale/list-codes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/locale/list-continents.md b/examples/1.9.x/server-dart/examples/locale/list-continents.md index 5d96631bc..1644345c5 100644 --- a/examples/1.9.x/server-dart/examples/locale/list-continents.md +++ b/examples/1.9.x/server-dart/examples/locale/list-continents.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/locale/list-countries-eu.md b/examples/1.9.x/server-dart/examples/locale/list-countries-eu.md index 191be9496..bccb32f72 100644 --- a/examples/1.9.x/server-dart/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-dart/examples/locale/list-countries-eu.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/locale/list-countries-phones.md b/examples/1.9.x/server-dart/examples/locale/list-countries-phones.md index 00ec7810b..004a71c75 100644 --- a/examples/1.9.x/server-dart/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-dart/examples/locale/list-countries-phones.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/locale/list-countries.md b/examples/1.9.x/server-dart/examples/locale/list-countries.md index 62da933f8..94a6f03cf 100644 --- a/examples/1.9.x/server-dart/examples/locale/list-countries.md +++ b/examples/1.9.x/server-dart/examples/locale/list-countries.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/locale/list-currencies.md b/examples/1.9.x/server-dart/examples/locale/list-currencies.md index c10296305..eb24fb9bd 100644 --- a/examples/1.9.x/server-dart/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-dart/examples/locale/list-currencies.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/locale/list-languages.md b/examples/1.9.x/server-dart/examples/locale/list-languages.md index 297128406..62a1c0042 100644 --- a/examples/1.9.x/server-dart/examples/locale/list-languages.md +++ b/examples/1.9.x/server-dart/examples/locale/list-languages.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-apns-provider.md index 5ccf6f764..77545cbd3 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-apns-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-email.md b/examples/1.9.x/server-dart/examples/messaging/create-email.md index f31414eb6..c5831758b 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-email.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-email.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-fcm-provider.md index 93a224593..6d0f158e7 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-fcm-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-mailgun-provider.md index 3f4d98547..1eb91e576 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-mailgun-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-msg-91-provider.md index b6b919f51..32183c937 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-msg-91-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-push.md b/examples/1.9.x/server-dart/examples/messaging/create-push.md index e8bf76a9e..548aadcca 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-push.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-push.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-resend-provider.md index 6ce3fb47f..c7c3ed93c 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-resend-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-sendgrid-provider.md index 376bf8ccb..fa7abd0cf 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-sendgrid-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-sms.md b/examples/1.9.x/server-dart/examples/messaging/create-sms.md index 01591f571..adc24dc58 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-sms.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-smtp-provider.md index 6d7d7e9df..cc40219ba 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-smtp-provider.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-subscriber.md b/examples/1.9.x/server-dart/examples/messaging/create-subscriber.md index cd9e9a43b..0acda3e47 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-subscriber.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setJWT(''); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-dart/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-telesign-provider.md index 0e86c2d83..550ecd8fa 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-telesign-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-textmagic-provider.md index 88086ee51..e4d319f60 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-textmagic-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-topic.md b/examples/1.9.x/server-dart/examples/messaging/create-topic.md index 1414bd0cc..fe773c1d6 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-topic.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-twilio-provider.md index abd848d47..ad3da1791 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-twilio-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-dart/examples/messaging/create-vonage-provider.md index cb372b787..148f0c3b6 100644 --- a/examples/1.9.x/server-dart/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/create-vonage-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/delete-provider.md b/examples/1.9.x/server-dart/examples/messaging/delete-provider.md index f59b3ddc5..d14d24f3c 100644 --- a/examples/1.9.x/server-dart/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/delete-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-dart/examples/messaging/delete-subscriber.md index 870894a1c..d1fbb3814 100644 --- a/examples/1.9.x/server-dart/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-dart/examples/messaging/delete-subscriber.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setJWT(''); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-dart/examples/messaging/delete-topic.md b/examples/1.9.x/server-dart/examples/messaging/delete-topic.md index 25afc8174..3cb49180d 100644 --- a/examples/1.9.x/server-dart/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-dart/examples/messaging/delete-topic.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/delete.md b/examples/1.9.x/server-dart/examples/messaging/delete.md index 757aa24ab..8cc18c88e 100644 --- a/examples/1.9.x/server-dart/examples/messaging/delete.md +++ b/examples/1.9.x/server-dart/examples/messaging/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/get-message.md b/examples/1.9.x/server-dart/examples/messaging/get-message.md index 6030ab411..d9bd4ce8a 100644 --- a/examples/1.9.x/server-dart/examples/messaging/get-message.md +++ b/examples/1.9.x/server-dart/examples/messaging/get-message.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/get-provider.md b/examples/1.9.x/server-dart/examples/messaging/get-provider.md index b9978e124..fc86c10ac 100644 --- a/examples/1.9.x/server-dart/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/get-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/get-subscriber.md b/examples/1.9.x/server-dart/examples/messaging/get-subscriber.md index 4866ec406..f9d8e65e7 100644 --- a/examples/1.9.x/server-dart/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-dart/examples/messaging/get-subscriber.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/get-topic.md b/examples/1.9.x/server-dart/examples/messaging/get-topic.md index 9bde98187..88fead07a 100644 --- a/examples/1.9.x/server-dart/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-dart/examples/messaging/get-topic.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-message-logs.md b/examples/1.9.x/server-dart/examples/messaging/list-message-logs.md index 9e3bcb5a9..af3a2749f 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-message-logs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-messages.md b/examples/1.9.x/server-dart/examples/messaging/list-messages.md index cb43477f4..4c6d00342 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-messages.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-dart/examples/messaging/list-provider-logs.md index a884aa3b2..196945a04 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-provider-logs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-providers.md b/examples/1.9.x/server-dart/examples/messaging/list-providers.md index 3fb8e6ffc..ea87b707c 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-providers.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-dart/examples/messaging/list-subscriber-logs.md index 507443f7c..5b6d11e59 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-subscriber-logs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-subscribers.md b/examples/1.9.x/server-dart/examples/messaging/list-subscribers.md index 6a876a7c3..243496036 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-subscribers.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-targets.md b/examples/1.9.x/server-dart/examples/messaging/list-targets.md index 6f0225e19..b90e9157c 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-targets.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-dart/examples/messaging/list-topic-logs.md index b3b8ba8f8..958c74973 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-topic-logs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/list-topics.md b/examples/1.9.x/server-dart/examples/messaging/list-topics.md index 7147c2d0d..c3b982c36 100644 --- a/examples/1.9.x/server-dart/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-dart/examples/messaging/list-topics.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-apns-provider.md index 47e714d5c..8ba2294d3 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-apns-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-email.md b/examples/1.9.x/server-dart/examples/messaging/update-email.md index c78a42fd9..8f3c9205f 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-email.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-email.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-fcm-provider.md index 522466176..019cf2f96 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-fcm-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-mailgun-provider.md index 6b164546f..839a804ff 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-mailgun-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-msg-91-provider.md index 37a0a5673..5aecf5e2e 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-msg-91-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-push.md b/examples/1.9.x/server-dart/examples/messaging/update-push.md index 0d2145a98..438b46741 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-push.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-push.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-resend-provider.md index 6af01550d..40f0dd9d3 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-resend-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-sendgrid-provider.md index 3cfbe82b0..497bca52d 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-sendgrid-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-sms.md b/examples/1.9.x/server-dart/examples/messaging/update-sms.md index b8197294a..41e3fe73a 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-sms.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-smtp-provider.md index e77b1455d..384666d28 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-smtp-provider.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-telesign-provider.md index cc1759931..edcae69bd 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-telesign-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-textmagic-provider.md index 2eaff5353..858931cb9 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-textmagic-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-topic.md b/examples/1.9.x/server-dart/examples/messaging/update-topic.md index 448812729..3db1238b5 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-topic.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-twilio-provider.md index d177d8718..7772cc83d 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-twilio-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-dart/examples/messaging/update-vonage-provider.md index ca1228067..21680bfcb 100644 --- a/examples/1.9.x/server-dart/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-dart/examples/messaging/update-vonage-provider.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/organization/create-key.md b/examples/1.9.x/server-dart/examples/organization/create-key.md new file mode 100644 index 000000000..96eb6cbad --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/create-key.md @@ -0,0 +1,18 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +Key result = await organization.createKey( + keyId: '', + name: '', + scopes: [enums.OrganizationKeyScopes.projectsRead], + expire: '2020-10-15T06:38:00.000+00:00', // (optional) +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/create-project.md b/examples/1.9.x/server-dart/examples/organization/create-project.md new file mode 100644 index 000000000..bf39fef9d --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/create-project.md @@ -0,0 +1,17 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +Project result = await organization.createProject( + projectId: '', + name: '', + region: enums.Region.fra, // (optional) +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/delete-key.md b/examples/1.9.x/server-dart/examples/organization/delete-key.md new file mode 100644 index 000000000..e47f25ee3 --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/delete-key.md @@ -0,0 +1,14 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +await organization.deleteKey( + keyId: '', +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/delete-project.md b/examples/1.9.x/server-dart/examples/organization/delete-project.md new file mode 100644 index 000000000..f3e0b23d6 --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/delete-project.md @@ -0,0 +1,14 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +await organization.deleteProject( + projectId: '', +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/get-key.md b/examples/1.9.x/server-dart/examples/organization/get-key.md new file mode 100644 index 000000000..82482ffe4 --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/get-key.md @@ -0,0 +1,14 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +Key result = await organization.getKey( + keyId: '', +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/get-project.md b/examples/1.9.x/server-dart/examples/organization/get-project.md new file mode 100644 index 000000000..2ea3231c9 --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/get-project.md @@ -0,0 +1,14 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +Project result = await organization.getProject( + projectId: '', +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/list-keys.md b/examples/1.9.x/server-dart/examples/organization/list-keys.md new file mode 100644 index 000000000..ece4bd753 --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/list-keys.md @@ -0,0 +1,15 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +KeyList result = await organization.listKeys( + queries: [], // (optional) + total: false, // (optional) +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/list-projects.md b/examples/1.9.x/server-dart/examples/organization/list-projects.md new file mode 100644 index 000000000..f78438143 --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/list-projects.md @@ -0,0 +1,16 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +ProjectList result = await organization.listProjects( + queries: [], // (optional) + search: '', // (optional) + total: false, // (optional) +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/update-key.md b/examples/1.9.x/server-dart/examples/organization/update-key.md new file mode 100644 index 000000000..1328508ed --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/update-key.md @@ -0,0 +1,18 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; +import 'package:dart_appwrite/enums.dart' as enums; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +Key result = await organization.updateKey( + keyId: '', + name: '', + scopes: [enums.OrganizationKeyScopes.projectsRead], + expire: '2020-10-15T06:38:00.000+00:00', // (optional) +); +``` diff --git a/examples/1.9.x/server-dart/examples/organization/update-project.md b/examples/1.9.x/server-dart/examples/organization/update-project.md new file mode 100644 index 000000000..afcb5c75f --- /dev/null +++ b/examples/1.9.x/server-dart/examples/organization/update-project.md @@ -0,0 +1,15 @@ +```dart +import 'package:dart_appwrite/dart_appwrite.dart'; + +Client client = Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +Organization organization = Organization(client); + +Project result = await organization.updateProject( + projectId: '', + name: '', +); +``` diff --git a/examples/1.9.x/server-dart/examples/presences/delete.md b/examples/1.9.x/server-dart/examples/presences/delete.md index 50c950a61..b2c29e3db 100644 --- a/examples/1.9.x/server-dart/examples/presences/delete.md +++ b/examples/1.9.x/server-dart/examples/presences/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/presences/get.md b/examples/1.9.x/server-dart/examples/presences/get.md index f8025297f..60a236d3b 100644 --- a/examples/1.9.x/server-dart/examples/presences/get.md +++ b/examples/1.9.x/server-dart/examples/presences/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/presences/list.md b/examples/1.9.x/server-dart/examples/presences/list.md index d0a87bb13..e08eb2bee 100644 --- a/examples/1.9.x/server-dart/examples/presences/list.md +++ b/examples/1.9.x/server-dart/examples/presences/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/presences/update-presence.md b/examples/1.9.x/server-dart/examples/presences/update-presence.md index 445afd19e..2fdf9dc06 100644 --- a/examples/1.9.x/server-dart/examples/presences/update-presence.md +++ b/examples/1.9.x/server-dart/examples/presences/update-presence.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/presences/upsert.md b/examples/1.9.x/server-dart/examples/presences/upsert.md index 7602a2eb2..b0ad99c03 100644 --- a/examples/1.9.x/server-dart/examples/presences/upsert.md +++ b/examples/1.9.x/server-dart/examples/presences/upsert.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-android-platform.md b/examples/1.9.x/server-dart/examples/project/create-android-platform.md index 47a5c14bd..ec8f65133 100644 --- a/examples/1.9.x/server-dart/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-dart/examples/project/create-android-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-apple-platform.md b/examples/1.9.x/server-dart/examples/project/create-apple-platform.md index 8de12084a..8cc3a91a6 100644 --- a/examples/1.9.x/server-dart/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-dart/examples/project/create-apple-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-dart/examples/project/create-ephemeral-key.md index cdc4ab77d..dba987736 100644 --- a/examples/1.9.x/server-dart/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-dart/examples/project/create-ephemeral-key.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-key.md b/examples/1.9.x/server-dart/examples/project/create-key.md index 787ad0932..1f50bda68 100644 --- a/examples/1.9.x/server-dart/examples/project/create-key.md +++ b/examples/1.9.x/server-dart/examples/project/create-key.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-linux-platform.md b/examples/1.9.x/server-dart/examples/project/create-linux-platform.md index a7842305e..5a895002c 100644 --- a/examples/1.9.x/server-dart/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-dart/examples/project/create-linux-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-mock-phone.md b/examples/1.9.x/server-dart/examples/project/create-mock-phone.md index c73c4c2fc..e71f50b3f 100644 --- a/examples/1.9.x/server-dart/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-dart/examples/project/create-mock-phone.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-smtp-test.md b/examples/1.9.x/server-dart/examples/project/create-smtp-test.md index fac73da88..491d4753d 100644 --- a/examples/1.9.x/server-dart/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-dart/examples/project/create-smtp-test.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-variable.md b/examples/1.9.x/server-dart/examples/project/create-variable.md index 838fce0b6..fc0182736 100644 --- a/examples/1.9.x/server-dart/examples/project/create-variable.md +++ b/examples/1.9.x/server-dart/examples/project/create-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-web-platform.md b/examples/1.9.x/server-dart/examples/project/create-web-platform.md index 12b157ee0..8fc7edc6a 100644 --- a/examples/1.9.x/server-dart/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-dart/examples/project/create-web-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/create-windows-platform.md b/examples/1.9.x/server-dart/examples/project/create-windows-platform.md index f2b47ca08..8d2af8ad4 100644 --- a/examples/1.9.x/server-dart/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-dart/examples/project/create-windows-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/delete-key.md b/examples/1.9.x/server-dart/examples/project/delete-key.md index 6617fa4d6..4aac4ffd5 100644 --- a/examples/1.9.x/server-dart/examples/project/delete-key.md +++ b/examples/1.9.x/server-dart/examples/project/delete-key.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/delete-mock-phone.md b/examples/1.9.x/server-dart/examples/project/delete-mock-phone.md index f47a21902..96672678c 100644 --- a/examples/1.9.x/server-dart/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-dart/examples/project/delete-mock-phone.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/delete-platform.md b/examples/1.9.x/server-dart/examples/project/delete-platform.md index 2a1a5985c..1f84cdcb8 100644 --- a/examples/1.9.x/server-dart/examples/project/delete-platform.md +++ b/examples/1.9.x/server-dart/examples/project/delete-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/delete-variable.md b/examples/1.9.x/server-dart/examples/project/delete-variable.md index 9a177d51d..18371f5b5 100644 --- a/examples/1.9.x/server-dart/examples/project/delete-variable.md +++ b/examples/1.9.x/server-dart/examples/project/delete-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/delete.md b/examples/1.9.x/server-dart/examples/project/delete.md index 3199e2db8..5db81c15f 100644 --- a/examples/1.9.x/server-dart/examples/project/delete.md +++ b/examples/1.9.x/server-dart/examples/project/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/get-email-template.md b/examples/1.9.x/server-dart/examples/project/get-email-template.md index c98e0c6b2..0763871d3 100644 --- a/examples/1.9.x/server-dart/examples/project/get-email-template.md +++ b/examples/1.9.x/server-dart/examples/project/get-email-template.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/get-key.md b/examples/1.9.x/server-dart/examples/project/get-key.md index 77ee7bd32..33a6d3120 100644 --- a/examples/1.9.x/server-dart/examples/project/get-key.md +++ b/examples/1.9.x/server-dart/examples/project/get-key.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/get-mock-phone.md b/examples/1.9.x/server-dart/examples/project/get-mock-phone.md index e3ef61ff9..f51464bb6 100644 --- a/examples/1.9.x/server-dart/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-dart/examples/project/get-mock-phone.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-dart/examples/project/get-o-auth-2-provider.md index e487cda2b..1c550ded2 100644 --- a/examples/1.9.x/server-dart/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-dart/examples/project/get-o-auth-2-provider.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/get-platform.md b/examples/1.9.x/server-dart/examples/project/get-platform.md index 3874f13ae..51a998093 100644 --- a/examples/1.9.x/server-dart/examples/project/get-platform.md +++ b/examples/1.9.x/server-dart/examples/project/get-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/get-policy.md b/examples/1.9.x/server-dart/examples/project/get-policy.md index d8c856440..9f5e1a816 100644 --- a/examples/1.9.x/server-dart/examples/project/get-policy.md +++ b/examples/1.9.x/server-dart/examples/project/get-policy.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/get-variable.md b/examples/1.9.x/server-dart/examples/project/get-variable.md index 2b39e1048..512724ab1 100644 --- a/examples/1.9.x/server-dart/examples/project/get-variable.md +++ b/examples/1.9.x/server-dart/examples/project/get-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/get.md b/examples/1.9.x/server-dart/examples/project/get.md index a2bfa10fc..eedc96644 100644 --- a/examples/1.9.x/server-dart/examples/project/get.md +++ b/examples/1.9.x/server-dart/examples/project/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/list-email-templates.md b/examples/1.9.x/server-dart/examples/project/list-email-templates.md index 0bd9ee7eb..eb553b64b 100644 --- a/examples/1.9.x/server-dart/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-dart/examples/project/list-email-templates.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/list-keys.md b/examples/1.9.x/server-dart/examples/project/list-keys.md index 6002f7289..68e17a84a 100644 --- a/examples/1.9.x/server-dart/examples/project/list-keys.md +++ b/examples/1.9.x/server-dart/examples/project/list-keys.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/list-mock-phones.md b/examples/1.9.x/server-dart/examples/project/list-mock-phones.md index dac643971..88565642b 100644 --- a/examples/1.9.x/server-dart/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-dart/examples/project/list-mock-phones.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-dart/examples/project/list-o-auth-2-providers.md index b69c52731..ad4885ea0 100644 --- a/examples/1.9.x/server-dart/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-dart/examples/project/list-o-auth-2-providers.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/list-platforms.md b/examples/1.9.x/server-dart/examples/project/list-platforms.md index 9333ae36b..59ea9c393 100644 --- a/examples/1.9.x/server-dart/examples/project/list-platforms.md +++ b/examples/1.9.x/server-dart/examples/project/list-platforms.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/list-policies.md b/examples/1.9.x/server-dart/examples/project/list-policies.md index 5aba661cf..2075ee739 100644 --- a/examples/1.9.x/server-dart/examples/project/list-policies.md +++ b/examples/1.9.x/server-dart/examples/project/list-policies.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/list-variables.md b/examples/1.9.x/server-dart/examples/project/list-variables.md index ae5b52705..7719a12ab 100644 --- a/examples/1.9.x/server-dart/examples/project/list-variables.md +++ b/examples/1.9.x/server-dart/examples/project/list-variables.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-android-platform.md b/examples/1.9.x/server-dart/examples/project/update-android-platform.md index ee6eccf6a..78c871304 100644 --- a/examples/1.9.x/server-dart/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-dart/examples/project/update-android-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-apple-platform.md b/examples/1.9.x/server-dart/examples/project/update-apple-platform.md index 8feb3093f..50471a04c 100644 --- a/examples/1.9.x/server-dart/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-dart/examples/project/update-apple-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-auth-method.md b/examples/1.9.x/server-dart/examples/project/update-auth-method.md index 167c591a0..c1a3b5422 100644 --- a/examples/1.9.x/server-dart/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-dart/examples/project/update-auth-method.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-dart/examples/project/update-deny-aliased-email-policy.md index 78eb7db44..7beff96e5 100644 --- a/examples/1.9.x/server-dart/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-deny-aliased-email-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-dart/examples/project/update-deny-disposable-email-policy.md index 85fcc50d9..7a3a40155 100644 --- a/examples/1.9.x/server-dart/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-deny-disposable-email-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-dart/examples/project/update-deny-free-email-policy.md index 23f7bb156..43f6295b3 100644 --- a/examples/1.9.x/server-dart/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-deny-free-email-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-email-template.md b/examples/1.9.x/server-dart/examples/project/update-email-template.md index 15f0a8fa7..fb3da1a56 100644 --- a/examples/1.9.x/server-dart/examples/project/update-email-template.md +++ b/examples/1.9.x/server-dart/examples/project/update-email-template.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-key.md b/examples/1.9.x/server-dart/examples/project/update-key.md index b15aa92f4..db1e0526a 100644 --- a/examples/1.9.x/server-dart/examples/project/update-key.md +++ b/examples/1.9.x/server-dart/examples/project/update-key.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-labels.md b/examples/1.9.x/server-dart/examples/project/update-labels.md index ec1b51ce3..8e500630f 100644 --- a/examples/1.9.x/server-dart/examples/project/update-labels.md +++ b/examples/1.9.x/server-dart/examples/project/update-labels.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-linux-platform.md b/examples/1.9.x/server-dart/examples/project/update-linux-platform.md index c93fe7a6a..b24dd756a 100644 --- a/examples/1.9.x/server-dart/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-dart/examples/project/update-linux-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-dart/examples/project/update-membership-privacy-policy.md index df34e2c4c..8fdb131f4 100644 --- a/examples/1.9.x/server-dart/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-membership-privacy-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-mock-phone.md b/examples/1.9.x/server-dart/examples/project/update-mock-phone.md index 3f584d210..25c228641 100644 --- a/examples/1.9.x/server-dart/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-dart/examples/project/update-mock-phone.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-amazon.md index 1821f5d89..a2bf69bb5 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-amazon.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-apple.md index 06f506e59..53b0de346 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-apple.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-auth-0.md index e00a59761..84622fca9 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-auth-0.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-authentik.md index 734702733..18673b42c 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-authentik.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-autodesk.md index 1273e6e4c..8c2bc946d 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-autodesk.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-bitbucket.md index 2f9274a08..1d778771c 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-bitbucket.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-bitly.md index 5f03c82e8..95153782d 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-bitly.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-box.md index b00ab7c58..35afee548 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-box.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-dailymotion.md index 1117cf853..00b8cb4da 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-dailymotion.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-discord.md index 7e06450d2..0e7981feb 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-discord.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-disqus.md index 42d62a827..1338ad22f 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-disqus.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-dropbox.md index 200829125..3d67052f9 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-dropbox.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-etsy.md index 3e6118a1c..e41ae1b14 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-etsy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-facebook.md index 48d282a98..54d976a6d 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-facebook.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-figma.md index 1b80d0e56..8371510c6 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-figma.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-fusion-auth.md index 73c41171d..520a28505 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-fusion-auth.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-git-hub.md index e2830382e..02df74b93 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-git-hub.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-gitlab.md index 1d7418d95..2839e3a8f 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-gitlab.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-google.md index 8c563f6bd..1d42faeb9 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-google.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-keycloak.md index b7195b82c..0da47719c 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-keycloak.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-kick.md index 5cfdf9a4a..f6d5aeaae 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-kick.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-linkedin.md index d69f1eaa3..3b927841e 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-linkedin.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-microsoft.md index 7f1aa6ca9..8c50b605f 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-microsoft.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-notion.md index ba723ccc5..c8592d90c 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-notion.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-oidc.md index 4784bf46b..27db38a06 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-oidc.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-okta.md index 1b79a5e6a..950300269 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-okta.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-paypal-sandbox.md index eda05f5e6..d774022ea 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-paypal-sandbox.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-paypal.md index 120b58170..efbad811e 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-paypal.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-podio.md index 9b5ee737b..834675106 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-podio.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-salesforce.md index 6be026b45..6d9e4fcb0 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-salesforce.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-slack.md index 1032810c6..ced78b9f5 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-slack.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-spotify.md index 8e7f98347..046b1247c 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-spotify.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-stripe.md index 367466733..2543ce328 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-stripe.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-tradeshift-sandbox.md index 653abf6eb..415032cb8 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-tradeshift.md index 1e780bfc0..f07257cdf 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-tradeshift.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-twitch.md index 93d29acdc..67fa0869c 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-twitch.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-word-press.md index 32e3495a3..e32bca1c3 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-word-press.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-yahoo.md index f08d50749..4049a3f06 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-yahoo.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-yandex.md index 4106fe67b..d0afc7298 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-yandex.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-zoho.md index 69d44d8a2..52b613bf5 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-zoho.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-zoom.md index d91ddcbde..0e4ff8582 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2-zoom.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-dart/examples/project/update-o-auth-2x.md index bf7e5f622..c76e991b2 100644 --- a/examples/1.9.x/server-dart/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-dart/examples/project/update-o-auth-2x.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-dart/examples/project/update-password-dictionary-policy.md index 9d07cff39..03ebfbf23 100644 --- a/examples/1.9.x/server-dart/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-password-dictionary-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-password-history-policy.md b/examples/1.9.x/server-dart/examples/project/update-password-history-policy.md index 2d5ca13e3..208c3b746 100644 --- a/examples/1.9.x/server-dart/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-password-history-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-dart/examples/project/update-password-personal-data-policy.md index 51680b7d5..fff09e531 100644 --- a/examples/1.9.x/server-dart/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-password-personal-data-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-protocol.md b/examples/1.9.x/server-dart/examples/project/update-protocol.md index 261273d65..6e7c7a7c3 100644 --- a/examples/1.9.x/server-dart/examples/project/update-protocol.md +++ b/examples/1.9.x/server-dart/examples/project/update-protocol.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-service.md b/examples/1.9.x/server-dart/examples/project/update-service.md index 2d4f71526..40933b948 100644 --- a/examples/1.9.x/server-dart/examples/project/update-service.md +++ b/examples/1.9.x/server-dart/examples/project/update-service.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-dart/examples/project/update-session-alert-policy.md index a3d892f02..4c1801761 100644 --- a/examples/1.9.x/server-dart/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-session-alert-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-dart/examples/project/update-session-duration-policy.md index 5b1022949..d2a16b272 100644 --- a/examples/1.9.x/server-dart/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-session-duration-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-dart/examples/project/update-session-invalidation-policy.md index e38b5180d..ada4b952c 100644 --- a/examples/1.9.x/server-dart/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-session-invalidation-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-dart/examples/project/update-session-limit-policy.md index 8726970e7..962797376 100644 --- a/examples/1.9.x/server-dart/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-session-limit-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-smtp.md b/examples/1.9.x/server-dart/examples/project/update-smtp.md index c688371c6..241f1a076 100644 --- a/examples/1.9.x/server-dart/examples/project/update-smtp.md +++ b/examples/1.9.x/server-dart/examples/project/update-smtp.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-dart/examples/project/update-user-limit-policy.md index b423abbed..b92ae4f24 100644 --- a/examples/1.9.x/server-dart/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-dart/examples/project/update-user-limit-policy.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-variable.md b/examples/1.9.x/server-dart/examples/project/update-variable.md index eef236d53..8f6f0f529 100644 --- a/examples/1.9.x/server-dart/examples/project/update-variable.md +++ b/examples/1.9.x/server-dart/examples/project/update-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-web-platform.md b/examples/1.9.x/server-dart/examples/project/update-web-platform.md index 5de1cdc9c..a8a22ac51 100644 --- a/examples/1.9.x/server-dart/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-dart/examples/project/update-web-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/project/update-windows-platform.md b/examples/1.9.x/server-dart/examples/project/update-windows-platform.md index 306d00248..930e2bcc0 100644 --- a/examples/1.9.x/server-dart/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-dart/examples/project/update-windows-platform.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/proxy/create-api-rule.md b/examples/1.9.x/server-dart/examples/proxy/create-api-rule.md index cb63b308b..8909d269d 100644 --- a/examples/1.9.x/server-dart/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-dart/examples/proxy/create-api-rule.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/proxy/create-function-rule.md b/examples/1.9.x/server-dart/examples/proxy/create-function-rule.md index 64bbbab21..7384ecb7f 100644 --- a/examples/1.9.x/server-dart/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-dart/examples/proxy/create-function-rule.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-dart/examples/proxy/create-redirect-rule.md index 313571628..09fdd8d65 100644 --- a/examples/1.9.x/server-dart/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-dart/examples/proxy/create-redirect-rule.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -12,7 +12,7 @@ Proxy proxy = Proxy(client); ProxyRule result = await proxy.createRedirectRule( domain: '', url: 'https://example.com', - statusCode: enums.StatusCode.movedPermanently301, + statusCode: enums.RedirectStatusCode.movedPermanently, resourceId: '', resourceType: enums.ProxyResourceType.site, ); diff --git a/examples/1.9.x/server-dart/examples/proxy/create-site-rule.md b/examples/1.9.x/server-dart/examples/proxy/create-site-rule.md index 912c2acdb..f3b057e12 100644 --- a/examples/1.9.x/server-dart/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-dart/examples/proxy/create-site-rule.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/proxy/delete-rule.md b/examples/1.9.x/server-dart/examples/proxy/delete-rule.md index 6829f2a1f..04be33f31 100644 --- a/examples/1.9.x/server-dart/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-dart/examples/proxy/delete-rule.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/proxy/get-rule.md b/examples/1.9.x/server-dart/examples/proxy/get-rule.md index 6ade16472..8382197fd 100644 --- a/examples/1.9.x/server-dart/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-dart/examples/proxy/get-rule.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/proxy/list-rules.md b/examples/1.9.x/server-dart/examples/proxy/list-rules.md index 29931d1d3..e6106ba7a 100644 --- a/examples/1.9.x/server-dart/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-dart/examples/proxy/list-rules.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/proxy/update-rule-status.md b/examples/1.9.x/server-dart/examples/proxy/update-rule-status.md index 00c62dffa..cf525d482 100644 --- a/examples/1.9.x/server-dart/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-dart/examples/proxy/update-rule-status.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/create-deployment.md b/examples/1.9.x/server-dart/examples/sites/create-deployment.md index 261c04fe9..f2f909056 100644 --- a/examples/1.9.x/server-dart/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-dart/examples/sites/create-deployment.md @@ -3,7 +3,7 @@ import 'dart:io'; import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-dart/examples/sites/create-duplicate-deployment.md index 6844d143c..7bd3b1ac7 100644 --- a/examples/1.9.x/server-dart/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-dart/examples/sites/create-duplicate-deployment.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/create-template-deployment.md b/examples/1.9.x/server-dart/examples/sites/create-template-deployment.md index a0d9004e2..91436bf6e 100644 --- a/examples/1.9.x/server-dart/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-dart/examples/sites/create-template-deployment.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/create-variable.md b/examples/1.9.x/server-dart/examples/sites/create-variable.md index 0144bec00..13de85eca 100644 --- a/examples/1.9.x/server-dart/examples/sites/create-variable.md +++ b/examples/1.9.x/server-dart/examples/sites/create-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-dart/examples/sites/create-vcs-deployment.md index a4fe7f8db..6c3b78c61 100644 --- a/examples/1.9.x/server-dart/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-dart/examples/sites/create-vcs-deployment.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/create.md b/examples/1.9.x/server-dart/examples/sites/create.md index 39cd36018..13858f5b6 100644 --- a/examples/1.9.x/server-dart/examples/sites/create.md +++ b/examples/1.9.x/server-dart/examples/sites/create.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -12,8 +12,8 @@ Sites sites = Sites(client); Site result = await sites.create( siteId: '', name: '', - framework: enums.Framework.analog, - buildRuntime: enums.BuildRuntime.node145, + framework: enums.SiteFramework.analog, + buildRuntime: enums.SiteBuildRuntime.node145, enabled: false, // (optional) logging: false, // (optional) timeout: 1, // (optional) @@ -21,13 +21,15 @@ Site result = await sites.create( buildCommand: '', // (optional) startCommand: '', // (optional) outputDirectory: '', // (optional) - adapter: enums.Adapter.static, // (optional) + adapter: enums.SiteAdapter.static, // (optional) installationId: '', // (optional) fallbackFile: '', // (optional) providerRepositoryId: '', // (optional) providerBranch: '', // (optional) providerSilentMode: false, // (optional) providerRootDirectory: '', // (optional) + providerBranches: [], // (optional) + providerPaths: [], // (optional) buildSpecification: '', // (optional) runtimeSpecification: '', // (optional) deploymentRetention: 0, // (optional) diff --git a/examples/1.9.x/server-dart/examples/sites/delete-deployment.md b/examples/1.9.x/server-dart/examples/sites/delete-deployment.md index 0a847f0a0..227d720b8 100644 --- a/examples/1.9.x/server-dart/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-dart/examples/sites/delete-deployment.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/delete-log.md b/examples/1.9.x/server-dart/examples/sites/delete-log.md index 93b7d29a1..45ba27286 100644 --- a/examples/1.9.x/server-dart/examples/sites/delete-log.md +++ b/examples/1.9.x/server-dart/examples/sites/delete-log.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/delete-variable.md b/examples/1.9.x/server-dart/examples/sites/delete-variable.md index 46caceb2d..239a404be 100644 --- a/examples/1.9.x/server-dart/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-dart/examples/sites/delete-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/delete.md b/examples/1.9.x/server-dart/examples/sites/delete.md index 059e1dbd6..72903a9d3 100644 --- a/examples/1.9.x/server-dart/examples/sites/delete.md +++ b/examples/1.9.x/server-dart/examples/sites/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/get-deployment-download.md b/examples/1.9.x/server-dart/examples/sites/get-deployment-download.md index b9e4baa1d..253f498df 100644 --- a/examples/1.9.x/server-dart/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-dart/examples/sites/get-deployment-download.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/get-deployment.md b/examples/1.9.x/server-dart/examples/sites/get-deployment.md index baaae7e75..ac1a584c6 100644 --- a/examples/1.9.x/server-dart/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-dart/examples/sites/get-deployment.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/get-log.md b/examples/1.9.x/server-dart/examples/sites/get-log.md index b7e12b992..40619848c 100644 --- a/examples/1.9.x/server-dart/examples/sites/get-log.md +++ b/examples/1.9.x/server-dart/examples/sites/get-log.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/get-variable.md b/examples/1.9.x/server-dart/examples/sites/get-variable.md index 6da082bef..66ebd946f 100644 --- a/examples/1.9.x/server-dart/examples/sites/get-variable.md +++ b/examples/1.9.x/server-dart/examples/sites/get-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/get.md b/examples/1.9.x/server-dart/examples/sites/get.md index 148689b73..f99fdcfec 100644 --- a/examples/1.9.x/server-dart/examples/sites/get.md +++ b/examples/1.9.x/server-dart/examples/sites/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/list-deployments.md b/examples/1.9.x/server-dart/examples/sites/list-deployments.md index eef8e7d64..48192e9b4 100644 --- a/examples/1.9.x/server-dart/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-dart/examples/sites/list-deployments.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/list-frameworks.md b/examples/1.9.x/server-dart/examples/sites/list-frameworks.md index b3e9bd8b0..ec4dd1d84 100644 --- a/examples/1.9.x/server-dart/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-dart/examples/sites/list-frameworks.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/list-logs.md b/examples/1.9.x/server-dart/examples/sites/list-logs.md index a95b29ac6..19f8e400e 100644 --- a/examples/1.9.x/server-dart/examples/sites/list-logs.md +++ b/examples/1.9.x/server-dart/examples/sites/list-logs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/list-specifications.md b/examples/1.9.x/server-dart/examples/sites/list-specifications.md index d1ba26edf..ecb252675 100644 --- a/examples/1.9.x/server-dart/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-dart/examples/sites/list-specifications.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/list-variables.md b/examples/1.9.x/server-dart/examples/sites/list-variables.md index 2f226ed6f..368d0ef6b 100644 --- a/examples/1.9.x/server-dart/examples/sites/list-variables.md +++ b/examples/1.9.x/server-dart/examples/sites/list-variables.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/list.md b/examples/1.9.x/server-dart/examples/sites/list.md index a9860af6d..f5fed7b09 100644 --- a/examples/1.9.x/server-dart/examples/sites/list.md +++ b/examples/1.9.x/server-dart/examples/sites/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/update-deployment-status.md b/examples/1.9.x/server-dart/examples/sites/update-deployment-status.md index 01a22596e..915f9d444 100644 --- a/examples/1.9.x/server-dart/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-dart/examples/sites/update-deployment-status.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/update-site-deployment.md b/examples/1.9.x/server-dart/examples/sites/update-site-deployment.md index 6139981e8..8317c98f2 100644 --- a/examples/1.9.x/server-dart/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-dart/examples/sites/update-site-deployment.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/update-variable.md b/examples/1.9.x/server-dart/examples/sites/update-variable.md index 24a135ead..cecfdb65b 100644 --- a/examples/1.9.x/server-dart/examples/sites/update-variable.md +++ b/examples/1.9.x/server-dart/examples/sites/update-variable.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/sites/update.md b/examples/1.9.x/server-dart/examples/sites/update.md index ba6036c5a..820d85cbe 100644 --- a/examples/1.9.x/server-dart/examples/sites/update.md +++ b/examples/1.9.x/server-dart/examples/sites/update.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -12,7 +12,7 @@ Sites sites = Sites(client); Site result = await sites.update( siteId: '', name: '', - framework: enums.Framework.analog, + framework: enums.SiteFramework.analog, enabled: false, // (optional) logging: false, // (optional) timeout: 1, // (optional) @@ -20,14 +20,16 @@ Site result = await sites.update( buildCommand: '', // (optional) startCommand: '', // (optional) outputDirectory: '', // (optional) - buildRuntime: enums.BuildRuntime.node145, // (optional) - adapter: enums.Adapter.static, // (optional) + buildRuntime: enums.SiteBuildRuntime.node145, // (optional) + adapter: enums.SiteAdapter.static, // (optional) fallbackFile: '', // (optional) installationId: '', // (optional) providerRepositoryId: '', // (optional) providerBranch: '', // (optional) providerSilentMode: false, // (optional) providerRootDirectory: '', // (optional) + providerBranches: [], // (optional) + providerPaths: [], // (optional) buildSpecification: '', // (optional) runtimeSpecification: '', // (optional) deploymentRetention: 0, // (optional) diff --git a/examples/1.9.x/server-dart/examples/storage/create-bucket.md b/examples/1.9.x/server-dart/examples/storage/create-bucket.md index 6f634a984..be49d84f1 100644 --- a/examples/1.9.x/server-dart/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-dart/examples/storage/create-bucket.md @@ -5,7 +5,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/storage/create-file.md b/examples/1.9.x/server-dart/examples/storage/create-file.md index fe16a41f1..a2b153e44 100644 --- a/examples/1.9.x/server-dart/examples/storage/create-file.md +++ b/examples/1.9.x/server-dart/examples/storage/create-file.md @@ -5,7 +5,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/storage/delete-bucket.md b/examples/1.9.x/server-dart/examples/storage/delete-bucket.md index 041612f86..b0e52cf52 100644 --- a/examples/1.9.x/server-dart/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-dart/examples/storage/delete-bucket.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/storage/delete-file.md b/examples/1.9.x/server-dart/examples/storage/delete-file.md index b52b5f918..255bfddb6 100644 --- a/examples/1.9.x/server-dart/examples/storage/delete-file.md +++ b/examples/1.9.x/server-dart/examples/storage/delete-file.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/storage/get-bucket.md b/examples/1.9.x/server-dart/examples/storage/get-bucket.md index e5e2ed721..64e5928de 100644 --- a/examples/1.9.x/server-dart/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-dart/examples/storage/get-bucket.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/storage/get-file-download.md b/examples/1.9.x/server-dart/examples/storage/get-file-download.md index 3eefb650e..bdc805f8b 100644 --- a/examples/1.9.x/server-dart/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-dart/examples/storage/get-file-download.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/storage/get-file-preview.md b/examples/1.9.x/server-dart/examples/storage/get-file-preview.md index 382080fb0..6135d7b82 100644 --- a/examples/1.9.x/server-dart/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-dart/examples/storage/get-file-preview.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/storage/get-file-view.md b/examples/1.9.x/server-dart/examples/storage/get-file-view.md index 63cd86995..c56296533 100644 --- a/examples/1.9.x/server-dart/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-dart/examples/storage/get-file-view.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/storage/get-file.md b/examples/1.9.x/server-dart/examples/storage/get-file.md index bc5272c54..a56591fca 100644 --- a/examples/1.9.x/server-dart/examples/storage/get-file.md +++ b/examples/1.9.x/server-dart/examples/storage/get-file.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/storage/list-buckets.md b/examples/1.9.x/server-dart/examples/storage/list-buckets.md index 0b76ac287..af1b9048c 100644 --- a/examples/1.9.x/server-dart/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-dart/examples/storage/list-buckets.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/storage/list-files.md b/examples/1.9.x/server-dart/examples/storage/list-files.md index ad417224e..70572a10a 100644 --- a/examples/1.9.x/server-dart/examples/storage/list-files.md +++ b/examples/1.9.x/server-dart/examples/storage/list-files.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/storage/update-bucket.md b/examples/1.9.x/server-dart/examples/storage/update-bucket.md index c796c34c0..37b184b7b 100644 --- a/examples/1.9.x/server-dart/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-dart/examples/storage/update-bucket.md @@ -5,7 +5,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/storage/update-file.md b/examples/1.9.x/server-dart/examples/storage/update-file.md index 4b3c3ac86..c724995b6 100644 --- a/examples/1.9.x/server-dart/examples/storage/update-file.md +++ b/examples/1.9.x/server-dart/examples/storage/update-file.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-big-int-column.md index c5d2656a1..5e2bdb177 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-big-int-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-boolean-column.md index aabbee035..32df95025 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-boolean-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-datetime-column.md index 37d7b058d..9cde7b7cf 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-datetime-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-email-column.md index dc323278e..529a500a4 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-email-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-enum-column.md index e1ff3a863..a521b4386 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-enum-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-float-column.md index 19a857257..825248f22 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-float-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-index.md b/examples/1.9.x/server-dart/examples/tablesdb/create-index.md index 2d8ab9ee8..73c516422 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-index.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-integer-column.md index 98bd9c575..6b6f6756f 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-integer-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-ip-column.md index 82d5a8612..f2335e63d 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-ip-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-line-column.md index 7f260d9f2..b2b3216a8 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-line-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-longtext-column.md index cacc92f5b..a8e5c0601 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-longtext-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-mediumtext-column.md index bdc012732..193060613 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-mediumtext-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-operations.md b/examples/1.9.x/server-dart/examples/tablesdb/create-operations.md index 359982dad..40ffb4b86 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-operations.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-point-column.md index 0ca5f6c5a..46aa44f17 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-point-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-polygon-column.md index 9046bbd7b..40813162c 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-polygon-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-relationship-column.md index c9a535907..fc9cd4f21 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-relationship-column.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-row.md b/examples/1.9.x/server-dart/examples/tablesdb/create-row.md index 589d98ff1..d14324341 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-row.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-rows.md b/examples/1.9.x/server-dart/examples/tablesdb/create-rows.md index afa7629da..d3f3f1aec 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-rows.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-string-column.md index 18b638853..1dab6acbf 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-string-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-table.md b/examples/1.9.x/server-dart/examples/tablesdb/create-table.md index e4563135c..600f6d0f9 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-table.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-text-column.md index d5ad420c6..a358a3715 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-text-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-dart/examples/tablesdb/create-transaction.md index bb779b8c2..b32228f13 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-transaction.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-url-column.md index 19a1cdef7..9cabb8a48 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-url-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-dart/examples/tablesdb/create-varchar-column.md index 1b1597e7e..d3ca17f92 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create-varchar-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/create.md b/examples/1.9.x/server-dart/examples/tablesdb/create.md index 3c85e98f5..d2cdd82de 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/create.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/create.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-dart/examples/tablesdb/decrement-row-column.md index dae6b6233..c6aa02479 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/decrement-row-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/delete-column.md b/examples/1.9.x/server-dart/examples/tablesdb/delete-column.md index 9995ae0b4..a48a7426e 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/delete-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/delete-index.md b/examples/1.9.x/server-dart/examples/tablesdb/delete-index.md index f3c16e1e6..0edc831ca 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/delete-index.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/delete-row.md b/examples/1.9.x/server-dart/examples/tablesdb/delete-row.md index 1cf058fd5..c8a3b190f 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/delete-row.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-dart/examples/tablesdb/delete-rows.md index 443aee01f..6a4bc20b4 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/delete-rows.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/delete-table.md b/examples/1.9.x/server-dart/examples/tablesdb/delete-table.md index 046c8c941..5bdd8c656 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/delete-table.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-dart/examples/tablesdb/delete-transaction.md index 18bdc902b..ae1695b16 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/delete-transaction.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/delete.md b/examples/1.9.x/server-dart/examples/tablesdb/delete.md index 7001ddaa8..41898c5ea 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/get-column.md b/examples/1.9.x/server-dart/examples/tablesdb/get-column.md index fe45005c4..f1bf57414 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/get-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/get-index.md b/examples/1.9.x/server-dart/examples/tablesdb/get-index.md index e0f6b03bf..457fbb154 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/get-index.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/get-row.md b/examples/1.9.x/server-dart/examples/tablesdb/get-row.md index 11a7d67b8..0d48552bb 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/get-row.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/get-table.md b/examples/1.9.x/server-dart/examples/tablesdb/get-table.md index 81eed7f1b..fdf030b2c 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/get-table.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-dart/examples/tablesdb/get-transaction.md index ffe133298..fb9486e23 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/get-transaction.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/get.md b/examples/1.9.x/server-dart/examples/tablesdb/get.md index 24412ad11..4ada7ce6c 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/get.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-dart/examples/tablesdb/increment-row-column.md index 57e9c5bca..201020a89 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/increment-row-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/list-columns.md b/examples/1.9.x/server-dart/examples/tablesdb/list-columns.md index 7c2200768..d9e34d078 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/list-columns.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-dart/examples/tablesdb/list-indexes.md index 669bbb3a2..2f6fbd495 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/list-indexes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/list-rows.md b/examples/1.9.x/server-dart/examples/tablesdb/list-rows.md index 863e461ee..81ee67c95 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/list-rows.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/list-tables.md b/examples/1.9.x/server-dart/examples/tablesdb/list-tables.md index b640527ba..67c54cfbc 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/list-tables.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-dart/examples/tablesdb/list-transactions.md index fa4782b5b..e7e7f4df4 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/list-transactions.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/list.md b/examples/1.9.x/server-dart/examples/tablesdb/list.md index ef6722782..3282d8ff9 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/list.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-big-int-column.md index c96db0d00..315778d6d 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-big-int-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-boolean-column.md index d3ab8b357..4fce83a54 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-boolean-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-datetime-column.md index 9f4915da6..50e0fd838 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-datetime-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-email-column.md index 40927640f..8ebf44eb2 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-email-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-enum-column.md index 8499b864a..cb003ab53 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-enum-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-float-column.md index 5a0c0a5d1..f1ff6a2ea 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-float-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-integer-column.md index 260c4a254..cbe655f5c 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-integer-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-ip-column.md index 5b4ff1411..8266c501d 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-ip-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-line-column.md index 9d19a8d04..aca108d8a 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-line-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-longtext-column.md index 571a4c56d..baf85ca72 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-longtext-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-mediumtext-column.md index d3daabb39..b53c53a37 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-mediumtext-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-point-column.md index c51e19dbd..5927e9108 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-point-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-polygon-column.md index 3b2aa8a9b..a329d365a 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-polygon-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-relationship-column.md index bdaac70d0..17cb91224 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-relationship-column.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-row.md b/examples/1.9.x/server-dart/examples/tablesdb/update-row.md index 514f740b5..d952e3aea 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-row.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-rows.md b/examples/1.9.x/server-dart/examples/tablesdb/update-rows.md index 3d3730bce..aecb987c6 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-rows.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-string-column.md index ba3f1c7d5..39a46dc44 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-string-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-table.md b/examples/1.9.x/server-dart/examples/tablesdb/update-table.md index 217da3f41..881d85ef5 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-table.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-text-column.md index aca63e048..7db5f2e82 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-text-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-dart/examples/tablesdb/update-transaction.md index fbcafc8ab..388ede970 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-transaction.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-url-column.md index db522a0c4..f74dbaa1c 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-url-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-dart/examples/tablesdb/update-varchar-column.md index 93b56a85d..0df30dceb 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update-varchar-column.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/update.md b/examples/1.9.x/server-dart/examples/tablesdb/update.md index ad85b595f..b156deeba 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/update.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/update.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-dart/examples/tablesdb/upsert-row.md index 21f2734b2..d5667e448 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/upsert-row.md @@ -4,7 +4,7 @@ import 'package:dart_appwrite/permission.dart'; import 'package:dart_appwrite/role.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-dart/examples/tablesdb/upsert-rows.md index a457f5e88..8b203c795 100644 --- a/examples/1.9.x/server-dart/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-dart/examples/tablesdb/upsert-rows.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/teams/create-membership.md b/examples/1.9.x/server-dart/examples/teams/create-membership.md index 8f95362a7..fcd56d891 100644 --- a/examples/1.9.x/server-dart/examples/teams/create-membership.md +++ b/examples/1.9.x/server-dart/examples/teams/create-membership.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/create.md b/examples/1.9.x/server-dart/examples/teams/create.md index 61bb5daa3..1419c0e99 100644 --- a/examples/1.9.x/server-dart/examples/teams/create.md +++ b/examples/1.9.x/server-dart/examples/teams/create.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/delete-membership.md b/examples/1.9.x/server-dart/examples/teams/delete-membership.md index 5c63224f6..a08f2364c 100644 --- a/examples/1.9.x/server-dart/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-dart/examples/teams/delete-membership.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/delete.md b/examples/1.9.x/server-dart/examples/teams/delete.md index 8cb4181a0..5aad7c4f8 100644 --- a/examples/1.9.x/server-dart/examples/teams/delete.md +++ b/examples/1.9.x/server-dart/examples/teams/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/get-membership.md b/examples/1.9.x/server-dart/examples/teams/get-membership.md index b7a8200a8..e3bd6f9b4 100644 --- a/examples/1.9.x/server-dart/examples/teams/get-membership.md +++ b/examples/1.9.x/server-dart/examples/teams/get-membership.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/get-prefs.md b/examples/1.9.x/server-dart/examples/teams/get-prefs.md index 482390cf6..382906b7f 100644 --- a/examples/1.9.x/server-dart/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-dart/examples/teams/get-prefs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/get.md b/examples/1.9.x/server-dart/examples/teams/get.md index cd426afcb..754a0dd2c 100644 --- a/examples/1.9.x/server-dart/examples/teams/get.md +++ b/examples/1.9.x/server-dart/examples/teams/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/list-memberships.md b/examples/1.9.x/server-dart/examples/teams/list-memberships.md index 2f6400d9a..da3e1b83f 100644 --- a/examples/1.9.x/server-dart/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-dart/examples/teams/list-memberships.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/list.md b/examples/1.9.x/server-dart/examples/teams/list.md index b056968ec..a2325a015 100644 --- a/examples/1.9.x/server-dart/examples/teams/list.md +++ b/examples/1.9.x/server-dart/examples/teams/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/update-membership-status.md b/examples/1.9.x/server-dart/examples/teams/update-membership-status.md index a5ec5e1c0..389a472b3 100644 --- a/examples/1.9.x/server-dart/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-dart/examples/teams/update-membership-status.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/update-membership.md b/examples/1.9.x/server-dart/examples/teams/update-membership.md index 961def983..bdf49afcc 100644 --- a/examples/1.9.x/server-dart/examples/teams/update-membership.md +++ b/examples/1.9.x/server-dart/examples/teams/update-membership.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/update-name.md b/examples/1.9.x/server-dart/examples/teams/update-name.md index 84069773e..723868613 100644 --- a/examples/1.9.x/server-dart/examples/teams/update-name.md +++ b/examples/1.9.x/server-dart/examples/teams/update-name.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/teams/update-prefs.md b/examples/1.9.x/server-dart/examples/teams/update-prefs.md index e51b2da05..7f8f92756 100644 --- a/examples/1.9.x/server-dart/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-dart/examples/teams/update-prefs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-dart/examples/tokens/create-file-token.md b/examples/1.9.x/server-dart/examples/tokens/create-file-token.md index 5348736a2..1988f40f0 100644 --- a/examples/1.9.x/server-dart/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-dart/examples/tokens/create-file-token.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tokens/delete.md b/examples/1.9.x/server-dart/examples/tokens/delete.md index b5541b0e3..ebfb330b6 100644 --- a/examples/1.9.x/server-dart/examples/tokens/delete.md +++ b/examples/1.9.x/server-dart/examples/tokens/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tokens/get.md b/examples/1.9.x/server-dart/examples/tokens/get.md index 53bbd181e..0a52395f7 100644 --- a/examples/1.9.x/server-dart/examples/tokens/get.md +++ b/examples/1.9.x/server-dart/examples/tokens/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tokens/list.md b/examples/1.9.x/server-dart/examples/tokens/list.md index 17fb2ff80..f0af419a4 100644 --- a/examples/1.9.x/server-dart/examples/tokens/list.md +++ b/examples/1.9.x/server-dart/examples/tokens/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/tokens/update.md b/examples/1.9.x/server-dart/examples/tokens/update.md index 6c0eb572a..25d7a01ee 100644 --- a/examples/1.9.x/server-dart/examples/tokens/update.md +++ b/examples/1.9.x/server-dart/examples/tokens/update.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/usage/list-events.md b/examples/1.9.x/server-dart/examples/usage/list-events.md index c679b764f..88fd80e59 100644 --- a/examples/1.9.x/server-dart/examples/usage/list-events.md +++ b/examples/1.9.x/server-dart/examples/usage/list-events.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/usage/list-gauges.md b/examples/1.9.x/server-dart/examples/usage/list-gauges.md index c0c334e49..cb4fdef49 100644 --- a/examples/1.9.x/server-dart/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-dart/examples/usage/list-gauges.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-argon-2-user.md b/examples/1.9.x/server-dart/examples/users/create-argon-2-user.md index 2cddf2fa6..eb6950e88 100644 --- a/examples/1.9.x/server-dart/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-dart/examples/users/create-argon-2-user.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-dart/examples/users/create-bcrypt-user.md index ca5bdf564..ea981e586 100644 --- a/examples/1.9.x/server-dart/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-dart/examples/users/create-bcrypt-user.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-jwt.md b/examples/1.9.x/server-dart/examples/users/create-jwt.md index 42e74d958..3b3633232 100644 --- a/examples/1.9.x/server-dart/examples/users/create-jwt.md +++ b/examples/1.9.x/server-dart/examples/users/create-jwt.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-md-5-user.md b/examples/1.9.x/server-dart/examples/users/create-md-5-user.md index 490b26a6e..d98cddb93 100644 --- a/examples/1.9.x/server-dart/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-dart/examples/users/create-md-5-user.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-dart/examples/users/create-mfa-recovery-codes.md index 9251cb504..6ca487fec 100644 --- a/examples/1.9.x/server-dart/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dart/examples/users/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-dart/examples/users/create-ph-pass-user.md index 74105bcf3..23b5cbdf3 100644 --- a/examples/1.9.x/server-dart/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-dart/examples/users/create-ph-pass-user.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-dart/examples/users/create-scrypt-modified-user.md index 5c6301854..c517e6d45 100644 --- a/examples/1.9.x/server-dart/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-dart/examples/users/create-scrypt-modified-user.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-scrypt-user.md b/examples/1.9.x/server-dart/examples/users/create-scrypt-user.md index 6c0427f01..c085f4458 100644 --- a/examples/1.9.x/server-dart/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-dart/examples/users/create-scrypt-user.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-session.md b/examples/1.9.x/server-dart/examples/users/create-session.md index f782dbefe..4a41032b4 100644 --- a/examples/1.9.x/server-dart/examples/users/create-session.md +++ b/examples/1.9.x/server-dart/examples/users/create-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-sha-user.md b/examples/1.9.x/server-dart/examples/users/create-sha-user.md index 65adca609..7abe5df8d 100644 --- a/examples/1.9.x/server-dart/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-dart/examples/users/create-sha-user.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-target.md b/examples/1.9.x/server-dart/examples/users/create-target.md index ea9c4014a..ca1317230 100644 --- a/examples/1.9.x/server-dart/examples/users/create-target.md +++ b/examples/1.9.x/server-dart/examples/users/create-target.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create-token.md b/examples/1.9.x/server-dart/examples/users/create-token.md index c79c21cc6..7d02e4b84 100644 --- a/examples/1.9.x/server-dart/examples/users/create-token.md +++ b/examples/1.9.x/server-dart/examples/users/create-token.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/create.md b/examples/1.9.x/server-dart/examples/users/create.md index 247460b4e..af0e7b596 100644 --- a/examples/1.9.x/server-dart/examples/users/create.md +++ b/examples/1.9.x/server-dart/examples/users/create.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/delete-identity.md b/examples/1.9.x/server-dart/examples/users/delete-identity.md index 6ec6cfa81..85c6a9fd5 100644 --- a/examples/1.9.x/server-dart/examples/users/delete-identity.md +++ b/examples/1.9.x/server-dart/examples/users/delete-identity.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-dart/examples/users/delete-mfa-authenticator.md index d33dd5f7d..c77c6c27a 100644 --- a/examples/1.9.x/server-dart/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-dart/examples/users/delete-mfa-authenticator.md @@ -3,7 +3,7 @@ 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 + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/delete-session.md b/examples/1.9.x/server-dart/examples/users/delete-session.md index d5555502f..dac287bfd 100644 --- a/examples/1.9.x/server-dart/examples/users/delete-session.md +++ b/examples/1.9.x/server-dart/examples/users/delete-session.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/delete-sessions.md b/examples/1.9.x/server-dart/examples/users/delete-sessions.md index cb84cac70..fdeb9e799 100644 --- a/examples/1.9.x/server-dart/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-dart/examples/users/delete-sessions.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/delete-target.md b/examples/1.9.x/server-dart/examples/users/delete-target.md index 86ade933f..53b5d4ede 100644 --- a/examples/1.9.x/server-dart/examples/users/delete-target.md +++ b/examples/1.9.x/server-dart/examples/users/delete-target.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/delete.md b/examples/1.9.x/server-dart/examples/users/delete.md index a10942744..a411ef944 100644 --- a/examples/1.9.x/server-dart/examples/users/delete.md +++ b/examples/1.9.x/server-dart/examples/users/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-dart/examples/users/get-mfa-recovery-codes.md index 72fb5b9eb..df4cd31b1 100644 --- a/examples/1.9.x/server-dart/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dart/examples/users/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/get-prefs.md b/examples/1.9.x/server-dart/examples/users/get-prefs.md index c8f314c6f..2929c5d4b 100644 --- a/examples/1.9.x/server-dart/examples/users/get-prefs.md +++ b/examples/1.9.x/server-dart/examples/users/get-prefs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/get-target.md b/examples/1.9.x/server-dart/examples/users/get-target.md index f765ada56..5a5b9e0b7 100644 --- a/examples/1.9.x/server-dart/examples/users/get-target.md +++ b/examples/1.9.x/server-dart/examples/users/get-target.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/get.md b/examples/1.9.x/server-dart/examples/users/get.md index 1ce98396b..56e5813ad 100644 --- a/examples/1.9.x/server-dart/examples/users/get.md +++ b/examples/1.9.x/server-dart/examples/users/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/list-identities.md b/examples/1.9.x/server-dart/examples/users/list-identities.md index a6d570f1e..6163a3536 100644 --- a/examples/1.9.x/server-dart/examples/users/list-identities.md +++ b/examples/1.9.x/server-dart/examples/users/list-identities.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/list-logs.md b/examples/1.9.x/server-dart/examples/users/list-logs.md index e206fc335..272c31935 100644 --- a/examples/1.9.x/server-dart/examples/users/list-logs.md +++ b/examples/1.9.x/server-dart/examples/users/list-logs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/list-memberships.md b/examples/1.9.x/server-dart/examples/users/list-memberships.md index b6b7f7cac..304d29755 100644 --- a/examples/1.9.x/server-dart/examples/users/list-memberships.md +++ b/examples/1.9.x/server-dart/examples/users/list-memberships.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/list-mfa-factors.md b/examples/1.9.x/server-dart/examples/users/list-mfa-factors.md index f8b1db82c..8190255d0 100644 --- a/examples/1.9.x/server-dart/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-dart/examples/users/list-mfa-factors.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/list-sessions.md b/examples/1.9.x/server-dart/examples/users/list-sessions.md index abbf7932c..ee4ef0bdb 100644 --- a/examples/1.9.x/server-dart/examples/users/list-sessions.md +++ b/examples/1.9.x/server-dart/examples/users/list-sessions.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/list-targets.md b/examples/1.9.x/server-dart/examples/users/list-targets.md index 3014b8de1..c76d80b1f 100644 --- a/examples/1.9.x/server-dart/examples/users/list-targets.md +++ b/examples/1.9.x/server-dart/examples/users/list-targets.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/list.md b/examples/1.9.x/server-dart/examples/users/list.md index bb00e0cfe..c272b43f4 100644 --- a/examples/1.9.x/server-dart/examples/users/list.md +++ b/examples/1.9.x/server-dart/examples/users/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-email-verification.md b/examples/1.9.x/server-dart/examples/users/update-email-verification.md index 636afc107..f10c913f8 100644 --- a/examples/1.9.x/server-dart/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-dart/examples/users/update-email-verification.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-email.md b/examples/1.9.x/server-dart/examples/users/update-email.md index 0bd3d61e1..6b1e1ddb3 100644 --- a/examples/1.9.x/server-dart/examples/users/update-email.md +++ b/examples/1.9.x/server-dart/examples/users/update-email.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-impersonator.md b/examples/1.9.x/server-dart/examples/users/update-impersonator.md index 6d1d96452..7e6e3dc76 100644 --- a/examples/1.9.x/server-dart/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-dart/examples/users/update-impersonator.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-labels.md b/examples/1.9.x/server-dart/examples/users/update-labels.md index efbf657d3..2455d1fc9 100644 --- a/examples/1.9.x/server-dart/examples/users/update-labels.md +++ b/examples/1.9.x/server-dart/examples/users/update-labels.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-dart/examples/users/update-mfa-recovery-codes.md index a08fc361d..714d8de0c 100644 --- a/examples/1.9.x/server-dart/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dart/examples/users/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-mfa.md b/examples/1.9.x/server-dart/examples/users/update-mfa.md index cd67922e9..4e434c514 100644 --- a/examples/1.9.x/server-dart/examples/users/update-mfa.md +++ b/examples/1.9.x/server-dart/examples/users/update-mfa.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-name.md b/examples/1.9.x/server-dart/examples/users/update-name.md index 4a67672d4..5c6d47e6a 100644 --- a/examples/1.9.x/server-dart/examples/users/update-name.md +++ b/examples/1.9.x/server-dart/examples/users/update-name.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-password.md b/examples/1.9.x/server-dart/examples/users/update-password.md index d4ea3a262..cdbd6fc9d 100644 --- a/examples/1.9.x/server-dart/examples/users/update-password.md +++ b/examples/1.9.x/server-dart/examples/users/update-password.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-phone-verification.md b/examples/1.9.x/server-dart/examples/users/update-phone-verification.md index 14f91aeb3..a152c7836 100644 --- a/examples/1.9.x/server-dart/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-dart/examples/users/update-phone-verification.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-phone.md b/examples/1.9.x/server-dart/examples/users/update-phone.md index 3eb43b1e1..4109f3a30 100644 --- a/examples/1.9.x/server-dart/examples/users/update-phone.md +++ b/examples/1.9.x/server-dart/examples/users/update-phone.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-prefs.md b/examples/1.9.x/server-dart/examples/users/update-prefs.md index e8b7e7e82..d97bc6a8e 100644 --- a/examples/1.9.x/server-dart/examples/users/update-prefs.md +++ b/examples/1.9.x/server-dart/examples/users/update-prefs.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-status.md b/examples/1.9.x/server-dart/examples/users/update-status.md index 3d4741872..b38774009 100644 --- a/examples/1.9.x/server-dart/examples/users/update-status.md +++ b/examples/1.9.x/server-dart/examples/users/update-status.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/users/update-target.md b/examples/1.9.x/server-dart/examples/users/update-target.md index f15e170fb..e5fa24348 100644 --- a/examples/1.9.x/server-dart/examples/users/update-target.md +++ b/examples/1.9.x/server-dart/examples/users/update-target.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/webhooks/create.md b/examples/1.9.x/server-dart/examples/webhooks/create.md index a401dffde..796733fad 100644 --- a/examples/1.9.x/server-dart/examples/webhooks/create.md +++ b/examples/1.9.x/server-dart/examples/webhooks/create.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/webhooks/delete.md b/examples/1.9.x/server-dart/examples/webhooks/delete.md index 5df49aa2c..a16bbae6b 100644 --- a/examples/1.9.x/server-dart/examples/webhooks/delete.md +++ b/examples/1.9.x/server-dart/examples/webhooks/delete.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/webhooks/get.md b/examples/1.9.x/server-dart/examples/webhooks/get.md index 60defa832..5102dbad9 100644 --- a/examples/1.9.x/server-dart/examples/webhooks/get.md +++ b/examples/1.9.x/server-dart/examples/webhooks/get.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/webhooks/list.md b/examples/1.9.x/server-dart/examples/webhooks/list.md index ea2d91e9c..52609e6f0 100644 --- a/examples/1.9.x/server-dart/examples/webhooks/list.md +++ b/examples/1.9.x/server-dart/examples/webhooks/list.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/webhooks/update-secret.md b/examples/1.9.x/server-dart/examples/webhooks/update-secret.md index 9aab19bf3..5dd8ef8df 100644 --- a/examples/1.9.x/server-dart/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-dart/examples/webhooks/update-secret.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dart/examples/webhooks/update.md b/examples/1.9.x/server-dart/examples/webhooks/update.md index 7185c65ac..d0649efb4 100644 --- a/examples/1.9.x/server-dart/examples/webhooks/update.md +++ b/examples/1.9.x/server-dart/examples/webhooks/update.md @@ -2,7 +2,7 @@ import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/account/create-anonymous-session.md b/examples/1.9.x/server-dotnet/examples/account/create-anonymous-session.md index 47a2fc6d2..55882b2f4 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-anonymous-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-email-password-session.md b/examples/1.9.x/server-dotnet/examples/account/create-email-password-session.md index a2408cdcf..6f1d6471e 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-email-password-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-email-token.md b/examples/1.9.x/server-dotnet/examples/account/create-email-token.md index dd012ac05..77560035f 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-email-token.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-email-token.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-email-verification.md b/examples/1.9.x/server-dotnet/examples/account/create-email-verification.md index ca2429709..b927b401d 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-email-verification.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-jwt.md b/examples/1.9.x/server-dotnet/examples/account/create-jwt.md index 71ea697d8..6481817c5 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-jwt.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-jwt.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-magic-url-token.md b/examples/1.9.x/server-dotnet/examples/account/create-magic-url-token.md index f1d22ded8..151298f37 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-magic-url-token.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-dotnet/examples/account/create-mfa-authenticator.md index 4bea1f210..289acdb2e 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-mfa-authenticator.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-dotnet/examples/account/create-mfa-challenge.md index afd906639..eecf8cb64 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-mfa-challenge.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-dotnet/examples/account/create-mfa-recovery-codes.md index 899854687..98a5fbe62 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-dotnet/examples/account/create-o-auth-2-token.md index 891bf4ffc..a34c4b8f6 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-o-auth-2-token.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-phone-token.md b/examples/1.9.x/server-dotnet/examples/account/create-phone-token.md index af5747b38..777b1dd2f 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-phone-token.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-phone-verification.md b/examples/1.9.x/server-dotnet/examples/account/create-phone-verification.md index 177ea7f77..b8b6dccd9 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-phone-verification.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-recovery.md b/examples/1.9.x/server-dotnet/examples/account/create-recovery.md index e236ddf53..7f7c83ddd 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-recovery.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-recovery.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-session.md b/examples/1.9.x/server-dotnet/examples/account/create-session.md index 5d2c1d2ea..8d2fc32fa 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-session.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create-verification.md b/examples/1.9.x/server-dotnet/examples/account/create-verification.md index 49be67503..e3448b75a 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create-verification.md +++ b/examples/1.9.x/server-dotnet/examples/account/create-verification.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/create.md b/examples/1.9.x/server-dotnet/examples/account/create.md index bbc8ae236..263ae4e0e 100644 --- a/examples/1.9.x/server-dotnet/examples/account/create.md +++ b/examples/1.9.x/server-dotnet/examples/account/create.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/delete-identity.md b/examples/1.9.x/server-dotnet/examples/account/delete-identity.md index d68919c4b..64e242895 100644 --- a/examples/1.9.x/server-dotnet/examples/account/delete-identity.md +++ b/examples/1.9.x/server-dotnet/examples/account/delete-identity.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-dotnet/examples/account/delete-mfa-authenticator.md index 1a5520195..89184b45c 100644 --- a/examples/1.9.x/server-dotnet/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-dotnet/examples/account/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/delete-session.md b/examples/1.9.x/server-dotnet/examples/account/delete-session.md index fa546c004..27796503a 100644 --- a/examples/1.9.x/server-dotnet/examples/account/delete-session.md +++ b/examples/1.9.x/server-dotnet/examples/account/delete-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/delete-sessions.md b/examples/1.9.x/server-dotnet/examples/account/delete-sessions.md index d6051e837..5cb141557 100644 --- a/examples/1.9.x/server-dotnet/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-dotnet/examples/account/delete-sessions.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-dotnet/examples/account/get-mfa-recovery-codes.md index f2ba2fa7c..cebe3ad62 100644 --- a/examples/1.9.x/server-dotnet/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dotnet/examples/account/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/get-prefs.md b/examples/1.9.x/server-dotnet/examples/account/get-prefs.md index 75d0984b1..7f367e53d 100644 --- a/examples/1.9.x/server-dotnet/examples/account/get-prefs.md +++ b/examples/1.9.x/server-dotnet/examples/account/get-prefs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/get-session.md b/examples/1.9.x/server-dotnet/examples/account/get-session.md index 903360ae2..31d6f4b1e 100644 --- a/examples/1.9.x/server-dotnet/examples/account/get-session.md +++ b/examples/1.9.x/server-dotnet/examples/account/get-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/get.md b/examples/1.9.x/server-dotnet/examples/account/get.md index 0184bb9e5..ad7d79fed 100644 --- a/examples/1.9.x/server-dotnet/examples/account/get.md +++ b/examples/1.9.x/server-dotnet/examples/account/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/list-identities.md b/examples/1.9.x/server-dotnet/examples/account/list-identities.md index 3d0b024bc..a63b93018 100644 --- a/examples/1.9.x/server-dotnet/examples/account/list-identities.md +++ b/examples/1.9.x/server-dotnet/examples/account/list-identities.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/list-logs.md b/examples/1.9.x/server-dotnet/examples/account/list-logs.md index d73311bc1..7ce289f84 100644 --- a/examples/1.9.x/server-dotnet/examples/account/list-logs.md +++ b/examples/1.9.x/server-dotnet/examples/account/list-logs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/list-mfa-factors.md b/examples/1.9.x/server-dotnet/examples/account/list-mfa-factors.md index 37bd907e0..304f1215c 100644 --- a/examples/1.9.x/server-dotnet/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-dotnet/examples/account/list-mfa-factors.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/list-sessions.md b/examples/1.9.x/server-dotnet/examples/account/list-sessions.md index 791af9739..6bcc4dffe 100644 --- a/examples/1.9.x/server-dotnet/examples/account/list-sessions.md +++ b/examples/1.9.x/server-dotnet/examples/account/list-sessions.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-email-verification.md b/examples/1.9.x/server-dotnet/examples/account/update-email-verification.md index ef431989c..b2d74c70a 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-email-verification.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-email.md b/examples/1.9.x/server-dotnet/examples/account/update-email.md index 5dbb8ee66..cf7db6e03 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-email.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-email.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-magic-url-session.md b/examples/1.9.x/server-dotnet/examples/account/update-magic-url-session.md index f123e72b5..fe29fe3de 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-magic-url-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-dotnet/examples/account/update-mfa-authenticator.md index 6950ba6f7..a7b20407c 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-mfa-authenticator.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-dotnet/examples/account/update-mfa-challenge.md index c7108fefc..d56a94655 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-mfa-challenge.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-dotnet/examples/account/update-mfa-recovery-codes.md index 3f2943d93..f633aa287 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-mfa.md b/examples/1.9.x/server-dotnet/examples/account/update-mfa.md index 3480ee42f..e63a1bc75 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-mfa.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-mfa.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-name.md b/examples/1.9.x/server-dotnet/examples/account/update-name.md index cdbf82c2d..9138affc3 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-name.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-name.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-password.md b/examples/1.9.x/server-dotnet/examples/account/update-password.md index 4c468ddc5..1294b6e58 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-password.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-password.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-phone-session.md b/examples/1.9.x/server-dotnet/examples/account/update-phone-session.md index d1aada972..5426582ac 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-phone-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-phone-verification.md b/examples/1.9.x/server-dotnet/examples/account/update-phone-verification.md index fd99865b0..235ac1e61 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-phone-verification.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-phone.md b/examples/1.9.x/server-dotnet/examples/account/update-phone.md index 558fd1c87..6b01ae11b 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-phone.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-phone.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-prefs.md b/examples/1.9.x/server-dotnet/examples/account/update-prefs.md index 4c43263ba..fe13ee93b 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-prefs.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-prefs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-recovery.md b/examples/1.9.x/server-dotnet/examples/account/update-recovery.md index a822d3e40..98eaa1393 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-recovery.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-recovery.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-session.md b/examples/1.9.x/server-dotnet/examples/account/update-session.md index 48adb6c08..212acacef 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-session.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-status.md b/examples/1.9.x/server-dotnet/examples/account/update-status.md index 1ea1fc4be..181bcf0a4 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-status.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-status.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/account/update-verification.md b/examples/1.9.x/server-dotnet/examples/account/update-verification.md index 60c397bcf..1fc2e404a 100644 --- a/examples/1.9.x/server-dotnet/examples/account/update-verification.md +++ b/examples/1.9.x/server-dotnet/examples/account/update-verification.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/activities/get-event.md b/examples/1.9.x/server-dotnet/examples/activities/get-event.md index 0855c8b41..bd038b683 100644 --- a/examples/1.9.x/server-dotnet/examples/activities/get-event.md +++ b/examples/1.9.x/server-dotnet/examples/activities/get-event.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/activities/list-events.md b/examples/1.9.x/server-dotnet/examples/activities/list-events.md index 817589b97..4e57465d7 100644 --- a/examples/1.9.x/server-dotnet/examples/activities/list-events.md +++ b/examples/1.9.x/server-dotnet/examples/activities/list-events.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/advisor/delete-report.md b/examples/1.9.x/server-dotnet/examples/advisor/delete-report.md index 188f2334f..7c24c18ed 100644 --- a/examples/1.9.x/server-dotnet/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-dotnet/examples/advisor/delete-report.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/advisor/get-insight.md b/examples/1.9.x/server-dotnet/examples/advisor/get-insight.md index cd5c72a55..63c523158 100644 --- a/examples/1.9.x/server-dotnet/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-dotnet/examples/advisor/get-insight.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/advisor/get-report.md b/examples/1.9.x/server-dotnet/examples/advisor/get-report.md index 9e8834f5b..244fa2855 100644 --- a/examples/1.9.x/server-dotnet/examples/advisor/get-report.md +++ b/examples/1.9.x/server-dotnet/examples/advisor/get-report.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/advisor/list-insights.md b/examples/1.9.x/server-dotnet/examples/advisor/list-insights.md index 7e2c6479b..056c1c360 100644 --- a/examples/1.9.x/server-dotnet/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-dotnet/examples/advisor/list-insights.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/advisor/list-reports.md b/examples/1.9.x/server-dotnet/examples/advisor/list-reports.md index ba3266daa..a98cd342b 100644 --- a/examples/1.9.x/server-dotnet/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-dotnet/examples/advisor/list-reports.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/avatars/get-browser.md b/examples/1.9.x/server-dotnet/examples/avatars/get-browser.md index f17be7dd3..e46df4502 100644 --- a/examples/1.9.x/server-dotnet/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-dotnet/examples/avatars/get-browser.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/avatars/get-credit-card.md b/examples/1.9.x/server-dotnet/examples/avatars/get-credit-card.md index 6d1647ee0..a5035c8b0 100644 --- a/examples/1.9.x/server-dotnet/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-dotnet/examples/avatars/get-credit-card.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/avatars/get-favicon.md b/examples/1.9.x/server-dotnet/examples/avatars/get-favicon.md index 4443daf46..7b2530453 100644 --- a/examples/1.9.x/server-dotnet/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-dotnet/examples/avatars/get-favicon.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/avatars/get-flag.md b/examples/1.9.x/server-dotnet/examples/avatars/get-flag.md index 2242497af..a50876ffa 100644 --- a/examples/1.9.x/server-dotnet/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-dotnet/examples/avatars/get-flag.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/avatars/get-image.md b/examples/1.9.x/server-dotnet/examples/avatars/get-image.md index 99518bedd..7498de362 100644 --- a/examples/1.9.x/server-dotnet/examples/avatars/get-image.md +++ b/examples/1.9.x/server-dotnet/examples/avatars/get-image.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/avatars/get-initials.md b/examples/1.9.x/server-dotnet/examples/avatars/get-initials.md index 8f6f1cd4f..66b45bcaa 100644 --- a/examples/1.9.x/server-dotnet/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-dotnet/examples/avatars/get-initials.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/avatars/get-qr.md b/examples/1.9.x/server-dotnet/examples/avatars/get-qr.md index 2414e3d5b..378032f20 100644 --- a/examples/1.9.x/server-dotnet/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-dotnet/examples/avatars/get-qr.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/avatars/get-screenshot.md b/examples/1.9.x/server-dotnet/examples/avatars/get-screenshot.md index 98c7170be..46ec261c0 100644 --- a/examples/1.9.x/server-dotnet/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-dotnet/examples/avatars/get-screenshot.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with @@ -20,7 +20,7 @@ byte[] result = await avatars.GetScreenshot( viewportWidth: 1920, // optional viewportHeight: 1080, // optional scale: 2, // optional - theme: Theme.Dark, // optional + theme: BrowserTheme.Dark, // optional userAgent: "Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15", // optional fullpage: true, // optional locale: "en-US", // optional diff --git a/examples/1.9.x/server-dotnet/examples/backups/create-archive.md b/examples/1.9.x/server-dotnet/examples/backups/create-archive.md index 4eee73089..446c7b93d 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/create-archive.md +++ b/examples/1.9.x/server-dotnet/examples/backups/create-archive.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/create-policy.md b/examples/1.9.x/server-dotnet/examples/backups/create-policy.md index a357c855b..aaa19cb65 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/create-policy.md +++ b/examples/1.9.x/server-dotnet/examples/backups/create-policy.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/create-restoration.md b/examples/1.9.x/server-dotnet/examples/backups/create-restoration.md index 80ec86a15..90c13bdc3 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-dotnet/examples/backups/create-restoration.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/delete-archive.md b/examples/1.9.x/server-dotnet/examples/backups/delete-archive.md index 2fe98e06b..a7d09e14a 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-dotnet/examples/backups/delete-archive.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/delete-policy.md b/examples/1.9.x/server-dotnet/examples/backups/delete-policy.md index cc1548232..db6d0b9ca 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-dotnet/examples/backups/delete-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/get-archive.md b/examples/1.9.x/server-dotnet/examples/backups/get-archive.md index d06e0bc5e..f2c866f7a 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/get-archive.md +++ b/examples/1.9.x/server-dotnet/examples/backups/get-archive.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/get-policy.md b/examples/1.9.x/server-dotnet/examples/backups/get-policy.md index 427fcfa0c..255cceefe 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/get-policy.md +++ b/examples/1.9.x/server-dotnet/examples/backups/get-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/get-restoration.md b/examples/1.9.x/server-dotnet/examples/backups/get-restoration.md index bed028bbe..845568f71 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-dotnet/examples/backups/get-restoration.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/list-archives.md b/examples/1.9.x/server-dotnet/examples/backups/list-archives.md index ddc463399..e0a901203 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/list-archives.md +++ b/examples/1.9.x/server-dotnet/examples/backups/list-archives.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/list-policies.md b/examples/1.9.x/server-dotnet/examples/backups/list-policies.md index 8ebdffdf9..e44b77b30 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/list-policies.md +++ b/examples/1.9.x/server-dotnet/examples/backups/list-policies.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/list-restorations.md b/examples/1.9.x/server-dotnet/examples/backups/list-restorations.md index 7d9712d61..4c0dd0bb0 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-dotnet/examples/backups/list-restorations.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/backups/update-policy.md b/examples/1.9.x/server-dotnet/examples/backups/update-policy.md index acba52a30..9d3ca0346 100644 --- a/examples/1.9.x/server-dotnet/examples/backups/update-policy.md +++ b/examples/1.9.x/server-dotnet/examples/backups/update-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-big-int-attribute.md index 405bdfddd..5bd8fd31e 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-big-int-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-boolean-attribute.md index 7a2a80388..b2a01dc0e 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-boolean-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-collection.md b/examples/1.9.x/server-dotnet/examples/databases/create-collection.md index 51398280b..7de491868 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-collection.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-collection.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-datetime-attribute.md index 85d2e095e..1fcb7e9b7 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-datetime-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-document.md b/examples/1.9.x/server-dotnet/examples/databases/create-document.md index f2eb911c0..3f76021c8 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-document.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-document.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-documents.md b/examples/1.9.x/server-dotnet/examples/databases/create-documents.md index f026a31ab..02b83d0ed 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-documents.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-documents.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-email-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-email-attribute.md index a08ca0b3c..4246f7964 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-email-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-enum-attribute.md index 5a27fbca7..f770d5ed4 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-enum-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-float-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-float-attribute.md index 2c8f71edd..8d443b64d 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-float-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-index.md b/examples/1.9.x/server-dotnet/examples/databases/create-index.md index 3d6530218..32e407d87 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-index.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-index.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-integer-attribute.md index 71a02566a..e759a8de9 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-integer-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-ip-attribute.md index 666ae483e..7edf1c816 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-ip-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-line-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-line-attribute.md index ac36d800e..0907f93e7 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-line-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-longtext-attribute.md index 95bc8112a..131d21830 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-longtext-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-mediumtext-attribute.md index c2e321f0a..44cdc684c 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-mediumtext-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-operations.md b/examples/1.9.x/server-dotnet/examples/databases/create-operations.md index 689678a02..dee955779 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-operations.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-operations.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-point-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-point-attribute.md index 66e876405..be535deca 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-point-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-polygon-attribute.md index 66c44b12b..da79021c8 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-polygon-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-relationship-attribute.md index a5262ffe3..6c83423c2 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-relationship-attribute.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-string-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-string-attribute.md index 9e7be5f6b..69bd5c139 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-string-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-text-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-text-attribute.md index c31955d7d..4b4988a38 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-text-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-transaction.md b/examples/1.9.x/server-dotnet/examples/databases/create-transaction.md index affe6894e..353a5f46a 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-transaction.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-url-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-url-attribute.md index 2f278ed12..7064d0c2a 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-url-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/create-varchar-attribute.md index 215c6a715..f276582a6 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create-varchar-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/create.md b/examples/1.9.x/server-dotnet/examples/databases/create.md index 534cd64fc..4c80003e3 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/create.md +++ b/examples/1.9.x/server-dotnet/examples/databases/create.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/decrement-document-attribute.md index 4dc89d8e3..8099a1805 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/decrement-document-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/databases/delete-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/delete-attribute.md index fdf5b395c..987889900 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/delete-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/delete-collection.md b/examples/1.9.x/server-dotnet/examples/databases/delete-collection.md index 50d6e4e70..04a7c113a 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-dotnet/examples/databases/delete-collection.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/delete-document.md b/examples/1.9.x/server-dotnet/examples/databases/delete-document.md index fda3b456e..ad996ad31 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/delete-document.md +++ b/examples/1.9.x/server-dotnet/examples/databases/delete-document.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/databases/delete-documents.md b/examples/1.9.x/server-dotnet/examples/databases/delete-documents.md index d6c85c9af..feb1ef25c 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-dotnet/examples/databases/delete-documents.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/delete-index.md b/examples/1.9.x/server-dotnet/examples/databases/delete-index.md index 5dce66504..c48af722a 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/delete-index.md +++ b/examples/1.9.x/server-dotnet/examples/databases/delete-index.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/delete-transaction.md b/examples/1.9.x/server-dotnet/examples/databases/delete-transaction.md index 692245f63..7aa3ac000 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-dotnet/examples/databases/delete-transaction.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/delete.md b/examples/1.9.x/server-dotnet/examples/databases/delete.md index 2c4d440b2..048427d7b 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/delete.md +++ b/examples/1.9.x/server-dotnet/examples/databases/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/get-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/get-attribute.md index 3e0832c3d..aa1a9f7d0 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/get-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/get-collection.md b/examples/1.9.x/server-dotnet/examples/databases/get-collection.md index 90bcbd5bc..554e0a0ac 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/get-collection.md +++ b/examples/1.9.x/server-dotnet/examples/databases/get-collection.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/get-document.md b/examples/1.9.x/server-dotnet/examples/databases/get-document.md index 404aeaa2a..f4ee4f285 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/get-document.md +++ b/examples/1.9.x/server-dotnet/examples/databases/get-document.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/databases/get-index.md b/examples/1.9.x/server-dotnet/examples/databases/get-index.md index fb11f427a..957aa8321 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/get-index.md +++ b/examples/1.9.x/server-dotnet/examples/databases/get-index.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/get-transaction.md b/examples/1.9.x/server-dotnet/examples/databases/get-transaction.md index 38441e99e..9a1d44f41 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-dotnet/examples/databases/get-transaction.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/get.md b/examples/1.9.x/server-dotnet/examples/databases/get.md index ff8ff6ba2..14502cc92 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/get.md +++ b/examples/1.9.x/server-dotnet/examples/databases/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/increment-document-attribute.md index 3a6eaa2b4..da665817e 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/increment-document-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/databases/list-attributes.md b/examples/1.9.x/server-dotnet/examples/databases/list-attributes.md index b0ac39a0b..5a0cecdb5 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-dotnet/examples/databases/list-attributes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/list-collections.md b/examples/1.9.x/server-dotnet/examples/databases/list-collections.md index 9cc4aeffc..a7670cfd5 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/list-collections.md +++ b/examples/1.9.x/server-dotnet/examples/databases/list-collections.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/list-documents.md b/examples/1.9.x/server-dotnet/examples/databases/list-documents.md index cb2d2dbe7..6b6d81383 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/list-documents.md +++ b/examples/1.9.x/server-dotnet/examples/databases/list-documents.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/databases/list-indexes.md b/examples/1.9.x/server-dotnet/examples/databases/list-indexes.md index 207d060bd..b2c17a679 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-dotnet/examples/databases/list-indexes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/list-transactions.md b/examples/1.9.x/server-dotnet/examples/databases/list-transactions.md index 1213629cb..46e2c46bf 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-dotnet/examples/databases/list-transactions.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/list.md b/examples/1.9.x/server-dotnet/examples/databases/list.md index 52aa1970e..459625956 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/list.md +++ b/examples/1.9.x/server-dotnet/examples/databases/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-big-int-attribute.md index 14dba1318..e9042ad39 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-big-int-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-boolean-attribute.md index 0b5caaa25..85a9f8138 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-boolean-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-collection.md b/examples/1.9.x/server-dotnet/examples/databases/update-collection.md index ab0588067..c1d2e9a38 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-collection.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-collection.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-datetime-attribute.md index a2da89809..d45fb9f98 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-datetime-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-document.md b/examples/1.9.x/server-dotnet/examples/databases/update-document.md index 58d268ba2..1f49153a3 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-document.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-document.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-documents.md b/examples/1.9.x/server-dotnet/examples/databases/update-documents.md index add1deb66..92090227f 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-documents.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-documents.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-email-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-email-attribute.md index 543e95be0..e3d603261 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-email-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-enum-attribute.md index e71c4bdbf..2325f302b 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-enum-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-float-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-float-attribute.md index 14723431a..47d23c26b 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-float-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-integer-attribute.md index 75764af79..c929b41f5 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-integer-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-ip-attribute.md index d0b25c7c3..67db15027 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-ip-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-line-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-line-attribute.md index eb3a8e76a..26082294a 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-line-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-longtext-attribute.md index ad74738f9..e708c9903 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-longtext-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-mediumtext-attribute.md index b85055ef3..057f61407 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-mediumtext-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-point-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-point-attribute.md index cb8d54b64..9a3948ab7 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-point-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-polygon-attribute.md index 5c8937992..5f80bcfa0 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-polygon-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-relationship-attribute.md index 5d260d973..783a48bc1 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-relationship-attribute.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-string-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-string-attribute.md index 08337fc23..2e4cf9c0d 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-string-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-text-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-text-attribute.md index 2ead38d21..961541e31 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-text-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-transaction.md b/examples/1.9.x/server-dotnet/examples/databases/update-transaction.md index afa8362a7..1b0c61a3d 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-transaction.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-url-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-url-attribute.md index 2c78b794e..12a9433b1 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-url-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-dotnet/examples/databases/update-varchar-attribute.md index 201c17de9..f38702560 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update-varchar-attribute.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/update.md b/examples/1.9.x/server-dotnet/examples/databases/update.md index 7a6c2e4c8..ebbdd5238 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/update.md +++ b/examples/1.9.x/server-dotnet/examples/databases/update.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/databases/upsert-document.md b/examples/1.9.x/server-dotnet/examples/databases/upsert-document.md index a47140993..3348b6ef4 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-dotnet/examples/databases/upsert-document.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/databases/upsert-documents.md b/examples/1.9.x/server-dotnet/examples/databases/upsert-documents.md index 8223f8ab2..8c4c8df35 100644 --- a/examples/1.9.x/server-dotnet/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-dotnet/examples/databases/upsert-documents.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/create-deployment.md b/examples/1.9.x/server-dotnet/examples/functions/create-deployment.md index ec99b73cf..9c042ee1c 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/functions/create-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-dotnet/examples/functions/create-duplicate-deployment.md index e906e3735..682e3f2a5 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/functions/create-duplicate-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/create-execution.md b/examples/1.9.x/server-dotnet/examples/functions/create-execution.md index 11a6b73ab..458cdc293 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/create-execution.md +++ b/examples/1.9.x/server-dotnet/examples/functions/create-execution.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/functions/create-template-deployment.md b/examples/1.9.x/server-dotnet/examples/functions/create-template-deployment.md index 18cb1c7b0..dcce7fbd5 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/functions/create-template-deployment.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/create-variable.md b/examples/1.9.x/server-dotnet/examples/functions/create-variable.md index dfb84f442..c46d4e9a4 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/create-variable.md +++ b/examples/1.9.x/server-dotnet/examples/functions/create-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-dotnet/examples/functions/create-vcs-deployment.md index 027617243..4a646a677 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/functions/create-vcs-deployment.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/create.md b/examples/1.9.x/server-dotnet/examples/functions/create.md index 074c92c69..86e9a393b 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/create.md +++ b/examples/1.9.x/server-dotnet/examples/functions/create.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key @@ -14,7 +14,7 @@ Functions functions = new Functions(client); Function result = await functions.Create( functionId: "", name: "", - runtime: Runtime.Node145, + runtime: FunctionRuntime.Node145, execute: ["any"], // optional events: new List(), // optional schedule: "", // optional @@ -23,12 +23,14 @@ Function result = await functions.Create( logging: false, // optional entrypoint: "", // optional commands: "", // optional - scopes: new List<Scopes> { Scopes.ProjectRead }, // optional + scopes: new List<ProjectKeyScopes> { ProjectKeyScopes.ProjectRead }, // optional installationId: "", // optional providerRepositoryId: "", // optional providerBranch: "", // optional providerSilentMode: false, // optional providerRootDirectory: "", // optional + providerBranches: new List(), // optional + providerPaths: new List(), // optional buildSpecification: "", // optional runtimeSpecification: "", // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-dotnet/examples/functions/delete-deployment.md b/examples/1.9.x/server-dotnet/examples/functions/delete-deployment.md index 89ed174dc..65b7d4bf4 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/functions/delete-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/delete-execution.md b/examples/1.9.x/server-dotnet/examples/functions/delete-execution.md index 0d5958be4..3772faf14 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-dotnet/examples/functions/delete-execution.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/delete-variable.md b/examples/1.9.x/server-dotnet/examples/functions/delete-variable.md index 2c69a5881..444ff1cc7 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-dotnet/examples/functions/delete-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/delete.md b/examples/1.9.x/server-dotnet/examples/functions/delete.md index 104a7485c..3462f8a69 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/delete.md +++ b/examples/1.9.x/server-dotnet/examples/functions/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/get-deployment-download.md b/examples/1.9.x/server-dotnet/examples/functions/get-deployment-download.md index d78d52a71..6cb6ba178 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-dotnet/examples/functions/get-deployment-download.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/get-deployment.md b/examples/1.9.x/server-dotnet/examples/functions/get-deployment.md index 4bca044dc..42f5dfbe4 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/functions/get-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/get-execution.md b/examples/1.9.x/server-dotnet/examples/functions/get-execution.md index a4705dc9d..fe5c90efb 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/get-execution.md +++ b/examples/1.9.x/server-dotnet/examples/functions/get-execution.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/functions/get-variable.md b/examples/1.9.x/server-dotnet/examples/functions/get-variable.md index fb4bd2177..86bccdefd 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/get-variable.md +++ b/examples/1.9.x/server-dotnet/examples/functions/get-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/get.md b/examples/1.9.x/server-dotnet/examples/functions/get.md index 1c8ab3316..7ae27ab9c 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/get.md +++ b/examples/1.9.x/server-dotnet/examples/functions/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/list-deployments.md b/examples/1.9.x/server-dotnet/examples/functions/list-deployments.md index ae2a3f7bb..ead26afb2 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-dotnet/examples/functions/list-deployments.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/list-executions.md b/examples/1.9.x/server-dotnet/examples/functions/list-executions.md index e3e838e1f..2b1753bbb 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/list-executions.md +++ b/examples/1.9.x/server-dotnet/examples/functions/list-executions.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/functions/list-runtimes.md b/examples/1.9.x/server-dotnet/examples/functions/list-runtimes.md index c0a58ab6a..99645ae67 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-dotnet/examples/functions/list-runtimes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/list-specifications.md b/examples/1.9.x/server-dotnet/examples/functions/list-specifications.md index 2c168c038..92b725411 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-dotnet/examples/functions/list-specifications.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/list-variables.md b/examples/1.9.x/server-dotnet/examples/functions/list-variables.md index 4e540e7b5..02b0668f8 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/list-variables.md +++ b/examples/1.9.x/server-dotnet/examples/functions/list-variables.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/list.md b/examples/1.9.x/server-dotnet/examples/functions/list.md index f8da87f86..5cb314256 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/list.md +++ b/examples/1.9.x/server-dotnet/examples/functions/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/update-deployment-status.md b/examples/1.9.x/server-dotnet/examples/functions/update-deployment-status.md index 819221cbc..c3336753a 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-dotnet/examples/functions/update-deployment-status.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/update-function-deployment.md b/examples/1.9.x/server-dotnet/examples/functions/update-function-deployment.md index 1045b4552..d1a544813 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/functions/update-function-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/update-variable.md b/examples/1.9.x/server-dotnet/examples/functions/update-variable.md index af7eb84af..612a00a0b 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/update-variable.md +++ b/examples/1.9.x/server-dotnet/examples/functions/update-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/functions/update.md b/examples/1.9.x/server-dotnet/examples/functions/update.md index 02b086918..cddd00b23 100644 --- a/examples/1.9.x/server-dotnet/examples/functions/update.md +++ b/examples/1.9.x/server-dotnet/examples/functions/update.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key @@ -14,7 +14,7 @@ Functions functions = new Functions(client); Function result = await functions.Update( functionId: "", name: "", - runtime: Runtime.Node145, // optional + runtime: FunctionRuntime.Node145, // optional execute: ["any"], // optional events: new List(), // optional schedule: "", // optional @@ -23,12 +23,14 @@ Function result = await functions.Update( logging: false, // optional entrypoint: "", // optional commands: "", // optional - scopes: new List<Scopes> { Scopes.ProjectRead }, // optional + scopes: new List<ProjectKeyScopes> { ProjectKeyScopes.ProjectRead }, // optional installationId: "", // optional providerRepositoryId: "", // optional providerBranch: "", // optional providerSilentMode: false, // optional providerRootDirectory: "", // optional + providerBranches: new List(), // optional + providerPaths: new List(), // optional buildSpecification: "", // optional runtimeSpecification: "", // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-dotnet/examples/graphql/mutation.md b/examples/1.9.x/server-dotnet/examples/graphql/mutation.md index 4280455fc..24f6a4341 100644 --- a/examples/1.9.x/server-dotnet/examples/graphql/mutation.md +++ b/examples/1.9.x/server-dotnet/examples/graphql/mutation.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/graphql/query.md b/examples/1.9.x/server-dotnet/examples/graphql/query.md index 6d1c447ef..5c75fdb9c 100644 --- a/examples/1.9.x/server-dotnet/examples/graphql/query.md +++ b/examples/1.9.x/server-dotnet/examples/graphql/query.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-antivirus.md b/examples/1.9.x/server-dotnet/examples/health/get-antivirus.md index f7fdc0c59..2b69b598e 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-antivirus.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-cache.md b/examples/1.9.x/server-dotnet/examples/health/get-cache.md index d10993ff2..ff4da515e 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-cache.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-cache.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-certificate.md b/examples/1.9.x/server-dotnet/examples/health/get-certificate.md index 2db4b0385..e00b43d83 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-certificate.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-certificate.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-console-pausing.md b/examples/1.9.x/server-dotnet/examples/health/get-console-pausing.md index b57ee49e8..e19cc9c44 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-console-pausing.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-db.md b/examples/1.9.x/server-dotnet/examples/health/get-db.md index 83827fc1c..623a3168c 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-db.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-db.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-failed-jobs.md b/examples/1.9.x/server-dotnet/examples/health/get-failed-jobs.md index 33a9e9bf0..08a7ae627 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-failed-jobs.md @@ -5,13 +5,13 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key Health health = new Health(client); HealthQueue result = await health.GetFailedJobs( - name: Name.V1Database, + name: HealthQueueName.V1Database, threshold: 0 // optional );``` diff --git a/examples/1.9.x/server-dotnet/examples/health/get-pub-sub.md b/examples/1.9.x/server-dotnet/examples/health/get-pub-sub.md index 9e44103aa..4d239fb24 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-pub-sub.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-audits.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-audits.md index 9e04d1feb..c944748af 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-audits.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-builds.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-builds.md index 65cea9238..0e2944fd2 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-builds.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-certificates.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-certificates.md index 4457901e9..4ad280a52 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-certificates.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-databases.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-databases.md index fc8312e72..3771b09e0 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-databases.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-deletes.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-deletes.md index c905fa863..a0e1780fc 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-deletes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-functions.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-functions.md index 79751bba2..08b87ce80 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-functions.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-logs.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-logs.md index 50a480663..58412da57 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-logs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-mails.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-mails.md index d0224adcd..027966082 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-mails.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-messaging.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-messaging.md index 3a7b2dafa..f1007c972 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-messaging.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-migrations.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-migrations.md index 78bfa709a..8d5ccdb05 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-migrations.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-stats-resources.md index 1ad7d8541..a6318f00b 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-stats-resources.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-usage.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-usage.md index a45b74732..572a1e930 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-usage.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-dotnet/examples/health/get-queue-webhooks.md index 9a670034e..dfefc0f1a 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-queue-webhooks.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-storage-local.md b/examples/1.9.x/server-dotnet/examples/health/get-storage-local.md index 73aa20697..697155d0f 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-storage-local.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-storage.md b/examples/1.9.x/server-dotnet/examples/health/get-storage.md index 06b005801..b53ec230d 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-storage.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-storage.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get-time.md b/examples/1.9.x/server-dotnet/examples/health/get-time.md index e8a0cecfc..b215fbcb6 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get-time.md +++ b/examples/1.9.x/server-dotnet/examples/health/get-time.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/health/get.md b/examples/1.9.x/server-dotnet/examples/health/get.md index 4b31b04bf..067c8d016 100644 --- a/examples/1.9.x/server-dotnet/examples/health/get.md +++ b/examples/1.9.x/server-dotnet/examples/health/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/locale/get.md b/examples/1.9.x/server-dotnet/examples/locale/get.md index c8bd51ea9..ecf6ae80e 100644 --- a/examples/1.9.x/server-dotnet/examples/locale/get.md +++ b/examples/1.9.x/server-dotnet/examples/locale/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/locale/list-codes.md b/examples/1.9.x/server-dotnet/examples/locale/list-codes.md index ec8da7d64..1b170ec17 100644 --- a/examples/1.9.x/server-dotnet/examples/locale/list-codes.md +++ b/examples/1.9.x/server-dotnet/examples/locale/list-codes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/locale/list-continents.md b/examples/1.9.x/server-dotnet/examples/locale/list-continents.md index b53a4a1f7..a21458328 100644 --- a/examples/1.9.x/server-dotnet/examples/locale/list-continents.md +++ b/examples/1.9.x/server-dotnet/examples/locale/list-continents.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/locale/list-countries-eu.md b/examples/1.9.x/server-dotnet/examples/locale/list-countries-eu.md index aa85c7817..7a8f82f79 100644 --- a/examples/1.9.x/server-dotnet/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-dotnet/examples/locale/list-countries-eu.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/locale/list-countries-phones.md b/examples/1.9.x/server-dotnet/examples/locale/list-countries-phones.md index 6a600fc53..c31f92fd0 100644 --- a/examples/1.9.x/server-dotnet/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-dotnet/examples/locale/list-countries-phones.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/locale/list-countries.md b/examples/1.9.x/server-dotnet/examples/locale/list-countries.md index ce3e0f538..36e82e937 100644 --- a/examples/1.9.x/server-dotnet/examples/locale/list-countries.md +++ b/examples/1.9.x/server-dotnet/examples/locale/list-countries.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/locale/list-currencies.md b/examples/1.9.x/server-dotnet/examples/locale/list-currencies.md index 526d61809..fd4aad64b 100644 --- a/examples/1.9.x/server-dotnet/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-dotnet/examples/locale/list-currencies.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/locale/list-languages.md b/examples/1.9.x/server-dotnet/examples/locale/list-languages.md index bd9cd0583..e1a90b383 100644 --- a/examples/1.9.x/server-dotnet/examples/locale/list-languages.md +++ b/examples/1.9.x/server-dotnet/examples/locale/list-languages.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-apns-provider.md index 8f1e99d07..e3d829f80 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-apns-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-email.md b/examples/1.9.x/server-dotnet/examples/messaging/create-email.md index a748744c6..074709a11 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-email.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-email.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-fcm-provider.md index e07bfe9a4..6b4841358 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-fcm-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-mailgun-provider.md index 352bd5048..ea3f97de9 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-mailgun-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-msg-91-provider.md index 6abd30bc1..d97c746f2 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-msg-91-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-push.md b/examples/1.9.x/server-dotnet/examples/messaging/create-push.md index a7c31e20c..55a534a2a 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-push.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-push.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-resend-provider.md index ea6ff5ecb..1268266f8 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-resend-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-sendgrid-provider.md index 9df34e0a5..91594ad9c 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-sendgrid-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-sms.md b/examples/1.9.x/server-dotnet/examples/messaging/create-sms.md index f6677ab82..579a42d27 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-sms.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-smtp-provider.md index 1e28297e6..20bef9e90 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-smtp-provider.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-subscriber.md b/examples/1.9.x/server-dotnet/examples/messaging/create-subscriber.md index cfb3d1598..ce3d66aff 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-subscriber.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetJWT(""); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-telesign-provider.md index 14770eb51..d5737b6e0 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-telesign-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-textmagic-provider.md index 2fbea11ae..889a2b61f 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-textmagic-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-topic.md b/examples/1.9.x/server-dotnet/examples/messaging/create-topic.md index d9b8370b2..8bdab2bbc 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-topic.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-twilio-provider.md index 4eba8078d..bfd7fba09 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-twilio-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/create-vonage-provider.md index 1407190ee..cbc164b29 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/create-vonage-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/delete-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/delete-provider.md index 06dbf22fd..f3b7ff41c 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/delete-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-dotnet/examples/messaging/delete-subscriber.md index ee4b8dc47..3b9dc6174 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/delete-subscriber.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetJWT(""); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-dotnet/examples/messaging/delete-topic.md b/examples/1.9.x/server-dotnet/examples/messaging/delete-topic.md index a27b40366..171b5ad86 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/delete-topic.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/delete.md b/examples/1.9.x/server-dotnet/examples/messaging/delete.md index 8e2777a15..1d80bb987 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/delete.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/get-message.md b/examples/1.9.x/server-dotnet/examples/messaging/get-message.md index 6e7d6a82d..36b03429f 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/get-message.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/get-message.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/get-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/get-provider.md index e30778d72..aabf49ef7 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/get-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/get-subscriber.md b/examples/1.9.x/server-dotnet/examples/messaging/get-subscriber.md index 91f76b884..dbc637952 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/get-subscriber.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/get-topic.md b/examples/1.9.x/server-dotnet/examples/messaging/get-topic.md index 8236a9664..29e093bfc 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/get-topic.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-message-logs.md b/examples/1.9.x/server-dotnet/examples/messaging/list-message-logs.md index 2684e747f..163d0979a 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-message-logs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-messages.md b/examples/1.9.x/server-dotnet/examples/messaging/list-messages.md index dfdf9056d..119c9cea7 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-messages.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-dotnet/examples/messaging/list-provider-logs.md index 47f3bb2f8..ec9614c25 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-provider-logs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-providers.md b/examples/1.9.x/server-dotnet/examples/messaging/list-providers.md index 3823f0525..75d528162 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-providers.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-dotnet/examples/messaging/list-subscriber-logs.md index b5db4513f..ece4bbdf9 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-subscriber-logs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-subscribers.md b/examples/1.9.x/server-dotnet/examples/messaging/list-subscribers.md index 22a267e71..14b3c2a00 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-subscribers.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-targets.md b/examples/1.9.x/server-dotnet/examples/messaging/list-targets.md index d6e99c9ad..9b9359a0a 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-targets.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-dotnet/examples/messaging/list-topic-logs.md index 0402adba8..213accee7 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-topic-logs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/list-topics.md b/examples/1.9.x/server-dotnet/examples/messaging/list-topics.md index 1002a4d93..fd57e3ce4 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/list-topics.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-apns-provider.md index 515500986..ae6a4a251 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-apns-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-email.md b/examples/1.9.x/server-dotnet/examples/messaging/update-email.md index b795cda16..32eaa7508 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-email.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-email.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-fcm-provider.md index 43478a5a0..9c5a7c423 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-fcm-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-mailgun-provider.md index 2cf3a83e0..daf8a16e4 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-mailgun-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-msg-91-provider.md index 7a651250b..7642e1f2c 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-msg-91-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-push.md b/examples/1.9.x/server-dotnet/examples/messaging/update-push.md index 95de201c2..3629d8fc8 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-push.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-push.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-resend-provider.md index d6d42c856..672ea5fa9 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-resend-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-sendgrid-provider.md index 03d1972db..d3c351574 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-sendgrid-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-sms.md b/examples/1.9.x/server-dotnet/examples/messaging/update-sms.md index db9795dd4..7bb150361 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-sms.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-smtp-provider.md index b9f0436fd..399841cc3 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-smtp-provider.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-telesign-provider.md index e9ebd80e3..9a1756bde 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-telesign-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-textmagic-provider.md index b5b7b8aff..d5d0fd4b5 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-textmagic-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-topic.md b/examples/1.9.x/server-dotnet/examples/messaging/update-topic.md index 361a23968..a5860ee98 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-topic.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-twilio-provider.md index 594bdee86..6e93406bc 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-twilio-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-dotnet/examples/messaging/update-vonage-provider.md index 61e8c8484..a4fda31f2 100644 --- a/examples/1.9.x/server-dotnet/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-dotnet/examples/messaging/update-vonage-provider.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/organization/create-key.md b/examples/1.9.x/server-dotnet/examples/organization/create-key.md new file mode 100644 index 000000000..9dfc26d5a --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/create-key.md @@ -0,0 +1,19 @@ +```csharp +using Appwrite; +using Appwrite.Enums; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +Key result = await organization.CreateKey( + keyId: "", + name: "", + scopes: new List<OrganizationKeyScopes> { OrganizationKeyScopes.ProjectsRead }, + expire: "2020-10-15T06:38:00.000+00:00" // optional +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/create-project.md b/examples/1.9.x/server-dotnet/examples/organization/create-project.md new file mode 100644 index 000000000..d4cc36237 --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/create-project.md @@ -0,0 +1,18 @@ +```csharp +using Appwrite; +using Appwrite.Enums; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +Project result = await organization.CreateProject( + projectId: "", + name: "", + region: Region.Fra // optional +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/delete-key.md b/examples/1.9.x/server-dotnet/examples/organization/delete-key.md new file mode 100644 index 000000000..abb2ad325 --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/delete-key.md @@ -0,0 +1,15 @@ +```csharp +using Appwrite; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +await organization.DeleteKey( + keyId: "" +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/delete-project.md b/examples/1.9.x/server-dotnet/examples/organization/delete-project.md new file mode 100644 index 000000000..ebe03d656 --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/delete-project.md @@ -0,0 +1,15 @@ +```csharp +using Appwrite; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +await organization.DeleteProject( + projectId: "" +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/get-key.md b/examples/1.9.x/server-dotnet/examples/organization/get-key.md new file mode 100644 index 000000000..4df2936ce --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/get-key.md @@ -0,0 +1,15 @@ +```csharp +using Appwrite; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +Key result = await organization.GetKey( + keyId: "" +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/get-project.md b/examples/1.9.x/server-dotnet/examples/organization/get-project.md new file mode 100644 index 000000000..2839b3860 --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/get-project.md @@ -0,0 +1,15 @@ +```csharp +using Appwrite; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +Project result = await organization.GetProject( + projectId: "" +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/list-keys.md b/examples/1.9.x/server-dotnet/examples/organization/list-keys.md new file mode 100644 index 000000000..7c3d892bb --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/list-keys.md @@ -0,0 +1,16 @@ +```csharp +using Appwrite; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +KeyList result = await organization.ListKeys( + queries: new List(), // optional + total: false // optional +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/list-projects.md b/examples/1.9.x/server-dotnet/examples/organization/list-projects.md new file mode 100644 index 000000000..eea712aa8 --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/list-projects.md @@ -0,0 +1,17 @@ +```csharp +using Appwrite; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +ProjectList result = await organization.ListProjects( + queries: new List(), // optional + search: "", // optional + total: false // optional +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/update-key.md b/examples/1.9.x/server-dotnet/examples/organization/update-key.md new file mode 100644 index 000000000..e62f41bf2 --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/update-key.md @@ -0,0 +1,19 @@ +```csharp +using Appwrite; +using Appwrite.Enums; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +Key result = await organization.UpdateKey( + keyId: "", + name: "", + scopes: new List<OrganizationKeyScopes> { OrganizationKeyScopes.ProjectsRead }, + expire: "2020-10-15T06:38:00.000+00:00" // optional +);``` diff --git a/examples/1.9.x/server-dotnet/examples/organization/update-project.md b/examples/1.9.x/server-dotnet/examples/organization/update-project.md new file mode 100644 index 000000000..b9bcc9b64 --- /dev/null +++ b/examples/1.9.x/server-dotnet/examples/organization/update-project.md @@ -0,0 +1,16 @@ +```csharp +using Appwrite; +using Appwrite.Models; +using Appwrite.Services; + +Client client = new Client() + .SetEndPoint("") // Your API Endpoint + .SetProject("") // Your project ID + .SetKey(""); // Your secret API key + +Organization organization = new Organization(client); + +Project result = await organization.UpdateProject( + projectId: "", + name: "" +);``` diff --git a/examples/1.9.x/server-dotnet/examples/presences/delete.md b/examples/1.9.x/server-dotnet/examples/presences/delete.md index 0431d249e..191f10da9 100644 --- a/examples/1.9.x/server-dotnet/examples/presences/delete.md +++ b/examples/1.9.x/server-dotnet/examples/presences/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/presences/get.md b/examples/1.9.x/server-dotnet/examples/presences/get.md index acf317de0..08468f366 100644 --- a/examples/1.9.x/server-dotnet/examples/presences/get.md +++ b/examples/1.9.x/server-dotnet/examples/presences/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/presences/list.md b/examples/1.9.x/server-dotnet/examples/presences/list.md index e1bd96536..810ab8918 100644 --- a/examples/1.9.x/server-dotnet/examples/presences/list.md +++ b/examples/1.9.x/server-dotnet/examples/presences/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/presences/update-presence.md b/examples/1.9.x/server-dotnet/examples/presences/update-presence.md index 8727b075d..df31596e9 100644 --- a/examples/1.9.x/server-dotnet/examples/presences/update-presence.md +++ b/examples/1.9.x/server-dotnet/examples/presences/update-presence.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/presences/upsert.md b/examples/1.9.x/server-dotnet/examples/presences/upsert.md index 4c73ddc4d..585b5d225 100644 --- a/examples/1.9.x/server-dotnet/examples/presences/upsert.md +++ b/examples/1.9.x/server-dotnet/examples/presences/upsert.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-android-platform.md b/examples/1.9.x/server-dotnet/examples/project/create-android-platform.md index 34280b508..79fbbb2aa 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-android-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-apple-platform.md b/examples/1.9.x/server-dotnet/examples/project/create-apple-platform.md index 0326c775f..e7e887888 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-apple-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-dotnet/examples/project/create-ephemeral-key.md index afc4fc281..058c061f2 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-ephemeral-key.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-key.md b/examples/1.9.x/server-dotnet/examples/project/create-key.md index bc4d52ab5..0d3103291 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-key.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-key.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-linux-platform.md b/examples/1.9.x/server-dotnet/examples/project/create-linux-platform.md index 5fa6c77d0..8b42825e6 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-linux-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-mock-phone.md b/examples/1.9.x/server-dotnet/examples/project/create-mock-phone.md index f3d846ab0..0fe19911f 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-mock-phone.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-smtp-test.md b/examples/1.9.x/server-dotnet/examples/project/create-smtp-test.md index 3ee832cb2..e947e6422 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-smtp-test.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-variable.md b/examples/1.9.x/server-dotnet/examples/project/create-variable.md index a49aa4547..404bf960c 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-variable.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-web-platform.md b/examples/1.9.x/server-dotnet/examples/project/create-web-platform.md index 1a2bd50a6..468cf36f5 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-web-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/create-windows-platform.md b/examples/1.9.x/server-dotnet/examples/project/create-windows-platform.md index ab48dc3df..8ca1af7da 100644 --- a/examples/1.9.x/server-dotnet/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/create-windows-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/delete-key.md b/examples/1.9.x/server-dotnet/examples/project/delete-key.md index 96654a14f..3d1d9cb08 100644 --- a/examples/1.9.x/server-dotnet/examples/project/delete-key.md +++ b/examples/1.9.x/server-dotnet/examples/project/delete-key.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/delete-mock-phone.md b/examples/1.9.x/server-dotnet/examples/project/delete-mock-phone.md index 3ba22dcca..4b3d53f08 100644 --- a/examples/1.9.x/server-dotnet/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-dotnet/examples/project/delete-mock-phone.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/delete-platform.md b/examples/1.9.x/server-dotnet/examples/project/delete-platform.md index 6eb9777a2..cbb500196 100644 --- a/examples/1.9.x/server-dotnet/examples/project/delete-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/delete-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/delete-variable.md b/examples/1.9.x/server-dotnet/examples/project/delete-variable.md index 83762d9b1..a8be7ec6f 100644 --- a/examples/1.9.x/server-dotnet/examples/project/delete-variable.md +++ b/examples/1.9.x/server-dotnet/examples/project/delete-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/delete.md b/examples/1.9.x/server-dotnet/examples/project/delete.md index 42f63b32b..e4687ce25 100644 --- a/examples/1.9.x/server-dotnet/examples/project/delete.md +++ b/examples/1.9.x/server-dotnet/examples/project/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/get-email-template.md b/examples/1.9.x/server-dotnet/examples/project/get-email-template.md index 64c4435a8..8db509fc6 100644 --- a/examples/1.9.x/server-dotnet/examples/project/get-email-template.md +++ b/examples/1.9.x/server-dotnet/examples/project/get-email-template.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/get-key.md b/examples/1.9.x/server-dotnet/examples/project/get-key.md index 6b0e81922..d4a831f78 100644 --- a/examples/1.9.x/server-dotnet/examples/project/get-key.md +++ b/examples/1.9.x/server-dotnet/examples/project/get-key.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/get-mock-phone.md b/examples/1.9.x/server-dotnet/examples/project/get-mock-phone.md index 70a48e599..3e4f43781 100644 --- a/examples/1.9.x/server-dotnet/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-dotnet/examples/project/get-mock-phone.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-dotnet/examples/project/get-o-auth-2-provider.md index c7128c370..d1bd6b52c 100644 --- a/examples/1.9.x/server-dotnet/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-dotnet/examples/project/get-o-auth-2-provider.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/get-platform.md b/examples/1.9.x/server-dotnet/examples/project/get-platform.md index 6dc39ce0e..ecd66071c 100644 --- a/examples/1.9.x/server-dotnet/examples/project/get-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/get-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/get-policy.md b/examples/1.9.x/server-dotnet/examples/project/get-policy.md index 21a1bc230..5e2044254 100644 --- a/examples/1.9.x/server-dotnet/examples/project/get-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/get-policy.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/get-variable.md b/examples/1.9.x/server-dotnet/examples/project/get-variable.md index d1283ed35..88ee4c34a 100644 --- a/examples/1.9.x/server-dotnet/examples/project/get-variable.md +++ b/examples/1.9.x/server-dotnet/examples/project/get-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/get.md b/examples/1.9.x/server-dotnet/examples/project/get.md index bba3b0883..ed293b220 100644 --- a/examples/1.9.x/server-dotnet/examples/project/get.md +++ b/examples/1.9.x/server-dotnet/examples/project/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/list-email-templates.md b/examples/1.9.x/server-dotnet/examples/project/list-email-templates.md index 828692bff..08988f160 100644 --- a/examples/1.9.x/server-dotnet/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-dotnet/examples/project/list-email-templates.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/list-keys.md b/examples/1.9.x/server-dotnet/examples/project/list-keys.md index ac4c2cf41..764ebd350 100644 --- a/examples/1.9.x/server-dotnet/examples/project/list-keys.md +++ b/examples/1.9.x/server-dotnet/examples/project/list-keys.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/list-mock-phones.md b/examples/1.9.x/server-dotnet/examples/project/list-mock-phones.md index 9e2763699..4aedf5223 100644 --- a/examples/1.9.x/server-dotnet/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-dotnet/examples/project/list-mock-phones.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-dotnet/examples/project/list-o-auth-2-providers.md index 58413a811..a2fa3c84d 100644 --- a/examples/1.9.x/server-dotnet/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-dotnet/examples/project/list-o-auth-2-providers.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/list-platforms.md b/examples/1.9.x/server-dotnet/examples/project/list-platforms.md index 066d6e0dc..3debd491e 100644 --- a/examples/1.9.x/server-dotnet/examples/project/list-platforms.md +++ b/examples/1.9.x/server-dotnet/examples/project/list-platforms.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/list-policies.md b/examples/1.9.x/server-dotnet/examples/project/list-policies.md index e1045511b..b384b689c 100644 --- a/examples/1.9.x/server-dotnet/examples/project/list-policies.md +++ b/examples/1.9.x/server-dotnet/examples/project/list-policies.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/list-variables.md b/examples/1.9.x/server-dotnet/examples/project/list-variables.md index 5f6f00cc8..a75650915 100644 --- a/examples/1.9.x/server-dotnet/examples/project/list-variables.md +++ b/examples/1.9.x/server-dotnet/examples/project/list-variables.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-android-platform.md b/examples/1.9.x/server-dotnet/examples/project/update-android-platform.md index 6106dcfb9..e3f87eac8 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-android-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-apple-platform.md b/examples/1.9.x/server-dotnet/examples/project/update-apple-platform.md index ebe023434..ee286e3f0 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-apple-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-auth-method.md b/examples/1.9.x/server-dotnet/examples/project/update-auth-method.md index 8e5b41991..f7b3a4473 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-auth-method.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-deny-aliased-email-policy.md index b902b5747..7e0cfe60f 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-deny-aliased-email-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-deny-disposable-email-policy.md index 3bee9a1a5..4fd7eade1 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-deny-disposable-email-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-deny-free-email-policy.md index 88da981f5..291b020fd 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-deny-free-email-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-email-template.md b/examples/1.9.x/server-dotnet/examples/project/update-email-template.md index 97277a96b..a1622168d 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-email-template.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-email-template.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-key.md b/examples/1.9.x/server-dotnet/examples/project/update-key.md index 23da35d99..540f8f4a1 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-key.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-key.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-labels.md b/examples/1.9.x/server-dotnet/examples/project/update-labels.md index 22079e527..153eef170 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-labels.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-labels.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-linux-platform.md b/examples/1.9.x/server-dotnet/examples/project/update-linux-platform.md index fe94ccbaa..f7f2d811c 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-linux-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-membership-privacy-policy.md index 37ef7fe1b..a7ea4ea03 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-membership-privacy-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-mock-phone.md b/examples/1.9.x/server-dotnet/examples/project/update-mock-phone.md index c5a18e2b3..fcd039c8d 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-mock-phone.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-amazon.md index 8680703d0..f8cf0512a 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-amazon.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-apple.md index 942cebc63..9e1e30209 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-apple.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-auth-0.md index 2c212601e..d6e433db7 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-auth-0.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-authentik.md index 293b98e9a..9cb3196bf 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-authentik.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-autodesk.md index 40edd2b1d..d9d255959 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-autodesk.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-bitbucket.md index 53f7411e0..1e1dc4e65 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-bitbucket.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-bitly.md index eec326fd0..a0671f95b 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-bitly.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-box.md index c1f1915bd..e32d369bd 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-box.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-dailymotion.md index b99bc3571..c9169ff63 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-dailymotion.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-discord.md index 7d6dc9d5f..b6aa8bffb 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-discord.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-disqus.md index 6c7d9c7ec..08eb9c0d4 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-disqus.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-dropbox.md index 0106e913d..e850460d8 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-dropbox.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-etsy.md index 4143db45a..e06365028 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-etsy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-facebook.md index ac5ebcb8c..e4bef732d 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-facebook.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-figma.md index b99a6b256..5d5cbfd74 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-figma.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-fusion-auth.md index 8fa9fe552..f28c8b6b4 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-fusion-auth.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-git-hub.md index 5c2cf3b5b..0d3e0b3df 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-git-hub.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-gitlab.md index b3530fb23..c1362e181 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-gitlab.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-google.md index d9e7308a8..71ab329b2 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-google.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-keycloak.md index 3027251ec..f2ae5f356 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-keycloak.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-kick.md index 8b9661bf2..897a49bd5 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-kick.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-linkedin.md index e360cc7a9..0c37fcaa1 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-linkedin.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-microsoft.md index eb8780b1c..9df368d2f 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-microsoft.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-notion.md index 06199ccfa..703e8c1f4 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-notion.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-oidc.md index 9c86e7d51..eaacadd09 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-oidc.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-okta.md index 87e3c4b47..426ac1edc 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-okta.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-paypal-sandbox.md index f98cf68e7..da317f6f6 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-paypal-sandbox.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-paypal.md index cb2a010f3..d8f67d005 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-paypal.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-podio.md index 1233e25b2..b2a20d79e 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-podio.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-salesforce.md index f87bb0186..9393abfc4 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-salesforce.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-slack.md index b3ac00842..186df54b7 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-slack.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-spotify.md index 22d7b4c15..a40794b9c 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-spotify.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-stripe.md index fbe842ff7..ec42e3f3d 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-stripe.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-tradeshift-sandbox.md index 18d5644c8..35ef91044 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-tradeshift.md index 649f5590a..15ae3ac40 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-tradeshift.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-twitch.md index 30acec4af..87a7b21ae 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-twitch.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-word-press.md index 40e387e86..f1ac9db7b 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-word-press.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-yahoo.md index 3fbc0b552..e4c4379bd 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-yahoo.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-yandex.md index 186d3a0cf..5199ba958 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-yandex.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-zoho.md index 3ae358d75..d62db2cae 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-zoho.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-zoom.md index 3398abe7c..976d19ccb 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2-zoom.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2x.md index e346ab5c7..b29aab99e 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-o-auth-2x.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-password-dictionary-policy.md index d332a214f..833429db7 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-password-dictionary-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-password-history-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-password-history-policy.md index 9f74fa8b4..cfff89f79 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-password-history-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-password-personal-data-policy.md index f65434831..e07b31156 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-password-personal-data-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-protocol.md b/examples/1.9.x/server-dotnet/examples/project/update-protocol.md index 0440e0b9d..a5e772243 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-protocol.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-protocol.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-service.md b/examples/1.9.x/server-dotnet/examples/project/update-service.md index fd9c1effe..c4242e546 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-service.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-service.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-session-alert-policy.md index 14bc61a20..73ed5b990 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-session-alert-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-session-duration-policy.md index 347c9c9e3..65319941f 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-session-duration-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-session-invalidation-policy.md index ba3ccc212..4e7e93cf1 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-session-invalidation-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-session-limit-policy.md index 6b4b80170..ebf8fd758 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-session-limit-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-smtp.md b/examples/1.9.x/server-dotnet/examples/project/update-smtp.md index c4918f4e7..d1cb43381 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-smtp.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-smtp.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-dotnet/examples/project/update-user-limit-policy.md index 99dc74427..f2bc6bbc7 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-user-limit-policy.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-variable.md b/examples/1.9.x/server-dotnet/examples/project/update-variable.md index cfdf56bd4..ba9397f05 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-variable.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-web-platform.md b/examples/1.9.x/server-dotnet/examples/project/update-web-platform.md index 11454ea4f..90f64796a 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-web-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/project/update-windows-platform.md b/examples/1.9.x/server-dotnet/examples/project/update-windows-platform.md index 42a3073d8..3a5233efe 100644 --- a/examples/1.9.x/server-dotnet/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-dotnet/examples/project/update-windows-platform.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/proxy/create-api-rule.md b/examples/1.9.x/server-dotnet/examples/proxy/create-api-rule.md index 548dcd824..e2345def8 100644 --- a/examples/1.9.x/server-dotnet/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-dotnet/examples/proxy/create-api-rule.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/proxy/create-function-rule.md b/examples/1.9.x/server-dotnet/examples/proxy/create-function-rule.md index c2052d561..d8d76d2ed 100644 --- a/examples/1.9.x/server-dotnet/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-dotnet/examples/proxy/create-function-rule.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-dotnet/examples/proxy/create-redirect-rule.md index bd9ff365f..0e49d6b63 100644 --- a/examples/1.9.x/server-dotnet/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-dotnet/examples/proxy/create-redirect-rule.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key @@ -14,7 +14,7 @@ Proxy proxy = new Proxy(client); ProxyRule result = await proxy.CreateRedirectRule( domain: "", url: "https://example.com", - statusCode: StatusCode.MovedPermanently301, + statusCode: RedirectStatusCode.MovedPermanently, resourceId: "", resourceType: ProxyResourceType.Site );``` diff --git a/examples/1.9.x/server-dotnet/examples/proxy/create-site-rule.md b/examples/1.9.x/server-dotnet/examples/proxy/create-site-rule.md index 6e29ede99..c855f3515 100644 --- a/examples/1.9.x/server-dotnet/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-dotnet/examples/proxy/create-site-rule.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/proxy/delete-rule.md b/examples/1.9.x/server-dotnet/examples/proxy/delete-rule.md index c198c832b..5198f8290 100644 --- a/examples/1.9.x/server-dotnet/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-dotnet/examples/proxy/delete-rule.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/proxy/get-rule.md b/examples/1.9.x/server-dotnet/examples/proxy/get-rule.md index edaca90db..aba3a17f3 100644 --- a/examples/1.9.x/server-dotnet/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-dotnet/examples/proxy/get-rule.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/proxy/list-rules.md b/examples/1.9.x/server-dotnet/examples/proxy/list-rules.md index e38680a4a..a4844ed63 100644 --- a/examples/1.9.x/server-dotnet/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-dotnet/examples/proxy/list-rules.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/proxy/update-rule-status.md b/examples/1.9.x/server-dotnet/examples/proxy/update-rule-status.md index 30f7f9e75..0a45a10bb 100644 --- a/examples/1.9.x/server-dotnet/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-dotnet/examples/proxy/update-rule-status.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/create-deployment.md b/examples/1.9.x/server-dotnet/examples/sites/create-deployment.md index 692d7743e..eaffd8e9b 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/sites/create-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-dotnet/examples/sites/create-duplicate-deployment.md index acca4c7c2..0a399098c 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/sites/create-duplicate-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/create-template-deployment.md b/examples/1.9.x/server-dotnet/examples/sites/create-template-deployment.md index 306a9653d..f78e221a2 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/sites/create-template-deployment.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/create-variable.md b/examples/1.9.x/server-dotnet/examples/sites/create-variable.md index 551e381af..6b255f32a 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/create-variable.md +++ b/examples/1.9.x/server-dotnet/examples/sites/create-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-dotnet/examples/sites/create-vcs-deployment.md index 8a4a618d6..9bc5b8ed7 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/sites/create-vcs-deployment.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/create.md b/examples/1.9.x/server-dotnet/examples/sites/create.md index 391a56c30..32b2d2d21 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/create.md +++ b/examples/1.9.x/server-dotnet/examples/sites/create.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key @@ -14,8 +14,8 @@ Sites sites = new Sites(client); Site result = await sites.Create( siteId: "", name: "", - framework: Framework.Analog, - buildRuntime: BuildRuntime.Node145, + framework: SiteFramework.Analog, + buildRuntime: SiteBuildRuntime.Node145, enabled: false, // optional logging: false, // optional timeout: 1, // optional @@ -23,13 +23,15 @@ Site result = await sites.Create( buildCommand: "", // optional startCommand: "", // optional outputDirectory: "", // optional - adapter: Adapter.Static, // optional + adapter: SiteAdapter.Static, // optional installationId: "", // optional fallbackFile: "", // optional providerRepositoryId: "", // optional providerBranch: "", // optional providerSilentMode: false, // optional providerRootDirectory: "", // optional + providerBranches: new List(), // optional + providerPaths: new List(), // optional buildSpecification: "", // optional runtimeSpecification: "", // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-dotnet/examples/sites/delete-deployment.md b/examples/1.9.x/server-dotnet/examples/sites/delete-deployment.md index fb457b05d..64c5084fb 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/sites/delete-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/delete-log.md b/examples/1.9.x/server-dotnet/examples/sites/delete-log.md index a5aebb198..471b92f3c 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/delete-log.md +++ b/examples/1.9.x/server-dotnet/examples/sites/delete-log.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/delete-variable.md b/examples/1.9.x/server-dotnet/examples/sites/delete-variable.md index 2b79ffeb0..5b8f6ddb8 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-dotnet/examples/sites/delete-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/delete.md b/examples/1.9.x/server-dotnet/examples/sites/delete.md index 2e1470f63..29e9a6027 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/delete.md +++ b/examples/1.9.x/server-dotnet/examples/sites/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/get-deployment-download.md b/examples/1.9.x/server-dotnet/examples/sites/get-deployment-download.md index 25bc376b4..bd113f14c 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-dotnet/examples/sites/get-deployment-download.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/get-deployment.md b/examples/1.9.x/server-dotnet/examples/sites/get-deployment.md index f92ffb424..52182b46c 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/sites/get-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/get-log.md b/examples/1.9.x/server-dotnet/examples/sites/get-log.md index 822bcdbdc..8857efc90 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/get-log.md +++ b/examples/1.9.x/server-dotnet/examples/sites/get-log.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/get-variable.md b/examples/1.9.x/server-dotnet/examples/sites/get-variable.md index 75c28abde..30bec5f9d 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/get-variable.md +++ b/examples/1.9.x/server-dotnet/examples/sites/get-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/get.md b/examples/1.9.x/server-dotnet/examples/sites/get.md index 6863555c8..6069aac2c 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/get.md +++ b/examples/1.9.x/server-dotnet/examples/sites/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/list-deployments.md b/examples/1.9.x/server-dotnet/examples/sites/list-deployments.md index 39acb57c8..9e1c1aefb 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-dotnet/examples/sites/list-deployments.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/list-frameworks.md b/examples/1.9.x/server-dotnet/examples/sites/list-frameworks.md index 8d802f7f6..d400e4e13 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-dotnet/examples/sites/list-frameworks.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/list-logs.md b/examples/1.9.x/server-dotnet/examples/sites/list-logs.md index 36463eeb8..546eec47b 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/list-logs.md +++ b/examples/1.9.x/server-dotnet/examples/sites/list-logs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/list-specifications.md b/examples/1.9.x/server-dotnet/examples/sites/list-specifications.md index a1d63a1e6..71c605378 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-dotnet/examples/sites/list-specifications.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/list-variables.md b/examples/1.9.x/server-dotnet/examples/sites/list-variables.md index 0f3d254fe..467eb9edb 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/list-variables.md +++ b/examples/1.9.x/server-dotnet/examples/sites/list-variables.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/list.md b/examples/1.9.x/server-dotnet/examples/sites/list.md index fe543e7c7..7fd3d9b37 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/list.md +++ b/examples/1.9.x/server-dotnet/examples/sites/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/update-deployment-status.md b/examples/1.9.x/server-dotnet/examples/sites/update-deployment-status.md index 322c8cc16..b9cedbb93 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-dotnet/examples/sites/update-deployment-status.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/update-site-deployment.md b/examples/1.9.x/server-dotnet/examples/sites/update-site-deployment.md index 4f75e1f39..ad510e10a 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-dotnet/examples/sites/update-site-deployment.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/update-variable.md b/examples/1.9.x/server-dotnet/examples/sites/update-variable.md index 2b1e1662c..83449ea6b 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/update-variable.md +++ b/examples/1.9.x/server-dotnet/examples/sites/update-variable.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/sites/update.md b/examples/1.9.x/server-dotnet/examples/sites/update.md index 69662fe05..381423e5a 100644 --- a/examples/1.9.x/server-dotnet/examples/sites/update.md +++ b/examples/1.9.x/server-dotnet/examples/sites/update.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key @@ -14,7 +14,7 @@ Sites sites = new Sites(client); Site result = await sites.Update( siteId: "", name: "", - framework: Framework.Analog, + framework: SiteFramework.Analog, enabled: false, // optional logging: false, // optional timeout: 1, // optional @@ -22,14 +22,16 @@ Site result = await sites.Update( buildCommand: "", // optional startCommand: "", // optional outputDirectory: "", // optional - buildRuntime: BuildRuntime.Node145, // optional - adapter: Adapter.Static, // optional + buildRuntime: SiteBuildRuntime.Node145, // optional + adapter: SiteAdapter.Static, // optional fallbackFile: "", // optional installationId: "", // optional providerRepositoryId: "", // optional providerBranch: "", // optional providerSilentMode: false, // optional providerRootDirectory: "", // optional + providerBranches: new List(), // optional + providerPaths: new List(), // optional buildSpecification: "", // optional runtimeSpecification: "", // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-dotnet/examples/storage/create-bucket.md b/examples/1.9.x/server-dotnet/examples/storage/create-bucket.md index 6ccdb33e2..603d35e3b 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-dotnet/examples/storage/create-bucket.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/storage/create-file.md b/examples/1.9.x/server-dotnet/examples/storage/create-file.md index 356120e76..182d0f59e 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/create-file.md +++ b/examples/1.9.x/server-dotnet/examples/storage/create-file.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/storage/delete-bucket.md b/examples/1.9.x/server-dotnet/examples/storage/delete-bucket.md index dfee759be..46748b2f4 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-dotnet/examples/storage/delete-bucket.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/storage/delete-file.md b/examples/1.9.x/server-dotnet/examples/storage/delete-file.md index a637341b5..04748a5d3 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/delete-file.md +++ b/examples/1.9.x/server-dotnet/examples/storage/delete-file.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/storage/get-bucket.md b/examples/1.9.x/server-dotnet/examples/storage/get-bucket.md index 27d9e405c..428858301 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-dotnet/examples/storage/get-bucket.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/storage/get-file-download.md b/examples/1.9.x/server-dotnet/examples/storage/get-file-download.md index 02ad30d55..a916636bb 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-dotnet/examples/storage/get-file-download.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/storage/get-file-preview.md b/examples/1.9.x/server-dotnet/examples/storage/get-file-preview.md index cc3d88a8a..0c6911f99 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-dotnet/examples/storage/get-file-preview.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/storage/get-file-view.md b/examples/1.9.x/server-dotnet/examples/storage/get-file-view.md index b9088d006..8c0569541 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-dotnet/examples/storage/get-file-view.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/storage/get-file.md b/examples/1.9.x/server-dotnet/examples/storage/get-file.md index 769386ed4..b3538d62b 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/get-file.md +++ b/examples/1.9.x/server-dotnet/examples/storage/get-file.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/storage/list-buckets.md b/examples/1.9.x/server-dotnet/examples/storage/list-buckets.md index 5580b7276..f468de358 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-dotnet/examples/storage/list-buckets.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/storage/list-files.md b/examples/1.9.x/server-dotnet/examples/storage/list-files.md index 939430193..bfa16af9b 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/list-files.md +++ b/examples/1.9.x/server-dotnet/examples/storage/list-files.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/storage/update-bucket.md b/examples/1.9.x/server-dotnet/examples/storage/update-bucket.md index c68d001c1..3be95c5da 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-dotnet/examples/storage/update-bucket.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/storage/update-file.md b/examples/1.9.x/server-dotnet/examples/storage/update-file.md index df3e73732..4bdefe6a0 100644 --- a/examples/1.9.x/server-dotnet/examples/storage/update-file.md +++ b/examples/1.9.x/server-dotnet/examples/storage/update-file.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-big-int-column.md index 581378596..8653d10ab 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-big-int-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-boolean-column.md index 67cefc22f..671be60cc 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-boolean-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-datetime-column.md index 23f02dffc..10b7a8e57 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-datetime-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-email-column.md index 4c07c436a..22289183c 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-email-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-enum-column.md index ebe5d6b7a..fa02bc007 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-enum-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-float-column.md index 2a0c50234..f9b87cfcd 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-float-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-index.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-index.md index 46bfcd277..f4c08c754 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-index.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-integer-column.md index 4f8220412..40b739594 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-integer-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-ip-column.md index bf996e72a..d6fe1c3c9 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-ip-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-line-column.md index e3d438a2c..6f30f652f 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-line-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-longtext-column.md index 9846702d1..41dcdad44 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-longtext-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-mediumtext-column.md index 8d69db7dc..97261268b 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-mediumtext-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-operations.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-operations.md index 1d5b385ae..99ac3448f 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-operations.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-point-column.md index 318e8eb79..6c5e031f8 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-point-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-polygon-column.md index f39ceeb55..11355bf2f 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-polygon-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-relationship-column.md index 003d9b8cf..db5cf269b 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-relationship-column.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-row.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-row.md index 4f6112b8e..9f4bfe909 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-row.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-rows.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-rows.md index 2a8a07b7e..b21a9cf6e 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-rows.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-string-column.md index 28f5e4c3d..bd1f4ce9d 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-string-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-table.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-table.md index 242456de9..cb9b3a3c1 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-table.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-text-column.md index efde4ad8d..eace7630f 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-text-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-transaction.md index 9fea42b88..1c94995ef 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-transaction.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-url-column.md index 1df7b2e9d..8667af78e 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-url-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create-varchar-column.md index 5656c9c20..b9d48bd67 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create-varchar-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/create.md b/examples/1.9.x/server-dotnet/examples/tablesdb/create.md index d34245c84..c7399bc62 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/create.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/create.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/decrement-row-column.md index b91aed745..5b7083e3f 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/decrement-row-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-column.md index edd943258..d39fd014a 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-index.md b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-index.md index e52f9655a..68294bc8d 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-index.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-row.md b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-row.md index 9186473c7..2e8dc5a6e 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-row.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-rows.md index 57762ab4f..cbef21a10 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-rows.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-table.md b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-table.md index 89af4df87..0f58f7777 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-table.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-transaction.md index 42fdcc148..3e766b2b1 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/delete-transaction.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/delete.md b/examples/1.9.x/server-dotnet/examples/tablesdb/delete.md index 051de9706..0d32edefa 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/get-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/get-column.md index 70242d92f..6e91259e3 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/get-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/get-index.md b/examples/1.9.x/server-dotnet/examples/tablesdb/get-index.md index 66cdd1ca8..4bf82de02 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/get-index.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/get-row.md b/examples/1.9.x/server-dotnet/examples/tablesdb/get-row.md index 21af7c4d4..bd96222df 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/get-row.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/get-table.md b/examples/1.9.x/server-dotnet/examples/tablesdb/get-table.md index 9932f84c1..66fa13ad7 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/get-table.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-dotnet/examples/tablesdb/get-transaction.md index a3d72b1a9..24d9b65df 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/get-transaction.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/get.md b/examples/1.9.x/server-dotnet/examples/tablesdb/get.md index 85e7223fd..13a938725 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/get.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/increment-row-column.md index fc594b90d..e055ed0ce 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/increment-row-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/list-columns.md b/examples/1.9.x/server-dotnet/examples/tablesdb/list-columns.md index 5d459077b..8cbf84b43 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/list-columns.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-dotnet/examples/tablesdb/list-indexes.md index 3942b4002..9cec436ed 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/list-indexes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/list-rows.md b/examples/1.9.x/server-dotnet/examples/tablesdb/list-rows.md index e9186378b..3822a855c 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/list-rows.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/list-tables.md b/examples/1.9.x/server-dotnet/examples/tablesdb/list-tables.md index 1d8c95c25..dbf084422 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/list-tables.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-dotnet/examples/tablesdb/list-transactions.md index fe7b4a435..c939ddfc9 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/list-transactions.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/list.md b/examples/1.9.x/server-dotnet/examples/tablesdb/list.md index f3d19ac77..eb4560b31 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/list.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-big-int-column.md index 1ac27c47b..c60d73419 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-big-int-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-boolean-column.md index 4c7763fd4..ef77f091e 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-boolean-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-datetime-column.md index efd202c55..0887fe403 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-datetime-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-email-column.md index 6661c9002..8616bd28c 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-email-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-enum-column.md index 30024727c..05b90c39f 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-enum-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-float-column.md index 24f28a926..77aceb08a 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-float-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-integer-column.md index 0390d353c..d2ab325c0 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-integer-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-ip-column.md index 218342f54..3fe224fc2 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-ip-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-line-column.md index 8aac55998..f0d22f856 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-line-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-longtext-column.md index d7abb4f47..ec7fa5772 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-longtext-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-mediumtext-column.md index 3a8a490fd..f116b45bf 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-mediumtext-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-point-column.md index a976260af..060c01e17 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-point-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-polygon-column.md index f19a0717d..a91a54b3f 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-polygon-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-relationship-column.md index 36cc97d26..265d25944 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-relationship-column.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-row.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-row.md index 54e6ca16c..e59380623 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-row.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-rows.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-rows.md index 0fe6b38b4..03ade8a65 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-rows.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-string-column.md index c0b860db6..b7114cad3 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-string-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-table.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-table.md index fd23907e6..67f39ce66 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-table.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-text-column.md index da4fefaaf..99b75c51f 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-text-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-transaction.md index 99e6a017f..902a3b378 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-transaction.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-url-column.md index 10761c90f..42850789d 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-url-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update-varchar-column.md index 948be687e..9c4e7f78c 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update-varchar-column.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/update.md b/examples/1.9.x/server-dotnet/examples/tablesdb/update.md index e03329dde..7de207b79 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/update.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/update.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-dotnet/examples/tablesdb/upsert-row.md index 5f3c4d28a..a2f629701 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/upsert-row.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-dotnet/examples/tablesdb/upsert-rows.md index b1fbe1910..4834086cf 100644 --- a/examples/1.9.x/server-dotnet/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-dotnet/examples/tablesdb/upsert-rows.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/teams/create-membership.md b/examples/1.9.x/server-dotnet/examples/teams/create-membership.md index f107bbc5d..d6ddce467 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/create-membership.md +++ b/examples/1.9.x/server-dotnet/examples/teams/create-membership.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/create.md b/examples/1.9.x/server-dotnet/examples/teams/create.md index ead315a94..aea980579 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/create.md +++ b/examples/1.9.x/server-dotnet/examples/teams/create.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/delete-membership.md b/examples/1.9.x/server-dotnet/examples/teams/delete-membership.md index ac7ff4326..fedfeb417 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-dotnet/examples/teams/delete-membership.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/delete.md b/examples/1.9.x/server-dotnet/examples/teams/delete.md index 67f20deee..dac32c532 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/delete.md +++ b/examples/1.9.x/server-dotnet/examples/teams/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/get-membership.md b/examples/1.9.x/server-dotnet/examples/teams/get-membership.md index f8c0cd0b7..12fdd2d72 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/get-membership.md +++ b/examples/1.9.x/server-dotnet/examples/teams/get-membership.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/get-prefs.md b/examples/1.9.x/server-dotnet/examples/teams/get-prefs.md index b8a790a1a..3bd983ccd 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-dotnet/examples/teams/get-prefs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/get.md b/examples/1.9.x/server-dotnet/examples/teams/get.md index 0ad3fd3c9..84f227731 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/get.md +++ b/examples/1.9.x/server-dotnet/examples/teams/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/list-memberships.md b/examples/1.9.x/server-dotnet/examples/teams/list-memberships.md index 85fe50cd7..dc66fabe4 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-dotnet/examples/teams/list-memberships.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/list.md b/examples/1.9.x/server-dotnet/examples/teams/list.md index d345222a6..a144dd688 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/list.md +++ b/examples/1.9.x/server-dotnet/examples/teams/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/update-membership-status.md b/examples/1.9.x/server-dotnet/examples/teams/update-membership-status.md index 05d763d3d..d964b87a4 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-dotnet/examples/teams/update-membership-status.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/update-membership.md b/examples/1.9.x/server-dotnet/examples/teams/update-membership.md index 6aef545fe..47a11293b 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/update-membership.md +++ b/examples/1.9.x/server-dotnet/examples/teams/update-membership.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/update-name.md b/examples/1.9.x/server-dotnet/examples/teams/update-name.md index e3161e1be..0f843cef4 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/update-name.md +++ b/examples/1.9.x/server-dotnet/examples/teams/update-name.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/teams/update-prefs.md b/examples/1.9.x/server-dotnet/examples/teams/update-prefs.md index fdfa9e0d7..738013e7d 100644 --- a/examples/1.9.x/server-dotnet/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-dotnet/examples/teams/update-prefs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-dotnet/examples/tokens/create-file-token.md b/examples/1.9.x/server-dotnet/examples/tokens/create-file-token.md index 4960c0426..42bf2b5cd 100644 --- a/examples/1.9.x/server-dotnet/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-dotnet/examples/tokens/create-file-token.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tokens/delete.md b/examples/1.9.x/server-dotnet/examples/tokens/delete.md index 22004e280..3234c0b3b 100644 --- a/examples/1.9.x/server-dotnet/examples/tokens/delete.md +++ b/examples/1.9.x/server-dotnet/examples/tokens/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tokens/get.md b/examples/1.9.x/server-dotnet/examples/tokens/get.md index 274b3432f..a4711441b 100644 --- a/examples/1.9.x/server-dotnet/examples/tokens/get.md +++ b/examples/1.9.x/server-dotnet/examples/tokens/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tokens/list.md b/examples/1.9.x/server-dotnet/examples/tokens/list.md index 0cc4dc4b9..7796ebcad 100644 --- a/examples/1.9.x/server-dotnet/examples/tokens/list.md +++ b/examples/1.9.x/server-dotnet/examples/tokens/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/tokens/update.md b/examples/1.9.x/server-dotnet/examples/tokens/update.md index 6cd7dee01..a09eafebb 100644 --- a/examples/1.9.x/server-dotnet/examples/tokens/update.md +++ b/examples/1.9.x/server-dotnet/examples/tokens/update.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/usage/list-events.md b/examples/1.9.x/server-dotnet/examples/usage/list-events.md index 162d1b161..79e5d1854 100644 --- a/examples/1.9.x/server-dotnet/examples/usage/list-events.md +++ b/examples/1.9.x/server-dotnet/examples/usage/list-events.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/usage/list-gauges.md b/examples/1.9.x/server-dotnet/examples/usage/list-gauges.md index e7ea2a851..53f488bf3 100644 --- a/examples/1.9.x/server-dotnet/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-dotnet/examples/usage/list-gauges.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-argon-2-user.md b/examples/1.9.x/server-dotnet/examples/users/create-argon-2-user.md index 0962eff69..8d0ebcd88 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-argon-2-user.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-dotnet/examples/users/create-bcrypt-user.md index bdcfd9a8b..986935480 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-bcrypt-user.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-jwt.md b/examples/1.9.x/server-dotnet/examples/users/create-jwt.md index 2c6d9770a..78de501e8 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-jwt.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-jwt.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-md-5-user.md b/examples/1.9.x/server-dotnet/examples/users/create-md-5-user.md index 5fc94ca7a..104502ff1 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-md-5-user.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-dotnet/examples/users/create-mfa-recovery-codes.md index 453e66c22..9e2a926c4 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-dotnet/examples/users/create-ph-pass-user.md index 0d6b7fae7..f9e1f95cd 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-ph-pass-user.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-dotnet/examples/users/create-scrypt-modified-user.md index 640cdb8f1..dac1e7cab 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-scrypt-modified-user.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-scrypt-user.md b/examples/1.9.x/server-dotnet/examples/users/create-scrypt-user.md index 47f4d8e14..30bfae96f 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-scrypt-user.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-session.md b/examples/1.9.x/server-dotnet/examples/users/create-session.md index 78cd1d2be..73c4a0d95 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-session.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-sha-user.md b/examples/1.9.x/server-dotnet/examples/users/create-sha-user.md index 9c8d13b73..760dc7cae 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-sha-user.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-target.md b/examples/1.9.x/server-dotnet/examples/users/create-target.md index 171291252..ac39224d6 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-target.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-target.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create-token.md b/examples/1.9.x/server-dotnet/examples/users/create-token.md index 5e8fd9e3a..d799aeef7 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create-token.md +++ b/examples/1.9.x/server-dotnet/examples/users/create-token.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/create.md b/examples/1.9.x/server-dotnet/examples/users/create.md index e15c2071e..812dda3b1 100644 --- a/examples/1.9.x/server-dotnet/examples/users/create.md +++ b/examples/1.9.x/server-dotnet/examples/users/create.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/delete-identity.md b/examples/1.9.x/server-dotnet/examples/users/delete-identity.md index 1237f3a4d..d59873145 100644 --- a/examples/1.9.x/server-dotnet/examples/users/delete-identity.md +++ b/examples/1.9.x/server-dotnet/examples/users/delete-identity.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-dotnet/examples/users/delete-mfa-authenticator.md index 7b311319c..6ba7d4b44 100644 --- a/examples/1.9.x/server-dotnet/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-dotnet/examples/users/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/delete-session.md b/examples/1.9.x/server-dotnet/examples/users/delete-session.md index 5d0282d5f..fcd3530ce 100644 --- a/examples/1.9.x/server-dotnet/examples/users/delete-session.md +++ b/examples/1.9.x/server-dotnet/examples/users/delete-session.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/delete-sessions.md b/examples/1.9.x/server-dotnet/examples/users/delete-sessions.md index 26b2cac1c..4781cde61 100644 --- a/examples/1.9.x/server-dotnet/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-dotnet/examples/users/delete-sessions.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/delete-target.md b/examples/1.9.x/server-dotnet/examples/users/delete-target.md index 60bbc5a6b..82c59db33 100644 --- a/examples/1.9.x/server-dotnet/examples/users/delete-target.md +++ b/examples/1.9.x/server-dotnet/examples/users/delete-target.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/delete.md b/examples/1.9.x/server-dotnet/examples/users/delete.md index f1ee25ffc..4c393bd4a 100644 --- a/examples/1.9.x/server-dotnet/examples/users/delete.md +++ b/examples/1.9.x/server-dotnet/examples/users/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-dotnet/examples/users/get-mfa-recovery-codes.md index 34dca0165..8f80a7528 100644 --- a/examples/1.9.x/server-dotnet/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dotnet/examples/users/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/get-prefs.md b/examples/1.9.x/server-dotnet/examples/users/get-prefs.md index 183bf14af..d086e6814 100644 --- a/examples/1.9.x/server-dotnet/examples/users/get-prefs.md +++ b/examples/1.9.x/server-dotnet/examples/users/get-prefs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/get-target.md b/examples/1.9.x/server-dotnet/examples/users/get-target.md index 428e92480..7cf4db565 100644 --- a/examples/1.9.x/server-dotnet/examples/users/get-target.md +++ b/examples/1.9.x/server-dotnet/examples/users/get-target.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/get.md b/examples/1.9.x/server-dotnet/examples/users/get.md index f1de9cd01..fc3b1a140 100644 --- a/examples/1.9.x/server-dotnet/examples/users/get.md +++ b/examples/1.9.x/server-dotnet/examples/users/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/list-identities.md b/examples/1.9.x/server-dotnet/examples/users/list-identities.md index 3c8cdd62d..f1ae1b981 100644 --- a/examples/1.9.x/server-dotnet/examples/users/list-identities.md +++ b/examples/1.9.x/server-dotnet/examples/users/list-identities.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/list-logs.md b/examples/1.9.x/server-dotnet/examples/users/list-logs.md index b1faf3dc5..9ce509738 100644 --- a/examples/1.9.x/server-dotnet/examples/users/list-logs.md +++ b/examples/1.9.x/server-dotnet/examples/users/list-logs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/list-memberships.md b/examples/1.9.x/server-dotnet/examples/users/list-memberships.md index b72ebb372..351053957 100644 --- a/examples/1.9.x/server-dotnet/examples/users/list-memberships.md +++ b/examples/1.9.x/server-dotnet/examples/users/list-memberships.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/list-mfa-factors.md b/examples/1.9.x/server-dotnet/examples/users/list-mfa-factors.md index 18f888f2a..140e57546 100644 --- a/examples/1.9.x/server-dotnet/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-dotnet/examples/users/list-mfa-factors.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/list-sessions.md b/examples/1.9.x/server-dotnet/examples/users/list-sessions.md index 3c888ddad..113874d9e 100644 --- a/examples/1.9.x/server-dotnet/examples/users/list-sessions.md +++ b/examples/1.9.x/server-dotnet/examples/users/list-sessions.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/list-targets.md b/examples/1.9.x/server-dotnet/examples/users/list-targets.md index d825f0b1a..59d48ac2f 100644 --- a/examples/1.9.x/server-dotnet/examples/users/list-targets.md +++ b/examples/1.9.x/server-dotnet/examples/users/list-targets.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/list.md b/examples/1.9.x/server-dotnet/examples/users/list.md index 24407b555..20b54f9c6 100644 --- a/examples/1.9.x/server-dotnet/examples/users/list.md +++ b/examples/1.9.x/server-dotnet/examples/users/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-email-verification.md b/examples/1.9.x/server-dotnet/examples/users/update-email-verification.md index 1a9bee688..e17b32883 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-email-verification.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-email.md b/examples/1.9.x/server-dotnet/examples/users/update-email.md index 971db635a..d1c62badb 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-email.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-email.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-impersonator.md b/examples/1.9.x/server-dotnet/examples/users/update-impersonator.md index 908bad5f6..be177d25d 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-impersonator.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-labels.md b/examples/1.9.x/server-dotnet/examples/users/update-labels.md index 745fcde07..d795ef86e 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-labels.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-labels.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-dotnet/examples/users/update-mfa-recovery-codes.md index f2c59a7d3..b8ac294f9 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-mfa.md b/examples/1.9.x/server-dotnet/examples/users/update-mfa.md index ea9ae97fe..6156fc179 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-mfa.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-mfa.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-name.md b/examples/1.9.x/server-dotnet/examples/users/update-name.md index 874476e94..afb264b6d 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-name.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-name.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-password.md b/examples/1.9.x/server-dotnet/examples/users/update-password.md index 0222d6f6b..2d721d8bf 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-password.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-password.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-phone-verification.md b/examples/1.9.x/server-dotnet/examples/users/update-phone-verification.md index fce805ceb..7375bbb72 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-phone-verification.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-phone.md b/examples/1.9.x/server-dotnet/examples/users/update-phone.md index dce430d0d..3c7c87df3 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-phone.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-phone.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-prefs.md b/examples/1.9.x/server-dotnet/examples/users/update-prefs.md index e6ebf0d01..a15621a18 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-prefs.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-prefs.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-status.md b/examples/1.9.x/server-dotnet/examples/users/update-status.md index 04057430d..6c9049dac 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-status.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-status.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/users/update-target.md b/examples/1.9.x/server-dotnet/examples/users/update-target.md index 9104e9747..be14f762c 100644 --- a/examples/1.9.x/server-dotnet/examples/users/update-target.md +++ b/examples/1.9.x/server-dotnet/examples/users/update-target.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/webhooks/create.md b/examples/1.9.x/server-dotnet/examples/webhooks/create.md index 35647c9b0..fd7736afa 100644 --- a/examples/1.9.x/server-dotnet/examples/webhooks/create.md +++ b/examples/1.9.x/server-dotnet/examples/webhooks/create.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/webhooks/delete.md b/examples/1.9.x/server-dotnet/examples/webhooks/delete.md index a9aac880d..f52692633 100644 --- a/examples/1.9.x/server-dotnet/examples/webhooks/delete.md +++ b/examples/1.9.x/server-dotnet/examples/webhooks/delete.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/webhooks/get.md b/examples/1.9.x/server-dotnet/examples/webhooks/get.md index f9c6835a3..96866fc8e 100644 --- a/examples/1.9.x/server-dotnet/examples/webhooks/get.md +++ b/examples/1.9.x/server-dotnet/examples/webhooks/get.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/webhooks/list.md b/examples/1.9.x/server-dotnet/examples/webhooks/list.md index 94db7d625..b0b0e39b5 100644 --- a/examples/1.9.x/server-dotnet/examples/webhooks/list.md +++ b/examples/1.9.x/server-dotnet/examples/webhooks/list.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/webhooks/update-secret.md b/examples/1.9.x/server-dotnet/examples/webhooks/update-secret.md index c6b4a1674..fbc3cf1e2 100644 --- a/examples/1.9.x/server-dotnet/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-dotnet/examples/webhooks/update-secret.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-dotnet/examples/webhooks/update.md b/examples/1.9.x/server-dotnet/examples/webhooks/update.md index ca1fac728..525e725b4 100644 --- a/examples/1.9.x/server-dotnet/examples/webhooks/update.md +++ b/examples/1.9.x/server-dotnet/examples/webhooks/update.md @@ -4,7 +4,7 @@ using Appwrite.Models; using Appwrite.Services; Client client = new Client() - .SetEndPoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .SetEndPoint("") // Your API Endpoint .SetProject("") // Your project ID .SetKey(""); // Your secret API key diff --git a/examples/1.9.x/server-go/examples/account/create-anonymous-session.md b/examples/1.9.x/server-go/examples/account/create-anonymous-session.md index 7a8cb087c..3539b4e65 100644 --- a/examples/1.9.x/server-go/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-go/examples/account/create-anonymous-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-email-password-session.md b/examples/1.9.x/server-go/examples/account/create-email-password-session.md index 7410ddd75..51f76e7ae 100644 --- a/examples/1.9.x/server-go/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-go/examples/account/create-email-password-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-email-token.md b/examples/1.9.x/server-go/examples/account/create-email-token.md index e90ba45e6..ae8106944 100644 --- a/examples/1.9.x/server-go/examples/account/create-email-token.md +++ b/examples/1.9.x/server-go/examples/account/create-email-token.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-email-verification.md b/examples/1.9.x/server-go/examples/account/create-email-verification.md index 46c6782cf..8e95f899e 100644 --- a/examples/1.9.x/server-go/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-go/examples/account/create-email-verification.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-jwt.md b/examples/1.9.x/server-go/examples/account/create-jwt.md index a55208343..8ea3afb49 100644 --- a/examples/1.9.x/server-go/examples/account/create-jwt.md +++ b/examples/1.9.x/server-go/examples/account/create-jwt.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-magic-url-token.md b/examples/1.9.x/server-go/examples/account/create-magic-url-token.md index aa6792aff..71383d4a3 100644 --- a/examples/1.9.x/server-go/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-go/examples/account/create-magic-url-token.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-go/examples/account/create-mfa-authenticator.md index 8df4fd181..4b000925a 100644 --- a/examples/1.9.x/server-go/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-go/examples/account/create-mfa-authenticator.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-go/examples/account/create-mfa-challenge.md index ccb5898b2..9b46a337b 100644 --- a/examples/1.9.x/server-go/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-go/examples/account/create-mfa-challenge.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-go/examples/account/create-mfa-recovery-codes.md index 33f824ffe..ce1fb1bf0 100644 --- a/examples/1.9.x/server-go/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-go/examples/account/create-mfa-recovery-codes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-go/examples/account/create-o-auth-2-token.md index c8da31bbb..12207d9df 100644 --- a/examples/1.9.x/server-go/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-go/examples/account/create-o-auth-2-token.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-phone-token.md b/examples/1.9.x/server-go/examples/account/create-phone-token.md index c91d7192b..32ddb1921 100644 --- a/examples/1.9.x/server-go/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-go/examples/account/create-phone-token.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-phone-verification.md b/examples/1.9.x/server-go/examples/account/create-phone-verification.md index 8ecf3f5c6..44a989061 100644 --- a/examples/1.9.x/server-go/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-go/examples/account/create-phone-verification.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-recovery.md b/examples/1.9.x/server-go/examples/account/create-recovery.md index 242ddedc3..57c39d133 100644 --- a/examples/1.9.x/server-go/examples/account/create-recovery.md +++ b/examples/1.9.x/server-go/examples/account/create-recovery.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-session.md b/examples/1.9.x/server-go/examples/account/create-session.md index c25f3ac70..37fc2619f 100644 --- a/examples/1.9.x/server-go/examples/account/create-session.md +++ b/examples/1.9.x/server-go/examples/account/create-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create-verification.md b/examples/1.9.x/server-go/examples/account/create-verification.md index ab8ca98a6..bb154eb3b 100644 --- a/examples/1.9.x/server-go/examples/account/create-verification.md +++ b/examples/1.9.x/server-go/examples/account/create-verification.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/create.md b/examples/1.9.x/server-go/examples/account/create.md index 9844f9409..1d874e0ac 100644 --- a/examples/1.9.x/server-go/examples/account/create.md +++ b/examples/1.9.x/server-go/examples/account/create.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/delete-identity.md b/examples/1.9.x/server-go/examples/account/delete-identity.md index 54e5adad4..81ea41a02 100644 --- a/examples/1.9.x/server-go/examples/account/delete-identity.md +++ b/examples/1.9.x/server-go/examples/account/delete-identity.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-go/examples/account/delete-mfa-authenticator.md index 0def48210..38afc80d3 100644 --- a/examples/1.9.x/server-go/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-go/examples/account/delete-mfa-authenticator.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/delete-session.md b/examples/1.9.x/server-go/examples/account/delete-session.md index 3bde43588..9dc132f78 100644 --- a/examples/1.9.x/server-go/examples/account/delete-session.md +++ b/examples/1.9.x/server-go/examples/account/delete-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/delete-sessions.md b/examples/1.9.x/server-go/examples/account/delete-sessions.md index d0351d351..004233210 100644 --- a/examples/1.9.x/server-go/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-go/examples/account/delete-sessions.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-go/examples/account/get-mfa-recovery-codes.md index e37c0a4a6..326111676 100644 --- a/examples/1.9.x/server-go/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-go/examples/account/get-mfa-recovery-codes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/get-prefs.md b/examples/1.9.x/server-go/examples/account/get-prefs.md index dcd569e6a..3234f4a32 100644 --- a/examples/1.9.x/server-go/examples/account/get-prefs.md +++ b/examples/1.9.x/server-go/examples/account/get-prefs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/get-session.md b/examples/1.9.x/server-go/examples/account/get-session.md index 5b29d6751..259222232 100644 --- a/examples/1.9.x/server-go/examples/account/get-session.md +++ b/examples/1.9.x/server-go/examples/account/get-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/get.md b/examples/1.9.x/server-go/examples/account/get.md index 2aca55af1..84b4b586b 100644 --- a/examples/1.9.x/server-go/examples/account/get.md +++ b/examples/1.9.x/server-go/examples/account/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/list-identities.md b/examples/1.9.x/server-go/examples/account/list-identities.md index 74f6d6b4e..a225fcec3 100644 --- a/examples/1.9.x/server-go/examples/account/list-identities.md +++ b/examples/1.9.x/server-go/examples/account/list-identities.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/list-logs.md b/examples/1.9.x/server-go/examples/account/list-logs.md index 36024a120..9e8254360 100644 --- a/examples/1.9.x/server-go/examples/account/list-logs.md +++ b/examples/1.9.x/server-go/examples/account/list-logs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/list-mfa-factors.md b/examples/1.9.x/server-go/examples/account/list-mfa-factors.md index ea5fa699c..993058436 100644 --- a/examples/1.9.x/server-go/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-go/examples/account/list-mfa-factors.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/list-sessions.md b/examples/1.9.x/server-go/examples/account/list-sessions.md index 658f15321..2fc2826d9 100644 --- a/examples/1.9.x/server-go/examples/account/list-sessions.md +++ b/examples/1.9.x/server-go/examples/account/list-sessions.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-email-verification.md b/examples/1.9.x/server-go/examples/account/update-email-verification.md index f35c557bb..387c2edb0 100644 --- a/examples/1.9.x/server-go/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-go/examples/account/update-email-verification.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-email.md b/examples/1.9.x/server-go/examples/account/update-email.md index 09f8e4128..68bd48de5 100644 --- a/examples/1.9.x/server-go/examples/account/update-email.md +++ b/examples/1.9.x/server-go/examples/account/update-email.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-magic-url-session.md b/examples/1.9.x/server-go/examples/account/update-magic-url-session.md index b32687677..19bdfe2bf 100644 --- a/examples/1.9.x/server-go/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-go/examples/account/update-magic-url-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-go/examples/account/update-mfa-authenticator.md index ba4bb811e..faffa9955 100644 --- a/examples/1.9.x/server-go/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-go/examples/account/update-mfa-authenticator.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-go/examples/account/update-mfa-challenge.md index 2b8d97347..2ee0d73ce 100644 --- a/examples/1.9.x/server-go/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-go/examples/account/update-mfa-challenge.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-go/examples/account/update-mfa-recovery-codes.md index 6e20f8016..8e514ca37 100644 --- a/examples/1.9.x/server-go/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-go/examples/account/update-mfa-recovery-codes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-mfa.md b/examples/1.9.x/server-go/examples/account/update-mfa.md index 2a37127a3..a70902774 100644 --- a/examples/1.9.x/server-go/examples/account/update-mfa.md +++ b/examples/1.9.x/server-go/examples/account/update-mfa.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-name.md b/examples/1.9.x/server-go/examples/account/update-name.md index 00e1e84c0..9f9e18779 100644 --- a/examples/1.9.x/server-go/examples/account/update-name.md +++ b/examples/1.9.x/server-go/examples/account/update-name.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-password.md b/examples/1.9.x/server-go/examples/account/update-password.md index 06c91d61e..dc3e0d306 100644 --- a/examples/1.9.x/server-go/examples/account/update-password.md +++ b/examples/1.9.x/server-go/examples/account/update-password.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-phone-session.md b/examples/1.9.x/server-go/examples/account/update-phone-session.md index c2cb52243..b000d2e30 100644 --- a/examples/1.9.x/server-go/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-go/examples/account/update-phone-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-phone-verification.md b/examples/1.9.x/server-go/examples/account/update-phone-verification.md index dac49195b..036f2f134 100644 --- a/examples/1.9.x/server-go/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-go/examples/account/update-phone-verification.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-phone.md b/examples/1.9.x/server-go/examples/account/update-phone.md index 9cc4730b2..daf942383 100644 --- a/examples/1.9.x/server-go/examples/account/update-phone.md +++ b/examples/1.9.x/server-go/examples/account/update-phone.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-prefs.md b/examples/1.9.x/server-go/examples/account/update-prefs.md index fd9ceda2c..0b93661d9 100644 --- a/examples/1.9.x/server-go/examples/account/update-prefs.md +++ b/examples/1.9.x/server-go/examples/account/update-prefs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-recovery.md b/examples/1.9.x/server-go/examples/account/update-recovery.md index 429edf412..2e89552d2 100644 --- a/examples/1.9.x/server-go/examples/account/update-recovery.md +++ b/examples/1.9.x/server-go/examples/account/update-recovery.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-session.md b/examples/1.9.x/server-go/examples/account/update-session.md index b66c4b6b1..b41098cfd 100644 --- a/examples/1.9.x/server-go/examples/account/update-session.md +++ b/examples/1.9.x/server-go/examples/account/update-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-status.md b/examples/1.9.x/server-go/examples/account/update-status.md index 0bb0048a1..974ad0d05 100644 --- a/examples/1.9.x/server-go/examples/account/update-status.md +++ b/examples/1.9.x/server-go/examples/account/update-status.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/account/update-verification.md b/examples/1.9.x/server-go/examples/account/update-verification.md index 66f09a782..229b549d1 100644 --- a/examples/1.9.x/server-go/examples/account/update-verification.md +++ b/examples/1.9.x/server-go/examples/account/update-verification.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/activities/get-event.md b/examples/1.9.x/server-go/examples/activities/get-event.md index 63b4a859d..d605619fc 100644 --- a/examples/1.9.x/server-go/examples/activities/get-event.md +++ b/examples/1.9.x/server-go/examples/activities/get-event.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/activities/list-events.md b/examples/1.9.x/server-go/examples/activities/list-events.md index 0c39e7274..e1ebdd8a0 100644 --- a/examples/1.9.x/server-go/examples/activities/list-events.md +++ b/examples/1.9.x/server-go/examples/activities/list-events.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/advisor/delete-report.md b/examples/1.9.x/server-go/examples/advisor/delete-report.md index 4d5c0e630..58a52f836 100644 --- a/examples/1.9.x/server-go/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-go/examples/advisor/delete-report.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/advisor/get-insight.md b/examples/1.9.x/server-go/examples/advisor/get-insight.md index a6b46eee5..3a41351df 100644 --- a/examples/1.9.x/server-go/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-go/examples/advisor/get-insight.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/advisor/get-report.md b/examples/1.9.x/server-go/examples/advisor/get-report.md index 082b9fd8e..aae409022 100644 --- a/examples/1.9.x/server-go/examples/advisor/get-report.md +++ b/examples/1.9.x/server-go/examples/advisor/get-report.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/advisor/list-insights.md b/examples/1.9.x/server-go/examples/advisor/list-insights.md index 05765ad73..d1ee83d46 100644 --- a/examples/1.9.x/server-go/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-go/examples/advisor/list-insights.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/advisor/list-reports.md b/examples/1.9.x/server-go/examples/advisor/list-reports.md index ba919d546..102ae9572 100644 --- a/examples/1.9.x/server-go/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-go/examples/advisor/list-reports.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/avatars/get-browser.md b/examples/1.9.x/server-go/examples/avatars/get-browser.md index 795527a6a..af38dde12 100644 --- a/examples/1.9.x/server-go/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-go/examples/avatars/get-browser.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/avatars/get-credit-card.md b/examples/1.9.x/server-go/examples/avatars/get-credit-card.md index f9cea7c88..cfd183e1b 100644 --- a/examples/1.9.x/server-go/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-go/examples/avatars/get-credit-card.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/avatars/get-favicon.md b/examples/1.9.x/server-go/examples/avatars/get-favicon.md index 09dff598c..f2f6e47f8 100644 --- a/examples/1.9.x/server-go/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-go/examples/avatars/get-favicon.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/avatars/get-flag.md b/examples/1.9.x/server-go/examples/avatars/get-flag.md index 5a1e68b5f..41eea25ed 100644 --- a/examples/1.9.x/server-go/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-go/examples/avatars/get-flag.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/avatars/get-image.md b/examples/1.9.x/server-go/examples/avatars/get-image.md index ec3b13108..5d14ce60b 100644 --- a/examples/1.9.x/server-go/examples/avatars/get-image.md +++ b/examples/1.9.x/server-go/examples/avatars/get-image.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/avatars/get-initials.md b/examples/1.9.x/server-go/examples/avatars/get-initials.md index d522a6871..f6f07965a 100644 --- a/examples/1.9.x/server-go/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-go/examples/avatars/get-initials.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/avatars/get-qr.md b/examples/1.9.x/server-go/examples/avatars/get-qr.md index 39ea2dcef..bb633d8e5 100644 --- a/examples/1.9.x/server-go/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-go/examples/avatars/get-qr.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/avatars/get-screenshot.md b/examples/1.9.x/server-go/examples/avatars/get-screenshot.md index e199c01bd..1e956de45 100644 --- a/examples/1.9.x/server-go/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-go/examples/avatars/get-screenshot.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/backups/create-archive.md b/examples/1.9.x/server-go/examples/backups/create-archive.md index 9fc14e1bf..01a867612 100644 --- a/examples/1.9.x/server-go/examples/backups/create-archive.md +++ b/examples/1.9.x/server-go/examples/backups/create-archive.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/create-policy.md b/examples/1.9.x/server-go/examples/backups/create-policy.md index a62ce8efc..a552d315f 100644 --- a/examples/1.9.x/server-go/examples/backups/create-policy.md +++ b/examples/1.9.x/server-go/examples/backups/create-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/create-restoration.md b/examples/1.9.x/server-go/examples/backups/create-restoration.md index d7a00351d..75e81d171 100644 --- a/examples/1.9.x/server-go/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-go/examples/backups/create-restoration.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/delete-archive.md b/examples/1.9.x/server-go/examples/backups/delete-archive.md index 8a44767d9..6d0ae7b60 100644 --- a/examples/1.9.x/server-go/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-go/examples/backups/delete-archive.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/delete-policy.md b/examples/1.9.x/server-go/examples/backups/delete-policy.md index 740989d82..c87c27011 100644 --- a/examples/1.9.x/server-go/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-go/examples/backups/delete-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/get-archive.md b/examples/1.9.x/server-go/examples/backups/get-archive.md index 927ca8a7b..e53b3d002 100644 --- a/examples/1.9.x/server-go/examples/backups/get-archive.md +++ b/examples/1.9.x/server-go/examples/backups/get-archive.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/get-policy.md b/examples/1.9.x/server-go/examples/backups/get-policy.md index 1ac6c8abf..62c0e68ba 100644 --- a/examples/1.9.x/server-go/examples/backups/get-policy.md +++ b/examples/1.9.x/server-go/examples/backups/get-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/get-restoration.md b/examples/1.9.x/server-go/examples/backups/get-restoration.md index 916be261c..770aee4ad 100644 --- a/examples/1.9.x/server-go/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-go/examples/backups/get-restoration.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/list-archives.md b/examples/1.9.x/server-go/examples/backups/list-archives.md index e17c54ec9..515972650 100644 --- a/examples/1.9.x/server-go/examples/backups/list-archives.md +++ b/examples/1.9.x/server-go/examples/backups/list-archives.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/list-policies.md b/examples/1.9.x/server-go/examples/backups/list-policies.md index c053b75fe..90557bbeb 100644 --- a/examples/1.9.x/server-go/examples/backups/list-policies.md +++ b/examples/1.9.x/server-go/examples/backups/list-policies.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/list-restorations.md b/examples/1.9.x/server-go/examples/backups/list-restorations.md index 1e1274367..99f5a6109 100644 --- a/examples/1.9.x/server-go/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-go/examples/backups/list-restorations.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/backups/update-policy.md b/examples/1.9.x/server-go/examples/backups/update-policy.md index 26a6044b5..33682585f 100644 --- a/examples/1.9.x/server-go/examples/backups/update-policy.md +++ b/examples/1.9.x/server-go/examples/backups/update-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-go/examples/databases/create-big-int-attribute.md index db07a2381..8a5eb19ef 100644 --- a/examples/1.9.x/server-go/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-big-int-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-go/examples/databases/create-boolean-attribute.md index cd81728f7..c129bb612 100644 --- a/examples/1.9.x/server-go/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-boolean-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-collection.md b/examples/1.9.x/server-go/examples/databases/create-collection.md index e4dc478ac..d3829a229 100644 --- a/examples/1.9.x/server-go/examples/databases/create-collection.md +++ b/examples/1.9.x/server-go/examples/databases/create-collection.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-go/examples/databases/create-datetime-attribute.md index aba44fb86..96a201d8f 100644 --- a/examples/1.9.x/server-go/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-datetime-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-document.md b/examples/1.9.x/server-go/examples/databases/create-document.md index c790b2b2c..6a56b94ba 100644 --- a/examples/1.9.x/server-go/examples/databases/create-document.md +++ b/examples/1.9.x/server-go/examples/databases/create-document.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-documents.md b/examples/1.9.x/server-go/examples/databases/create-documents.md index 8e7747443..4b85b1e25 100644 --- a/examples/1.9.x/server-go/examples/databases/create-documents.md +++ b/examples/1.9.x/server-go/examples/databases/create-documents.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-email-attribute.md b/examples/1.9.x/server-go/examples/databases/create-email-attribute.md index 8f4533510..40afd24cc 100644 --- a/examples/1.9.x/server-go/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-email-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-go/examples/databases/create-enum-attribute.md index ec8762745..82af2377f 100644 --- a/examples/1.9.x/server-go/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-enum-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-float-attribute.md b/examples/1.9.x/server-go/examples/databases/create-float-attribute.md index ebb845afb..663858037 100644 --- a/examples/1.9.x/server-go/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-float-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-index.md b/examples/1.9.x/server-go/examples/databases/create-index.md index 2ce0d93f8..f2d4ef8b5 100644 --- a/examples/1.9.x/server-go/examples/databases/create-index.md +++ b/examples/1.9.x/server-go/examples/databases/create-index.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-go/examples/databases/create-integer-attribute.md index 35d1cb2a9..1b41c58c4 100644 --- a/examples/1.9.x/server-go/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-integer-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-go/examples/databases/create-ip-attribute.md index 689df8de4..d1435b941 100644 --- a/examples/1.9.x/server-go/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-ip-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-line-attribute.md b/examples/1.9.x/server-go/examples/databases/create-line-attribute.md index f76653bec..feacebd4b 100644 --- a/examples/1.9.x/server-go/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-line-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-go/examples/databases/create-longtext-attribute.md index 936bc933d..558523090 100644 --- a/examples/1.9.x/server-go/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-longtext-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-go/examples/databases/create-mediumtext-attribute.md index 2ce24cad5..86023b482 100644 --- a/examples/1.9.x/server-go/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-mediumtext-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-operations.md b/examples/1.9.x/server-go/examples/databases/create-operations.md index 37f43ca2f..666a211a2 100644 --- a/examples/1.9.x/server-go/examples/databases/create-operations.md +++ b/examples/1.9.x/server-go/examples/databases/create-operations.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-point-attribute.md b/examples/1.9.x/server-go/examples/databases/create-point-attribute.md index 10b3fb1ed..38eba8e17 100644 --- a/examples/1.9.x/server-go/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-point-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-go/examples/databases/create-polygon-attribute.md index c0c6e7d24..e8de6f066 100644 --- a/examples/1.9.x/server-go/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-polygon-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-go/examples/databases/create-relationship-attribute.md index 759e7996b..05b15ac5d 100644 --- a/examples/1.9.x/server-go/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-relationship-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-string-attribute.md b/examples/1.9.x/server-go/examples/databases/create-string-attribute.md index 11e9374be..1ccdac229 100644 --- a/examples/1.9.x/server-go/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-string-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-text-attribute.md b/examples/1.9.x/server-go/examples/databases/create-text-attribute.md index 4515b756f..dd7387197 100644 --- a/examples/1.9.x/server-go/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-text-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-transaction.md b/examples/1.9.x/server-go/examples/databases/create-transaction.md index 2a725d68a..113c137f5 100644 --- a/examples/1.9.x/server-go/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-go/examples/databases/create-transaction.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-url-attribute.md b/examples/1.9.x/server-go/examples/databases/create-url-attribute.md index 5cf8095d3..eb64b706d 100644 --- a/examples/1.9.x/server-go/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-url-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-go/examples/databases/create-varchar-attribute.md index d3b569af2..a72d12440 100644 --- a/examples/1.9.x/server-go/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/create-varchar-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/create.md b/examples/1.9.x/server-go/examples/databases/create.md index c53535c97..20d78f136 100644 --- a/examples/1.9.x/server-go/examples/databases/create.md +++ b/examples/1.9.x/server-go/examples/databases/create.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-go/examples/databases/decrement-document-attribute.md index d0fa4a325..b093c7c00 100644 --- a/examples/1.9.x/server-go/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/decrement-document-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/databases/delete-attribute.md b/examples/1.9.x/server-go/examples/databases/delete-attribute.md index 350a40832..22f889012 100644 --- a/examples/1.9.x/server-go/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/delete-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/delete-collection.md b/examples/1.9.x/server-go/examples/databases/delete-collection.md index cfe815b05..e5f8c30f5 100644 --- a/examples/1.9.x/server-go/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-go/examples/databases/delete-collection.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/delete-document.md b/examples/1.9.x/server-go/examples/databases/delete-document.md index 204294a84..0c93f2e8b 100644 --- a/examples/1.9.x/server-go/examples/databases/delete-document.md +++ b/examples/1.9.x/server-go/examples/databases/delete-document.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/databases/delete-documents.md b/examples/1.9.x/server-go/examples/databases/delete-documents.md index 33f15e387..6b4d6d07e 100644 --- a/examples/1.9.x/server-go/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-go/examples/databases/delete-documents.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/delete-index.md b/examples/1.9.x/server-go/examples/databases/delete-index.md index 7932d3ee0..ec7dfa616 100644 --- a/examples/1.9.x/server-go/examples/databases/delete-index.md +++ b/examples/1.9.x/server-go/examples/databases/delete-index.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/delete-transaction.md b/examples/1.9.x/server-go/examples/databases/delete-transaction.md index 78ef85b0a..098a5006f 100644 --- a/examples/1.9.x/server-go/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-go/examples/databases/delete-transaction.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/delete.md b/examples/1.9.x/server-go/examples/databases/delete.md index 4a147b771..1d21a75c3 100644 --- a/examples/1.9.x/server-go/examples/databases/delete.md +++ b/examples/1.9.x/server-go/examples/databases/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/get-attribute.md b/examples/1.9.x/server-go/examples/databases/get-attribute.md index bfd3598c4..a83e68d3d 100644 --- a/examples/1.9.x/server-go/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/get-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/get-collection.md b/examples/1.9.x/server-go/examples/databases/get-collection.md index 01f950c60..7c3b65a51 100644 --- a/examples/1.9.x/server-go/examples/databases/get-collection.md +++ b/examples/1.9.x/server-go/examples/databases/get-collection.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/get-document.md b/examples/1.9.x/server-go/examples/databases/get-document.md index bb551646d..8959b3ec9 100644 --- a/examples/1.9.x/server-go/examples/databases/get-document.md +++ b/examples/1.9.x/server-go/examples/databases/get-document.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/databases/get-index.md b/examples/1.9.x/server-go/examples/databases/get-index.md index 8de6b15eb..36970f824 100644 --- a/examples/1.9.x/server-go/examples/databases/get-index.md +++ b/examples/1.9.x/server-go/examples/databases/get-index.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/get-transaction.md b/examples/1.9.x/server-go/examples/databases/get-transaction.md index 02e8b5b6f..ff62c2816 100644 --- a/examples/1.9.x/server-go/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-go/examples/databases/get-transaction.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/get.md b/examples/1.9.x/server-go/examples/databases/get.md index 5b5df1e9b..215b42e83 100644 --- a/examples/1.9.x/server-go/examples/databases/get.md +++ b/examples/1.9.x/server-go/examples/databases/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-go/examples/databases/increment-document-attribute.md index 331fb44bd..38916d804 100644 --- a/examples/1.9.x/server-go/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/increment-document-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/databases/list-attributes.md b/examples/1.9.x/server-go/examples/databases/list-attributes.md index e53c5cd9d..20cfc2121 100644 --- a/examples/1.9.x/server-go/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-go/examples/databases/list-attributes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/list-collections.md b/examples/1.9.x/server-go/examples/databases/list-collections.md index aac8213c6..636828cad 100644 --- a/examples/1.9.x/server-go/examples/databases/list-collections.md +++ b/examples/1.9.x/server-go/examples/databases/list-collections.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/list-documents.md b/examples/1.9.x/server-go/examples/databases/list-documents.md index fe8f3cea7..d9858ab0a 100644 --- a/examples/1.9.x/server-go/examples/databases/list-documents.md +++ b/examples/1.9.x/server-go/examples/databases/list-documents.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/databases/list-indexes.md b/examples/1.9.x/server-go/examples/databases/list-indexes.md index d8a85b81a..62419c279 100644 --- a/examples/1.9.x/server-go/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-go/examples/databases/list-indexes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/list-transactions.md b/examples/1.9.x/server-go/examples/databases/list-transactions.md index f2a7854f7..53a8a7321 100644 --- a/examples/1.9.x/server-go/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-go/examples/databases/list-transactions.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/list.md b/examples/1.9.x/server-go/examples/databases/list.md index ce620ef68..3d8292513 100644 --- a/examples/1.9.x/server-go/examples/databases/list.md +++ b/examples/1.9.x/server-go/examples/databases/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-go/examples/databases/update-big-int-attribute.md index 5363c9610..0bc51f489 100644 --- a/examples/1.9.x/server-go/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-big-int-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-go/examples/databases/update-boolean-attribute.md index 7e663539a..44e60df3e 100644 --- a/examples/1.9.x/server-go/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-boolean-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-collection.md b/examples/1.9.x/server-go/examples/databases/update-collection.md index bb232c009..5bb156a56 100644 --- a/examples/1.9.x/server-go/examples/databases/update-collection.md +++ b/examples/1.9.x/server-go/examples/databases/update-collection.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-go/examples/databases/update-datetime-attribute.md index 555c8780e..364b575d6 100644 --- a/examples/1.9.x/server-go/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-datetime-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-document.md b/examples/1.9.x/server-go/examples/databases/update-document.md index 28ca13c9d..b3d4db9c1 100644 --- a/examples/1.9.x/server-go/examples/databases/update-document.md +++ b/examples/1.9.x/server-go/examples/databases/update-document.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-documents.md b/examples/1.9.x/server-go/examples/databases/update-documents.md index c9765d990..65624168e 100644 --- a/examples/1.9.x/server-go/examples/databases/update-documents.md +++ b/examples/1.9.x/server-go/examples/databases/update-documents.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-email-attribute.md b/examples/1.9.x/server-go/examples/databases/update-email-attribute.md index e2e17646d..4363aa8b9 100644 --- a/examples/1.9.x/server-go/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-email-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-go/examples/databases/update-enum-attribute.md index e25e40fd8..900dc2def 100644 --- a/examples/1.9.x/server-go/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-enum-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-float-attribute.md b/examples/1.9.x/server-go/examples/databases/update-float-attribute.md index a7065b45c..e238b22ce 100644 --- a/examples/1.9.x/server-go/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-float-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-go/examples/databases/update-integer-attribute.md index 7a8452b27..f22512444 100644 --- a/examples/1.9.x/server-go/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-integer-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-go/examples/databases/update-ip-attribute.md index 7e399cdfb..a842c8dbd 100644 --- a/examples/1.9.x/server-go/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-ip-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-line-attribute.md b/examples/1.9.x/server-go/examples/databases/update-line-attribute.md index 8da0bde73..ab351ebaa 100644 --- a/examples/1.9.x/server-go/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-line-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-go/examples/databases/update-longtext-attribute.md index 0e9e154d1..c0ab0210d 100644 --- a/examples/1.9.x/server-go/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-longtext-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-go/examples/databases/update-mediumtext-attribute.md index 86a6ed682..7bee811a7 100644 --- a/examples/1.9.x/server-go/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-mediumtext-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-point-attribute.md b/examples/1.9.x/server-go/examples/databases/update-point-attribute.md index 2f11a5f3b..5f7f5ab7e 100644 --- a/examples/1.9.x/server-go/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-point-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-go/examples/databases/update-polygon-attribute.md index ac2cd16ee..a3d57d783 100644 --- a/examples/1.9.x/server-go/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-polygon-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-go/examples/databases/update-relationship-attribute.md index c0affa5a2..bd3eac550 100644 --- a/examples/1.9.x/server-go/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-relationship-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-string-attribute.md b/examples/1.9.x/server-go/examples/databases/update-string-attribute.md index 9a20ba7e6..8f46764a5 100644 --- a/examples/1.9.x/server-go/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-string-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-text-attribute.md b/examples/1.9.x/server-go/examples/databases/update-text-attribute.md index c5f907db3..5863d9387 100644 --- a/examples/1.9.x/server-go/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-text-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-transaction.md b/examples/1.9.x/server-go/examples/databases/update-transaction.md index bf165b9bf..2c0cc09e2 100644 --- a/examples/1.9.x/server-go/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-go/examples/databases/update-transaction.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-url-attribute.md b/examples/1.9.x/server-go/examples/databases/update-url-attribute.md index 79ee9ad08..cc78bea34 100644 --- a/examples/1.9.x/server-go/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-url-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-go/examples/databases/update-varchar-attribute.md index 811d35598..0d95bca77 100644 --- a/examples/1.9.x/server-go/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-go/examples/databases/update-varchar-attribute.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/update.md b/examples/1.9.x/server-go/examples/databases/update.md index a5bb11bc8..ae5d18ee6 100644 --- a/examples/1.9.x/server-go/examples/databases/update.md +++ b/examples/1.9.x/server-go/examples/databases/update.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/databases/upsert-document.md b/examples/1.9.x/server-go/examples/databases/upsert-document.md index d59fcea77..f70c36981 100644 --- a/examples/1.9.x/server-go/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-go/examples/databases/upsert-document.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/databases/upsert-documents.md b/examples/1.9.x/server-go/examples/databases/upsert-documents.md index 6aee62e5a..28527b15d 100644 --- a/examples/1.9.x/server-go/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-go/examples/databases/upsert-documents.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/create-deployment.md b/examples/1.9.x/server-go/examples/functions/create-deployment.md index ef9676feb..364f0b154 100644 --- a/examples/1.9.x/server-go/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-go/examples/functions/create-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-go/examples/functions/create-duplicate-deployment.md index e3dd6428e..85063962a 100644 --- a/examples/1.9.x/server-go/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-go/examples/functions/create-duplicate-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/create-execution.md b/examples/1.9.x/server-go/examples/functions/create-execution.md index 1948927f1..f67ae9e58 100644 --- a/examples/1.9.x/server-go/examples/functions/create-execution.md +++ b/examples/1.9.x/server-go/examples/functions/create-execution.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/functions/create-template-deployment.md b/examples/1.9.x/server-go/examples/functions/create-template-deployment.md index a643cac35..d2bbc16a9 100644 --- a/examples/1.9.x/server-go/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-go/examples/functions/create-template-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/create-variable.md b/examples/1.9.x/server-go/examples/functions/create-variable.md index 3ce53661a..56c632865 100644 --- a/examples/1.9.x/server-go/examples/functions/create-variable.md +++ b/examples/1.9.x/server-go/examples/functions/create-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-go/examples/functions/create-vcs-deployment.md index b50034058..79aef8e51 100644 --- a/examples/1.9.x/server-go/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-go/examples/functions/create-vcs-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/create.md b/examples/1.9.x/server-go/examples/functions/create.md index 1a4aac000..6dff9105d 100644 --- a/examples/1.9.x/server-go/examples/functions/create.md +++ b/examples/1.9.x/server-go/examples/functions/create.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) @@ -33,6 +33,8 @@ response, error := service.Create( functions.WithCreateProviderBranch(""), functions.WithCreateProviderSilentMode(false), functions.WithCreateProviderRootDirectory(""), + functions.WithCreateProviderBranches([]interface{}{}), + functions.WithCreateProviderPaths([]interface{}{}), functions.WithCreateBuildSpecification(""), functions.WithCreateRuntimeSpecification(""), functions.WithCreateDeploymentRetention(0), diff --git a/examples/1.9.x/server-go/examples/functions/delete-deployment.md b/examples/1.9.x/server-go/examples/functions/delete-deployment.md index 3808fea90..5da0c855f 100644 --- a/examples/1.9.x/server-go/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-go/examples/functions/delete-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/delete-execution.md b/examples/1.9.x/server-go/examples/functions/delete-execution.md index 4fa801b5e..31aeaa2b0 100644 --- a/examples/1.9.x/server-go/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-go/examples/functions/delete-execution.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/delete-variable.md b/examples/1.9.x/server-go/examples/functions/delete-variable.md index 12cac4902..fa86023a1 100644 --- a/examples/1.9.x/server-go/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-go/examples/functions/delete-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/delete.md b/examples/1.9.x/server-go/examples/functions/delete.md index 0d09ebab2..1f32bb1ad 100644 --- a/examples/1.9.x/server-go/examples/functions/delete.md +++ b/examples/1.9.x/server-go/examples/functions/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/get-deployment-download.md b/examples/1.9.x/server-go/examples/functions/get-deployment-download.md index 56a40a730..a53706bd9 100644 --- a/examples/1.9.x/server-go/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-go/examples/functions/get-deployment-download.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/get-deployment.md b/examples/1.9.x/server-go/examples/functions/get-deployment.md index eda50476d..f771eefcc 100644 --- a/examples/1.9.x/server-go/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-go/examples/functions/get-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/get-execution.md b/examples/1.9.x/server-go/examples/functions/get-execution.md index 4c3c05aab..560f4baba 100644 --- a/examples/1.9.x/server-go/examples/functions/get-execution.md +++ b/examples/1.9.x/server-go/examples/functions/get-execution.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/functions/get-variable.md b/examples/1.9.x/server-go/examples/functions/get-variable.md index 33b5a6fb2..7959e6a32 100644 --- a/examples/1.9.x/server-go/examples/functions/get-variable.md +++ b/examples/1.9.x/server-go/examples/functions/get-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/get.md b/examples/1.9.x/server-go/examples/functions/get.md index 840d3de90..9c1ffea68 100644 --- a/examples/1.9.x/server-go/examples/functions/get.md +++ b/examples/1.9.x/server-go/examples/functions/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/list-deployments.md b/examples/1.9.x/server-go/examples/functions/list-deployments.md index ed933db06..6615c6b32 100644 --- a/examples/1.9.x/server-go/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-go/examples/functions/list-deployments.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/list-executions.md b/examples/1.9.x/server-go/examples/functions/list-executions.md index 6d615255d..8860f1bf2 100644 --- a/examples/1.9.x/server-go/examples/functions/list-executions.md +++ b/examples/1.9.x/server-go/examples/functions/list-executions.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/functions/list-runtimes.md b/examples/1.9.x/server-go/examples/functions/list-runtimes.md index c7f5d4701..fbd328ff4 100644 --- a/examples/1.9.x/server-go/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-go/examples/functions/list-runtimes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/list-specifications.md b/examples/1.9.x/server-go/examples/functions/list-specifications.md index 3594b7087..dbf54abc7 100644 --- a/examples/1.9.x/server-go/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-go/examples/functions/list-specifications.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/list-variables.md b/examples/1.9.x/server-go/examples/functions/list-variables.md index 63b2efbce..7eb584ef5 100644 --- a/examples/1.9.x/server-go/examples/functions/list-variables.md +++ b/examples/1.9.x/server-go/examples/functions/list-variables.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/list.md b/examples/1.9.x/server-go/examples/functions/list.md index cb0e7a593..41ac6a6ad 100644 --- a/examples/1.9.x/server-go/examples/functions/list.md +++ b/examples/1.9.x/server-go/examples/functions/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/update-deployment-status.md b/examples/1.9.x/server-go/examples/functions/update-deployment-status.md index b7f5175e6..b9fe4276a 100644 --- a/examples/1.9.x/server-go/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-go/examples/functions/update-deployment-status.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/update-function-deployment.md b/examples/1.9.x/server-go/examples/functions/update-function-deployment.md index 882b8cd2d..a56df1575 100644 --- a/examples/1.9.x/server-go/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-go/examples/functions/update-function-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/update-variable.md b/examples/1.9.x/server-go/examples/functions/update-variable.md index dee9e710f..ca32bdb33 100644 --- a/examples/1.9.x/server-go/examples/functions/update-variable.md +++ b/examples/1.9.x/server-go/examples/functions/update-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/functions/update.md b/examples/1.9.x/server-go/examples/functions/update.md index 5d3936cff..5bd3b49b4 100644 --- a/examples/1.9.x/server-go/examples/functions/update.md +++ b/examples/1.9.x/server-go/examples/functions/update.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) @@ -33,6 +33,8 @@ response, error := service.Update( functions.WithUpdateProviderBranch(""), functions.WithUpdateProviderSilentMode(false), functions.WithUpdateProviderRootDirectory(""), + functions.WithUpdateProviderBranches([]interface{}{}), + functions.WithUpdateProviderPaths([]interface{}{}), functions.WithUpdateBuildSpecification(""), functions.WithUpdateRuntimeSpecification(""), functions.WithUpdateDeploymentRetention(0), diff --git a/examples/1.9.x/server-go/examples/graphql/mutation.md b/examples/1.9.x/server-go/examples/graphql/mutation.md index addf9b68b..ee679015c 100644 --- a/examples/1.9.x/server-go/examples/graphql/mutation.md +++ b/examples/1.9.x/server-go/examples/graphql/mutation.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/graphql/query.md b/examples/1.9.x/server-go/examples/graphql/query.md index 7a62b5687..d7e570b25 100644 --- a/examples/1.9.x/server-go/examples/graphql/query.md +++ b/examples/1.9.x/server-go/examples/graphql/query.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-antivirus.md b/examples/1.9.x/server-go/examples/health/get-antivirus.md index 34c4e7b3a..f6d4d2aae 100644 --- a/examples/1.9.x/server-go/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-go/examples/health/get-antivirus.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-cache.md b/examples/1.9.x/server-go/examples/health/get-cache.md index 59b0743d9..f18fd9619 100644 --- a/examples/1.9.x/server-go/examples/health/get-cache.md +++ b/examples/1.9.x/server-go/examples/health/get-cache.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-certificate.md b/examples/1.9.x/server-go/examples/health/get-certificate.md index 18149b05a..7dde6fa67 100644 --- a/examples/1.9.x/server-go/examples/health/get-certificate.md +++ b/examples/1.9.x/server-go/examples/health/get-certificate.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-console-pausing.md b/examples/1.9.x/server-go/examples/health/get-console-pausing.md index 88d150eb2..b0c9a9d56 100644 --- a/examples/1.9.x/server-go/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-go/examples/health/get-console-pausing.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-db.md b/examples/1.9.x/server-go/examples/health/get-db.md index 8e9b03cd6..f594a2ccf 100644 --- a/examples/1.9.x/server-go/examples/health/get-db.md +++ b/examples/1.9.x/server-go/examples/health/get-db.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-failed-jobs.md b/examples/1.9.x/server-go/examples/health/get-failed-jobs.md index d056cb687..37588d413 100644 --- a/examples/1.9.x/server-go/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-go/examples/health/get-failed-jobs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-pub-sub.md b/examples/1.9.x/server-go/examples/health/get-pub-sub.md index ac7ec3706..e83c91a34 100644 --- a/examples/1.9.x/server-go/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-go/examples/health/get-pub-sub.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-audits.md b/examples/1.9.x/server-go/examples/health/get-queue-audits.md index 589464746..8b3b82b40 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-audits.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-builds.md b/examples/1.9.x/server-go/examples/health/get-queue-builds.md index b35242e2c..6fdcc5c47 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-builds.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-certificates.md b/examples/1.9.x/server-go/examples/health/get-queue-certificates.md index c001ed833..bca156427 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-certificates.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-databases.md b/examples/1.9.x/server-go/examples/health/get-queue-databases.md index e0b7e2a8d..5954dc6fa 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-databases.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-deletes.md b/examples/1.9.x/server-go/examples/health/get-queue-deletes.md index ca8be1f1d..75010de79 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-deletes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-functions.md b/examples/1.9.x/server-go/examples/health/get-queue-functions.md index 175eaae55..877225c7d 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-functions.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-logs.md b/examples/1.9.x/server-go/examples/health/get-queue-logs.md index 71a3a52ad..8663638a6 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-logs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-mails.md b/examples/1.9.x/server-go/examples/health/get-queue-mails.md index 48ceb1d92..840943086 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-mails.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-messaging.md b/examples/1.9.x/server-go/examples/health/get-queue-messaging.md index 5e7d7a153..c187fd256 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-messaging.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-migrations.md b/examples/1.9.x/server-go/examples/health/get-queue-migrations.md index cdf7db4ad..e92c2cb2b 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-migrations.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-go/examples/health/get-queue-stats-resources.md index bbb6f7cf1..849788711 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-stats-resources.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-usage.md b/examples/1.9.x/server-go/examples/health/get-queue-usage.md index 57799c5a3..3cd1f1aec 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-usage.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-go/examples/health/get-queue-webhooks.md index 54de652fe..6a3f8d22d 100644 --- a/examples/1.9.x/server-go/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-go/examples/health/get-queue-webhooks.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-storage-local.md b/examples/1.9.x/server-go/examples/health/get-storage-local.md index 4e68717c4..3e183162f 100644 --- a/examples/1.9.x/server-go/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-go/examples/health/get-storage-local.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-storage.md b/examples/1.9.x/server-go/examples/health/get-storage.md index ab2eda870..9cc5439b7 100644 --- a/examples/1.9.x/server-go/examples/health/get-storage.md +++ b/examples/1.9.x/server-go/examples/health/get-storage.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get-time.md b/examples/1.9.x/server-go/examples/health/get-time.md index 7e8f4f77d..dcfc97674 100644 --- a/examples/1.9.x/server-go/examples/health/get-time.md +++ b/examples/1.9.x/server-go/examples/health/get-time.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/health/get.md b/examples/1.9.x/server-go/examples/health/get.md index cd8268fff..0a84c1aaa 100644 --- a/examples/1.9.x/server-go/examples/health/get.md +++ b/examples/1.9.x/server-go/examples/health/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/locale/get.md b/examples/1.9.x/server-go/examples/locale/get.md index aac76debe..95f709a0d 100644 --- a/examples/1.9.x/server-go/examples/locale/get.md +++ b/examples/1.9.x/server-go/examples/locale/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/locale/list-codes.md b/examples/1.9.x/server-go/examples/locale/list-codes.md index 18307fae1..642924722 100644 --- a/examples/1.9.x/server-go/examples/locale/list-codes.md +++ b/examples/1.9.x/server-go/examples/locale/list-codes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/locale/list-continents.md b/examples/1.9.x/server-go/examples/locale/list-continents.md index ae8e476cf..104000355 100644 --- a/examples/1.9.x/server-go/examples/locale/list-continents.md +++ b/examples/1.9.x/server-go/examples/locale/list-continents.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/locale/list-countries-eu.md b/examples/1.9.x/server-go/examples/locale/list-countries-eu.md index 6b379fe7c..463f4b151 100644 --- a/examples/1.9.x/server-go/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-go/examples/locale/list-countries-eu.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/locale/list-countries-phones.md b/examples/1.9.x/server-go/examples/locale/list-countries-phones.md index 494f3575f..976237f38 100644 --- a/examples/1.9.x/server-go/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-go/examples/locale/list-countries-phones.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/locale/list-countries.md b/examples/1.9.x/server-go/examples/locale/list-countries.md index 85ef09235..1c1ffa1da 100644 --- a/examples/1.9.x/server-go/examples/locale/list-countries.md +++ b/examples/1.9.x/server-go/examples/locale/list-countries.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/locale/list-currencies.md b/examples/1.9.x/server-go/examples/locale/list-currencies.md index ed897308a..f84d47854 100644 --- a/examples/1.9.x/server-go/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-go/examples/locale/list-currencies.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/locale/list-languages.md b/examples/1.9.x/server-go/examples/locale/list-languages.md index dc65b8b5e..e479dbdc6 100644 --- a/examples/1.9.x/server-go/examples/locale/list-languages.md +++ b/examples/1.9.x/server-go/examples/locale/list-languages.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-go/examples/messaging/create-apns-provider.md index dbe9195d0..26b74120a 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-apns-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-email.md b/examples/1.9.x/server-go/examples/messaging/create-email.md index 3d7193dbe..0dbfff49a 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-email.md +++ b/examples/1.9.x/server-go/examples/messaging/create-email.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-go/examples/messaging/create-fcm-provider.md index d2a5a8bbb..8ea375450 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-fcm-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-go/examples/messaging/create-mailgun-provider.md index 11692ffc6..623800b1e 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-mailgun-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-go/examples/messaging/create-msg-91-provider.md index f3029ffcb..39dcf798e 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-msg-91-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-push.md b/examples/1.9.x/server-go/examples/messaging/create-push.md index 5d506d8a8..dc06401f9 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-push.md +++ b/examples/1.9.x/server-go/examples/messaging/create-push.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-go/examples/messaging/create-resend-provider.md index 693d9e321..dbf71ee3c 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-resend-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-go/examples/messaging/create-sendgrid-provider.md index 25cdaa8e6..b687d0d3d 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-sendgrid-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-sms.md b/examples/1.9.x/server-go/examples/messaging/create-sms.md index c84695016..6a9dea559 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-go/examples/messaging/create-sms.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-go/examples/messaging/create-smtp-provider.md index 0bb5f204e..c358645f0 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-smtp-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-subscriber.md b/examples/1.9.x/server-go/examples/messaging/create-subscriber.md index 823852319..c0d34e18f 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-go/examples/messaging/create-subscriber.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithJWT("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-go/examples/messaging/create-telesign-provider.md index 0c1b141f8..7cc95386f 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-telesign-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-go/examples/messaging/create-textmagic-provider.md index cec576338..4731bc847 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-textmagic-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-topic.md b/examples/1.9.x/server-go/examples/messaging/create-topic.md index d720638ba..7b4f87902 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-go/examples/messaging/create-topic.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-go/examples/messaging/create-twilio-provider.md index b92dde7f9..dd66a1abb 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-twilio-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-go/examples/messaging/create-vonage-provider.md index 83d2ac1a0..426242b35 100644 --- a/examples/1.9.x/server-go/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/create-vonage-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/delete-provider.md b/examples/1.9.x/server-go/examples/messaging/delete-provider.md index b860db974..b7e474ad1 100644 --- a/examples/1.9.x/server-go/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/delete-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-go/examples/messaging/delete-subscriber.md index 2a7c80369..14b2bb7cd 100644 --- a/examples/1.9.x/server-go/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-go/examples/messaging/delete-subscriber.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithJWT("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/delete-topic.md b/examples/1.9.x/server-go/examples/messaging/delete-topic.md index daf1d7649..3654c88dc 100644 --- a/examples/1.9.x/server-go/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-go/examples/messaging/delete-topic.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/delete.md b/examples/1.9.x/server-go/examples/messaging/delete.md index 5f5f420ba..37747340e 100644 --- a/examples/1.9.x/server-go/examples/messaging/delete.md +++ b/examples/1.9.x/server-go/examples/messaging/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/get-message.md b/examples/1.9.x/server-go/examples/messaging/get-message.md index 492368c88..c5c11a68e 100644 --- a/examples/1.9.x/server-go/examples/messaging/get-message.md +++ b/examples/1.9.x/server-go/examples/messaging/get-message.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/get-provider.md b/examples/1.9.x/server-go/examples/messaging/get-provider.md index 7c1133725..595fb4a17 100644 --- a/examples/1.9.x/server-go/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/get-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/get-subscriber.md b/examples/1.9.x/server-go/examples/messaging/get-subscriber.md index 7004b17c7..ec124cbdb 100644 --- a/examples/1.9.x/server-go/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-go/examples/messaging/get-subscriber.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/get-topic.md b/examples/1.9.x/server-go/examples/messaging/get-topic.md index 3740b329d..d18ee98eb 100644 --- a/examples/1.9.x/server-go/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-go/examples/messaging/get-topic.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-message-logs.md b/examples/1.9.x/server-go/examples/messaging/list-message-logs.md index 81a07d885..e1a760b27 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-go/examples/messaging/list-message-logs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-messages.md b/examples/1.9.x/server-go/examples/messaging/list-messages.md index c3fddaf20..0340d82fd 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-go/examples/messaging/list-messages.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-go/examples/messaging/list-provider-logs.md index 75b22f11a..47db56505 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-go/examples/messaging/list-provider-logs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-providers.md b/examples/1.9.x/server-go/examples/messaging/list-providers.md index 6c754591f..03b225c42 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-go/examples/messaging/list-providers.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-go/examples/messaging/list-subscriber-logs.md index 050a7a2d5..986749490 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-go/examples/messaging/list-subscriber-logs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-subscribers.md b/examples/1.9.x/server-go/examples/messaging/list-subscribers.md index 0dc215880..efe75ab2f 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-go/examples/messaging/list-subscribers.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-targets.md b/examples/1.9.x/server-go/examples/messaging/list-targets.md index 38a9a1b7f..c498269bb 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-go/examples/messaging/list-targets.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-go/examples/messaging/list-topic-logs.md index 6785f62fe..2bdcc6da6 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-go/examples/messaging/list-topic-logs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/list-topics.md b/examples/1.9.x/server-go/examples/messaging/list-topics.md index 7c5e22384..27845fc15 100644 --- a/examples/1.9.x/server-go/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-go/examples/messaging/list-topics.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-go/examples/messaging/update-apns-provider.md index ce95fdd84..a31f9027a 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-apns-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-email.md b/examples/1.9.x/server-go/examples/messaging/update-email.md index 3d9a7b8b2..f6504d6db 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-email.md +++ b/examples/1.9.x/server-go/examples/messaging/update-email.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-go/examples/messaging/update-fcm-provider.md index c24cc651e..8e92a76da 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-fcm-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-go/examples/messaging/update-mailgun-provider.md index 3f0f76806..1e307c994 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-mailgun-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-go/examples/messaging/update-msg-91-provider.md index ea38ebce8..c10411a29 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-msg-91-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-push.md b/examples/1.9.x/server-go/examples/messaging/update-push.md index 2bb138153..98038cefd 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-push.md +++ b/examples/1.9.x/server-go/examples/messaging/update-push.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-go/examples/messaging/update-resend-provider.md index 02de53dad..c041c0a6a 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-resend-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-go/examples/messaging/update-sendgrid-provider.md index d8b3e22c4..349eb0b39 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-sendgrid-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-sms.md b/examples/1.9.x/server-go/examples/messaging/update-sms.md index baa181af0..bb12739e0 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-go/examples/messaging/update-sms.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-go/examples/messaging/update-smtp-provider.md index a08b688f4..696417a44 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-smtp-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-go/examples/messaging/update-telesign-provider.md index 31373616d..2cb2a88dd 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-telesign-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-go/examples/messaging/update-textmagic-provider.md index c500201d7..b5fd58d25 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-textmagic-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-topic.md b/examples/1.9.x/server-go/examples/messaging/update-topic.md index 9c5c572f7..99785823a 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-go/examples/messaging/update-topic.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-go/examples/messaging/update-twilio-provider.md index 050c067f0..4b2efe2e9 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-twilio-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-go/examples/messaging/update-vonage-provider.md index 1fa2e8c59..614e105c4 100644 --- a/examples/1.9.x/server-go/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-go/examples/messaging/update-vonage-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/organization/create-key.md b/examples/1.9.x/server-go/examples/organization/create-key.md new file mode 100644 index 000000000..c90dfa121 --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/create-key.md @@ -0,0 +1,24 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.CreateKey( + "", + "", + []interface{}{}, + organization.WithCreateKeyExpire("2020-10-15T06:38:00.000+00:00"), +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/create-project.md b/examples/1.9.x/server-go/examples/organization/create-project.md new file mode 100644 index 000000000..12a99d217 --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/create-project.md @@ -0,0 +1,23 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.CreateProject( + "", + "", + organization.WithCreateProjectRegion("fra"), +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/delete-key.md b/examples/1.9.x/server-go/examples/organization/delete-key.md new file mode 100644 index 000000000..5516bbde2 --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/delete-key.md @@ -0,0 +1,21 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.DeleteKey( + "", +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/delete-project.md b/examples/1.9.x/server-go/examples/organization/delete-project.md new file mode 100644 index 000000000..7ebc3256a --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/delete-project.md @@ -0,0 +1,21 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.DeleteProject( + "", +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/get-key.md b/examples/1.9.x/server-go/examples/organization/get-key.md new file mode 100644 index 000000000..f62e3842f --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/get-key.md @@ -0,0 +1,21 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.GetKey( + "", +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/get-project.md b/examples/1.9.x/server-go/examples/organization/get-project.md new file mode 100644 index 000000000..6b7c205c8 --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/get-project.md @@ -0,0 +1,21 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.GetProject( + "", +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/list-keys.md b/examples/1.9.x/server-go/examples/organization/list-keys.md new file mode 100644 index 000000000..fbef45d41 --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/list-keys.md @@ -0,0 +1,22 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.ListKeys( + organization.WithListKeysQueries([]interface{}{}), + organization.WithListKeysTotal(false), +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/list-projects.md b/examples/1.9.x/server-go/examples/organization/list-projects.md new file mode 100644 index 000000000..8f6b2b59a --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/list-projects.md @@ -0,0 +1,23 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.ListProjects( + organization.WithListProjectsQueries([]interface{}{}), + organization.WithListProjectsSearch(""), + organization.WithListProjectsTotal(false), +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/update-key.md b/examples/1.9.x/server-go/examples/organization/update-key.md new file mode 100644 index 000000000..e8c3d54ba --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/update-key.md @@ -0,0 +1,24 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.UpdateKey( + "", + "", + []interface{}{}, + organization.WithUpdateKeyExpire("2020-10-15T06:38:00.000+00:00"), +) +``` diff --git a/examples/1.9.x/server-go/examples/organization/update-project.md b/examples/1.9.x/server-go/examples/organization/update-project.md new file mode 100644 index 000000000..921fde2fa --- /dev/null +++ b/examples/1.9.x/server-go/examples/organization/update-project.md @@ -0,0 +1,22 @@ +```go +package main + +import ( + "fmt" + "github.com/appwrite/sdk-for-go/v4/client" + "github.com/appwrite/sdk-for-go/v4/organization" +) + +client := client.New( + client.WithEndpoint("") + client.WithProject("") + client.WithKey("") +) + +service := organization.New(client) + +response, error := service.UpdateProject( + "", + "", +) +``` diff --git a/examples/1.9.x/server-go/examples/presences/delete.md b/examples/1.9.x/server-go/examples/presences/delete.md index 8a2818a2b..6d7502a81 100644 --- a/examples/1.9.x/server-go/examples/presences/delete.md +++ b/examples/1.9.x/server-go/examples/presences/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/presences/get.md b/examples/1.9.x/server-go/examples/presences/get.md index 04f95ab6e..e85276953 100644 --- a/examples/1.9.x/server-go/examples/presences/get.md +++ b/examples/1.9.x/server-go/examples/presences/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/presences/list.md b/examples/1.9.x/server-go/examples/presences/list.md index 71a52ec4a..4ee716f01 100644 --- a/examples/1.9.x/server-go/examples/presences/list.md +++ b/examples/1.9.x/server-go/examples/presences/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/presences/update-presence.md b/examples/1.9.x/server-go/examples/presences/update-presence.md index f877255aa..078e0e9bd 100644 --- a/examples/1.9.x/server-go/examples/presences/update-presence.md +++ b/examples/1.9.x/server-go/examples/presences/update-presence.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/presences/upsert.md b/examples/1.9.x/server-go/examples/presences/upsert.md index d2bd78371..335a9afd6 100644 --- a/examples/1.9.x/server-go/examples/presences/upsert.md +++ b/examples/1.9.x/server-go/examples/presences/upsert.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-android-platform.md b/examples/1.9.x/server-go/examples/project/create-android-platform.md index 3c4c310f2..7b9379c5d 100644 --- a/examples/1.9.x/server-go/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-go/examples/project/create-android-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-apple-platform.md b/examples/1.9.x/server-go/examples/project/create-apple-platform.md index ef6df3927..bbcd1ce9c 100644 --- a/examples/1.9.x/server-go/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-go/examples/project/create-apple-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-go/examples/project/create-ephemeral-key.md index 036f67720..fe726e981 100644 --- a/examples/1.9.x/server-go/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-go/examples/project/create-ephemeral-key.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-key.md b/examples/1.9.x/server-go/examples/project/create-key.md index 47fc9f83c..83dbd7898 100644 --- a/examples/1.9.x/server-go/examples/project/create-key.md +++ b/examples/1.9.x/server-go/examples/project/create-key.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-linux-platform.md b/examples/1.9.x/server-go/examples/project/create-linux-platform.md index 4673feef7..bb5722f27 100644 --- a/examples/1.9.x/server-go/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-go/examples/project/create-linux-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-mock-phone.md b/examples/1.9.x/server-go/examples/project/create-mock-phone.md index c1e956698..e8ef5d22d 100644 --- a/examples/1.9.x/server-go/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-go/examples/project/create-mock-phone.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-smtp-test.md b/examples/1.9.x/server-go/examples/project/create-smtp-test.md index 9f074ddab..e2c15ef80 100644 --- a/examples/1.9.x/server-go/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-go/examples/project/create-smtp-test.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-variable.md b/examples/1.9.x/server-go/examples/project/create-variable.md index 1bfe49f8c..9481916e1 100644 --- a/examples/1.9.x/server-go/examples/project/create-variable.md +++ b/examples/1.9.x/server-go/examples/project/create-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-web-platform.md b/examples/1.9.x/server-go/examples/project/create-web-platform.md index 8b829c078..1fc1ca430 100644 --- a/examples/1.9.x/server-go/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-go/examples/project/create-web-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/create-windows-platform.md b/examples/1.9.x/server-go/examples/project/create-windows-platform.md index b4516cab6..e2c574493 100644 --- a/examples/1.9.x/server-go/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-go/examples/project/create-windows-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/delete-key.md b/examples/1.9.x/server-go/examples/project/delete-key.md index 29f20650c..5ce3bb8fb 100644 --- a/examples/1.9.x/server-go/examples/project/delete-key.md +++ b/examples/1.9.x/server-go/examples/project/delete-key.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/delete-mock-phone.md b/examples/1.9.x/server-go/examples/project/delete-mock-phone.md index 099d85e0c..0190d23ab 100644 --- a/examples/1.9.x/server-go/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-go/examples/project/delete-mock-phone.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/delete-platform.md b/examples/1.9.x/server-go/examples/project/delete-platform.md index cd0b71814..7a23a6b88 100644 --- a/examples/1.9.x/server-go/examples/project/delete-platform.md +++ b/examples/1.9.x/server-go/examples/project/delete-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/delete-variable.md b/examples/1.9.x/server-go/examples/project/delete-variable.md index ef7a44f26..3c3c2c4ad 100644 --- a/examples/1.9.x/server-go/examples/project/delete-variable.md +++ b/examples/1.9.x/server-go/examples/project/delete-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/delete.md b/examples/1.9.x/server-go/examples/project/delete.md index 6f48c4f7d..bc797122c 100644 --- a/examples/1.9.x/server-go/examples/project/delete.md +++ b/examples/1.9.x/server-go/examples/project/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/get-email-template.md b/examples/1.9.x/server-go/examples/project/get-email-template.md index bb8dd3de4..fb2f3939a 100644 --- a/examples/1.9.x/server-go/examples/project/get-email-template.md +++ b/examples/1.9.x/server-go/examples/project/get-email-template.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/get-key.md b/examples/1.9.x/server-go/examples/project/get-key.md index 84ad54ec6..a8e852dd4 100644 --- a/examples/1.9.x/server-go/examples/project/get-key.md +++ b/examples/1.9.x/server-go/examples/project/get-key.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/get-mock-phone.md b/examples/1.9.x/server-go/examples/project/get-mock-phone.md index 3115e4f89..402d3db98 100644 --- a/examples/1.9.x/server-go/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-go/examples/project/get-mock-phone.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-go/examples/project/get-o-auth-2-provider.md index ad07a73c8..bc349a706 100644 --- a/examples/1.9.x/server-go/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-go/examples/project/get-o-auth-2-provider.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/get-platform.md b/examples/1.9.x/server-go/examples/project/get-platform.md index cdd6cc03d..36be3d23f 100644 --- a/examples/1.9.x/server-go/examples/project/get-platform.md +++ b/examples/1.9.x/server-go/examples/project/get-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/get-policy.md b/examples/1.9.x/server-go/examples/project/get-policy.md index 15f1fee4a..901ed178a 100644 --- a/examples/1.9.x/server-go/examples/project/get-policy.md +++ b/examples/1.9.x/server-go/examples/project/get-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/get-variable.md b/examples/1.9.x/server-go/examples/project/get-variable.md index ba9f0c0cc..a4282d227 100644 --- a/examples/1.9.x/server-go/examples/project/get-variable.md +++ b/examples/1.9.x/server-go/examples/project/get-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/get.md b/examples/1.9.x/server-go/examples/project/get.md index cc21ee853..130384406 100644 --- a/examples/1.9.x/server-go/examples/project/get.md +++ b/examples/1.9.x/server-go/examples/project/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/list-email-templates.md b/examples/1.9.x/server-go/examples/project/list-email-templates.md index 10979860e..7571c276f 100644 --- a/examples/1.9.x/server-go/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-go/examples/project/list-email-templates.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/list-keys.md b/examples/1.9.x/server-go/examples/project/list-keys.md index c3dd64db8..29be6d8ed 100644 --- a/examples/1.9.x/server-go/examples/project/list-keys.md +++ b/examples/1.9.x/server-go/examples/project/list-keys.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/list-mock-phones.md b/examples/1.9.x/server-go/examples/project/list-mock-phones.md index a105a5b3b..6832a9d79 100644 --- a/examples/1.9.x/server-go/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-go/examples/project/list-mock-phones.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-go/examples/project/list-o-auth-2-providers.md index 4cc50d25a..23ee8963d 100644 --- a/examples/1.9.x/server-go/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-go/examples/project/list-o-auth-2-providers.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/list-platforms.md b/examples/1.9.x/server-go/examples/project/list-platforms.md index c9e3eb1fb..43f2a1c7a 100644 --- a/examples/1.9.x/server-go/examples/project/list-platforms.md +++ b/examples/1.9.x/server-go/examples/project/list-platforms.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/list-policies.md b/examples/1.9.x/server-go/examples/project/list-policies.md index 0cc4f0804..ad560c92e 100644 --- a/examples/1.9.x/server-go/examples/project/list-policies.md +++ b/examples/1.9.x/server-go/examples/project/list-policies.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/list-variables.md b/examples/1.9.x/server-go/examples/project/list-variables.md index 406023492..8ebf50fc6 100644 --- a/examples/1.9.x/server-go/examples/project/list-variables.md +++ b/examples/1.9.x/server-go/examples/project/list-variables.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-android-platform.md b/examples/1.9.x/server-go/examples/project/update-android-platform.md index 5d4b523a6..c423a0bdf 100644 --- a/examples/1.9.x/server-go/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-go/examples/project/update-android-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-apple-platform.md b/examples/1.9.x/server-go/examples/project/update-apple-platform.md index 9758be972..b2f8c834f 100644 --- a/examples/1.9.x/server-go/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-go/examples/project/update-apple-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-auth-method.md b/examples/1.9.x/server-go/examples/project/update-auth-method.md index 2f37d3afd..69d19a8da 100644 --- a/examples/1.9.x/server-go/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-go/examples/project/update-auth-method.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-go/examples/project/update-deny-aliased-email-policy.md index 52e26c8ad..e6d083c58 100644 --- a/examples/1.9.x/server-go/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-deny-aliased-email-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-go/examples/project/update-deny-disposable-email-policy.md index 64ca2e518..e4c6fd874 100644 --- a/examples/1.9.x/server-go/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-deny-disposable-email-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-go/examples/project/update-deny-free-email-policy.md index 7598819bd..11a3ca82b 100644 --- a/examples/1.9.x/server-go/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-deny-free-email-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-email-template.md b/examples/1.9.x/server-go/examples/project/update-email-template.md index ad2e3a425..92493de03 100644 --- a/examples/1.9.x/server-go/examples/project/update-email-template.md +++ b/examples/1.9.x/server-go/examples/project/update-email-template.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-key.md b/examples/1.9.x/server-go/examples/project/update-key.md index 047055ffc..6111609ef 100644 --- a/examples/1.9.x/server-go/examples/project/update-key.md +++ b/examples/1.9.x/server-go/examples/project/update-key.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-labels.md b/examples/1.9.x/server-go/examples/project/update-labels.md index 48e441d1b..10bfc59ac 100644 --- a/examples/1.9.x/server-go/examples/project/update-labels.md +++ b/examples/1.9.x/server-go/examples/project/update-labels.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-linux-platform.md b/examples/1.9.x/server-go/examples/project/update-linux-platform.md index 9ecd4188d..36e3018d6 100644 --- a/examples/1.9.x/server-go/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-go/examples/project/update-linux-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-go/examples/project/update-membership-privacy-policy.md index 34c215528..1e2037db1 100644 --- a/examples/1.9.x/server-go/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-membership-privacy-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-mock-phone.md b/examples/1.9.x/server-go/examples/project/update-mock-phone.md index d18c54fb7..441d4a840 100644 --- a/examples/1.9.x/server-go/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-go/examples/project/update-mock-phone.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-amazon.md index 1addc081a..c59002859 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-amazon.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-apple.md index de68fbcff..c72434717 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-apple.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-auth-0.md index eb60aa004..e76438c95 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-auth-0.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-authentik.md index 1003fc100..6bf422493 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-authentik.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-autodesk.md index ed0604a26..1adc57fe6 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-autodesk.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-bitbucket.md index 689e6f31d..dc138d9e1 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-bitbucket.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-bitly.md index 6d89fc350..5368082dc 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-bitly.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-box.md index d4f9445a9..6388cb7a3 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-box.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-dailymotion.md index f5576bbeb..028c72623 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-dailymotion.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-discord.md index 3e63e7961..235645a51 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-discord.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-disqus.md index 1f600f70d..c10df5a10 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-disqus.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-dropbox.md index 9409e8c81..234d268c5 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-dropbox.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-etsy.md index 1ab7e1be2..88f2a217e 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-etsy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-facebook.md index 9a48bf5df..86cdc581d 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-facebook.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-figma.md index 03e35052d..1cb454390 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-figma.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-fusion-auth.md index 028a84941..4a0000c4b 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-fusion-auth.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-git-hub.md index b2b788b89..65bcec972 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-git-hub.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-gitlab.md index a3650809a..b8ba499a5 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-gitlab.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-google.md index 77e32a7ff..cd6c66016 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-google.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-keycloak.md index 426fbc95c..9cdc4e125 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-keycloak.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-kick.md index 8af994434..6a63f7e4e 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-kick.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-linkedin.md index 2b149735e..2732d8a3b 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-linkedin.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-microsoft.md index bf8a63045..889b59619 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-microsoft.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-notion.md index e0e2a4136..e44614de5 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-notion.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-oidc.md index 5baf5f371..fae0c018a 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-oidc.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-okta.md index ccb282f75..a1ce4d765 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-okta.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-paypal-sandbox.md index 2d03deda2..0e6ce12a2 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-paypal-sandbox.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-paypal.md index 6c57a5514..4eca351d2 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-paypal.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-podio.md index e99af1282..963a84ba9 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-podio.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-salesforce.md index e82bbbeee..ff4c491be 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-salesforce.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-slack.md index ba8b6135a..58bf70e52 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-slack.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-spotify.md index b46637a30..c86507891 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-spotify.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-stripe.md index 194a52f02..856611faa 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-stripe.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-tradeshift-sandbox.md index 1d39ba7d8..64b6620ad 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-tradeshift.md index e141b7f37..70a9f0032 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-tradeshift.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-twitch.md index 90ec75172..61d499c12 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-twitch.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-word-press.md index 2c6009e20..bc55571f1 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-word-press.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-yahoo.md index dc6d19a7b..c7f42f3a0 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-yahoo.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-yandex.md index 8f140b659..d86969e8b 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-yandex.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-zoho.md index 7fa111c7f..14c654aea 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-zoho.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2-zoom.md index 5345d25b7..a5a1ee20d 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2-zoom.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-go/examples/project/update-o-auth-2x.md index 605d22f49..a92a75958 100644 --- a/examples/1.9.x/server-go/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-go/examples/project/update-o-auth-2x.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-go/examples/project/update-password-dictionary-policy.md index 70c7cdfb1..407ef510e 100644 --- a/examples/1.9.x/server-go/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-password-dictionary-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-password-history-policy.md b/examples/1.9.x/server-go/examples/project/update-password-history-policy.md index 11e7eacec..df3aae248 100644 --- a/examples/1.9.x/server-go/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-password-history-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-go/examples/project/update-password-personal-data-policy.md index 8059b224a..ec5baee77 100644 --- a/examples/1.9.x/server-go/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-password-personal-data-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-protocol.md b/examples/1.9.x/server-go/examples/project/update-protocol.md index 6b74ddf4e..0d6aab932 100644 --- a/examples/1.9.x/server-go/examples/project/update-protocol.md +++ b/examples/1.9.x/server-go/examples/project/update-protocol.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-service.md b/examples/1.9.x/server-go/examples/project/update-service.md index 156906547..d858d4d2c 100644 --- a/examples/1.9.x/server-go/examples/project/update-service.md +++ b/examples/1.9.x/server-go/examples/project/update-service.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-go/examples/project/update-session-alert-policy.md index cfba3c159..e9cdf8b4e 100644 --- a/examples/1.9.x/server-go/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-session-alert-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-go/examples/project/update-session-duration-policy.md index 5cc7c9d3d..b76de6152 100644 --- a/examples/1.9.x/server-go/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-session-duration-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-go/examples/project/update-session-invalidation-policy.md index 76764188a..3e8c5130a 100644 --- a/examples/1.9.x/server-go/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-session-invalidation-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-go/examples/project/update-session-limit-policy.md index ccde70542..bc83017f6 100644 --- a/examples/1.9.x/server-go/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-session-limit-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-smtp.md b/examples/1.9.x/server-go/examples/project/update-smtp.md index e3948a65a..a103190eb 100644 --- a/examples/1.9.x/server-go/examples/project/update-smtp.md +++ b/examples/1.9.x/server-go/examples/project/update-smtp.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-go/examples/project/update-user-limit-policy.md index e146e59b2..8d3f3bb38 100644 --- a/examples/1.9.x/server-go/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-go/examples/project/update-user-limit-policy.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-variable.md b/examples/1.9.x/server-go/examples/project/update-variable.md index 507f9b76c..3bcd9b913 100644 --- a/examples/1.9.x/server-go/examples/project/update-variable.md +++ b/examples/1.9.x/server-go/examples/project/update-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-web-platform.md b/examples/1.9.x/server-go/examples/project/update-web-platform.md index df7a8be2a..3a754058d 100644 --- a/examples/1.9.x/server-go/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-go/examples/project/update-web-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/project/update-windows-platform.md b/examples/1.9.x/server-go/examples/project/update-windows-platform.md index 96b64d986..f39e73cec 100644 --- a/examples/1.9.x/server-go/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-go/examples/project/update-windows-platform.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/proxy/create-api-rule.md b/examples/1.9.x/server-go/examples/proxy/create-api-rule.md index 632895c01..e85a5e82a 100644 --- a/examples/1.9.x/server-go/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-go/examples/proxy/create-api-rule.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/proxy/create-function-rule.md b/examples/1.9.x/server-go/examples/proxy/create-function-rule.md index 8e1102dba..50377b85a 100644 --- a/examples/1.9.x/server-go/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-go/examples/proxy/create-function-rule.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-go/examples/proxy/create-redirect-rule.md index 5e5b11feb..3b91a55fd 100644 --- a/examples/1.9.x/server-go/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-go/examples/proxy/create-redirect-rule.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/proxy/create-site-rule.md b/examples/1.9.x/server-go/examples/proxy/create-site-rule.md index 9894b37c6..5d794cbc2 100644 --- a/examples/1.9.x/server-go/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-go/examples/proxy/create-site-rule.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/proxy/delete-rule.md b/examples/1.9.x/server-go/examples/proxy/delete-rule.md index 3423da0c9..cd1bdfc58 100644 --- a/examples/1.9.x/server-go/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-go/examples/proxy/delete-rule.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/proxy/get-rule.md b/examples/1.9.x/server-go/examples/proxy/get-rule.md index 45d932386..aea8dcff4 100644 --- a/examples/1.9.x/server-go/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-go/examples/proxy/get-rule.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/proxy/list-rules.md b/examples/1.9.x/server-go/examples/proxy/list-rules.md index d10cac509..1335e0a9c 100644 --- a/examples/1.9.x/server-go/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-go/examples/proxy/list-rules.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/proxy/update-rule-status.md b/examples/1.9.x/server-go/examples/proxy/update-rule-status.md index 21546810c..e9866b145 100644 --- a/examples/1.9.x/server-go/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-go/examples/proxy/update-rule-status.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/create-deployment.md b/examples/1.9.x/server-go/examples/sites/create-deployment.md index 6d1cc83e9..959ed8232 100644 --- a/examples/1.9.x/server-go/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-go/examples/sites/create-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-go/examples/sites/create-duplicate-deployment.md index b159facd1..f5e0ab665 100644 --- a/examples/1.9.x/server-go/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-go/examples/sites/create-duplicate-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/create-template-deployment.md b/examples/1.9.x/server-go/examples/sites/create-template-deployment.md index e067ea5a4..b8e94d1ea 100644 --- a/examples/1.9.x/server-go/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-go/examples/sites/create-template-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/create-variable.md b/examples/1.9.x/server-go/examples/sites/create-variable.md index 63824637c..07416fa4d 100644 --- a/examples/1.9.x/server-go/examples/sites/create-variable.md +++ b/examples/1.9.x/server-go/examples/sites/create-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-go/examples/sites/create-vcs-deployment.md index c76608292..050f72a44 100644 --- a/examples/1.9.x/server-go/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-go/examples/sites/create-vcs-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/create.md b/examples/1.9.x/server-go/examples/sites/create.md index 1160f0dc0..de2e6dcaf 100644 --- a/examples/1.9.x/server-go/examples/sites/create.md +++ b/examples/1.9.x/server-go/examples/sites/create.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) @@ -34,6 +34,8 @@ response, error := service.Create( sites.WithCreateProviderBranch(""), sites.WithCreateProviderSilentMode(false), sites.WithCreateProviderRootDirectory(""), + sites.WithCreateProviderBranches([]interface{}{}), + sites.WithCreateProviderPaths([]interface{}{}), sites.WithCreateBuildSpecification(""), sites.WithCreateRuntimeSpecification(""), sites.WithCreateDeploymentRetention(0), diff --git a/examples/1.9.x/server-go/examples/sites/delete-deployment.md b/examples/1.9.x/server-go/examples/sites/delete-deployment.md index 053be7f11..b4a1d3c78 100644 --- a/examples/1.9.x/server-go/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-go/examples/sites/delete-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/delete-log.md b/examples/1.9.x/server-go/examples/sites/delete-log.md index 748dde4aa..328e4d342 100644 --- a/examples/1.9.x/server-go/examples/sites/delete-log.md +++ b/examples/1.9.x/server-go/examples/sites/delete-log.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/delete-variable.md b/examples/1.9.x/server-go/examples/sites/delete-variable.md index 84588a351..d6d5f71e5 100644 --- a/examples/1.9.x/server-go/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-go/examples/sites/delete-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/delete.md b/examples/1.9.x/server-go/examples/sites/delete.md index 33dc9ad66..9a8915eb4 100644 --- a/examples/1.9.x/server-go/examples/sites/delete.md +++ b/examples/1.9.x/server-go/examples/sites/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/get-deployment-download.md b/examples/1.9.x/server-go/examples/sites/get-deployment-download.md index d6d66a868..7282e236f 100644 --- a/examples/1.9.x/server-go/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-go/examples/sites/get-deployment-download.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/get-deployment.md b/examples/1.9.x/server-go/examples/sites/get-deployment.md index eebff4610..88bd59a5a 100644 --- a/examples/1.9.x/server-go/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-go/examples/sites/get-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/get-log.md b/examples/1.9.x/server-go/examples/sites/get-log.md index 6fe5eb82d..79d43b22a 100644 --- a/examples/1.9.x/server-go/examples/sites/get-log.md +++ b/examples/1.9.x/server-go/examples/sites/get-log.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/get-variable.md b/examples/1.9.x/server-go/examples/sites/get-variable.md index c396f358a..3f2275ec5 100644 --- a/examples/1.9.x/server-go/examples/sites/get-variable.md +++ b/examples/1.9.x/server-go/examples/sites/get-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/get.md b/examples/1.9.x/server-go/examples/sites/get.md index ad107acf9..18cf5de09 100644 --- a/examples/1.9.x/server-go/examples/sites/get.md +++ b/examples/1.9.x/server-go/examples/sites/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/list-deployments.md b/examples/1.9.x/server-go/examples/sites/list-deployments.md index 6379f059d..cc039f264 100644 --- a/examples/1.9.x/server-go/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-go/examples/sites/list-deployments.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/list-frameworks.md b/examples/1.9.x/server-go/examples/sites/list-frameworks.md index 01e5a8391..096feaab4 100644 --- a/examples/1.9.x/server-go/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-go/examples/sites/list-frameworks.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/list-logs.md b/examples/1.9.x/server-go/examples/sites/list-logs.md index e6cacb6a1..539983183 100644 --- a/examples/1.9.x/server-go/examples/sites/list-logs.md +++ b/examples/1.9.x/server-go/examples/sites/list-logs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/list-specifications.md b/examples/1.9.x/server-go/examples/sites/list-specifications.md index 31ecc5440..2d32f0564 100644 --- a/examples/1.9.x/server-go/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-go/examples/sites/list-specifications.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/list-variables.md b/examples/1.9.x/server-go/examples/sites/list-variables.md index 658bc9825..4f43dcb51 100644 --- a/examples/1.9.x/server-go/examples/sites/list-variables.md +++ b/examples/1.9.x/server-go/examples/sites/list-variables.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/list.md b/examples/1.9.x/server-go/examples/sites/list.md index ab859cb8b..383a04722 100644 --- a/examples/1.9.x/server-go/examples/sites/list.md +++ b/examples/1.9.x/server-go/examples/sites/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/update-deployment-status.md b/examples/1.9.x/server-go/examples/sites/update-deployment-status.md index 33ac8b760..5624e7677 100644 --- a/examples/1.9.x/server-go/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-go/examples/sites/update-deployment-status.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/update-site-deployment.md b/examples/1.9.x/server-go/examples/sites/update-site-deployment.md index eb2453269..4a05055e0 100644 --- a/examples/1.9.x/server-go/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-go/examples/sites/update-site-deployment.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/update-variable.md b/examples/1.9.x/server-go/examples/sites/update-variable.md index 64c41320a..f15f4f3f6 100644 --- a/examples/1.9.x/server-go/examples/sites/update-variable.md +++ b/examples/1.9.x/server-go/examples/sites/update-variable.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/sites/update.md b/examples/1.9.x/server-go/examples/sites/update.md index 6d387277e..6fcc174d3 100644 --- a/examples/1.9.x/server-go/examples/sites/update.md +++ b/examples/1.9.x/server-go/examples/sites/update.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) @@ -34,6 +34,8 @@ response, error := service.Update( sites.WithUpdateProviderBranch(""), sites.WithUpdateProviderSilentMode(false), sites.WithUpdateProviderRootDirectory(""), + sites.WithUpdateProviderBranches([]interface{}{}), + sites.WithUpdateProviderPaths([]interface{}{}), sites.WithUpdateBuildSpecification(""), sites.WithUpdateRuntimeSpecification(""), sites.WithUpdateDeploymentRetention(0), diff --git a/examples/1.9.x/server-go/examples/storage/create-bucket.md b/examples/1.9.x/server-go/examples/storage/create-bucket.md index f1f846243..6674ed7cd 100644 --- a/examples/1.9.x/server-go/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-go/examples/storage/create-bucket.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/storage/create-file.md b/examples/1.9.x/server-go/examples/storage/create-file.md index 275825e0d..e3063197f 100644 --- a/examples/1.9.x/server-go/examples/storage/create-file.md +++ b/examples/1.9.x/server-go/examples/storage/create-file.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/storage/delete-bucket.md b/examples/1.9.x/server-go/examples/storage/delete-bucket.md index 8347ac285..692bbf6b7 100644 --- a/examples/1.9.x/server-go/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-go/examples/storage/delete-bucket.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/storage/delete-file.md b/examples/1.9.x/server-go/examples/storage/delete-file.md index 4fc1c441e..4e79519e6 100644 --- a/examples/1.9.x/server-go/examples/storage/delete-file.md +++ b/examples/1.9.x/server-go/examples/storage/delete-file.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/storage/get-bucket.md b/examples/1.9.x/server-go/examples/storage/get-bucket.md index 2e909d588..0f81719ab 100644 --- a/examples/1.9.x/server-go/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-go/examples/storage/get-bucket.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/storage/get-file-download.md b/examples/1.9.x/server-go/examples/storage/get-file-download.md index 928e91752..6ef3876a4 100644 --- a/examples/1.9.x/server-go/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-go/examples/storage/get-file-download.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/storage/get-file-preview.md b/examples/1.9.x/server-go/examples/storage/get-file-preview.md index f700549be..8633cc291 100644 --- a/examples/1.9.x/server-go/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-go/examples/storage/get-file-preview.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/storage/get-file-view.md b/examples/1.9.x/server-go/examples/storage/get-file-view.md index 489839fe3..5488a19b5 100644 --- a/examples/1.9.x/server-go/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-go/examples/storage/get-file-view.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/storage/get-file.md b/examples/1.9.x/server-go/examples/storage/get-file.md index f70008613..f31ed9c54 100644 --- a/examples/1.9.x/server-go/examples/storage/get-file.md +++ b/examples/1.9.x/server-go/examples/storage/get-file.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/storage/list-buckets.md b/examples/1.9.x/server-go/examples/storage/list-buckets.md index 1d4605166..17ea9d6aa 100644 --- a/examples/1.9.x/server-go/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-go/examples/storage/list-buckets.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/storage/list-files.md b/examples/1.9.x/server-go/examples/storage/list-files.md index 963e6c38d..508b8cfbc 100644 --- a/examples/1.9.x/server-go/examples/storage/list-files.md +++ b/examples/1.9.x/server-go/examples/storage/list-files.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/storage/update-bucket.md b/examples/1.9.x/server-go/examples/storage/update-bucket.md index a8592efa0..fb8e5702b 100644 --- a/examples/1.9.x/server-go/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-go/examples/storage/update-bucket.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/storage/update-file.md b/examples/1.9.x/server-go/examples/storage/update-file.md index 45bb46f4e..db005f1b4 100644 --- a/examples/1.9.x/server-go/examples/storage/update-file.md +++ b/examples/1.9.x/server-go/examples/storage/update-file.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-big-int-column.md index b3212a658..75dae71a8 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-big-int-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-boolean-column.md index 59a31c8f2..c8b7f6f57 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-boolean-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-datetime-column.md index 6c7c370ff..e400cf0a2 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-datetime-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-email-column.md index 8f1a5c367..2b8255137 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-email-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-enum-column.md index 0639681b4..4ce885097 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-enum-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-float-column.md index a4a76cd5f..60f418910 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-float-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-index.md b/examples/1.9.x/server-go/examples/tablesdb/create-index.md index 19b8ca677..3032c4988 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-index.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-integer-column.md index 6fa978994..5132e6f04 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-integer-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-ip-column.md index d985d74a5..5c29a2008 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-ip-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-line-column.md index 4cb475d38..6be51f2ec 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-line-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-longtext-column.md index 0bda2405c..89b200e29 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-longtext-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-mediumtext-column.md index a3121d327..7d50c028c 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-mediumtext-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-operations.md b/examples/1.9.x/server-go/examples/tablesdb/create-operations.md index 01c07c29d..756cffb67 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-operations.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-point-column.md index 5dfaa7258..96a3b8b37 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-point-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-polygon-column.md index a1c78408c..ea329d19c 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-polygon-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-relationship-column.md index 980746288..eac83f9a5 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-relationship-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-row.md b/examples/1.9.x/server-go/examples/tablesdb/create-row.md index 85cb5a72b..da4d8349d 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-row.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-rows.md b/examples/1.9.x/server-go/examples/tablesdb/create-rows.md index e7bc66265..ae3c8fca3 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-rows.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-string-column.md index 52b5c7277..8c2447459 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-string-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-table.md b/examples/1.9.x/server-go/examples/tablesdb/create-table.md index bb52de8cd..4062314e4 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-table.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-text-column.md index 6a1beb8f1..29a7ab314 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-text-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-go/examples/tablesdb/create-transaction.md index 5ccea9577..26531f181 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-transaction.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-url-column.md index af68adc4b..f572c273a 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-url-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-go/examples/tablesdb/create-varchar-column.md index d0a370897..8e714a604 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create-varchar-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/create.md b/examples/1.9.x/server-go/examples/tablesdb/create.md index ffe3632bd..fe131496a 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/create.md +++ b/examples/1.9.x/server-go/examples/tablesdb/create.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-go/examples/tablesdb/decrement-row-column.md index e9dbd21f2..620dcdb09 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/decrement-row-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/delete-column.md b/examples/1.9.x/server-go/examples/tablesdb/delete-column.md index 131ab9615..8c5bea4ce 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/delete-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/delete-index.md b/examples/1.9.x/server-go/examples/tablesdb/delete-index.md index b17785de0..9b784fbc4 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-go/examples/tablesdb/delete-index.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/delete-row.md b/examples/1.9.x/server-go/examples/tablesdb/delete-row.md index 6a365c5a7..4f077c580 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-go/examples/tablesdb/delete-row.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-go/examples/tablesdb/delete-rows.md index e282e991a..bd82c4ab0 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-go/examples/tablesdb/delete-rows.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/delete-table.md b/examples/1.9.x/server-go/examples/tablesdb/delete-table.md index af8b11e24..79ac502bb 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-go/examples/tablesdb/delete-table.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-go/examples/tablesdb/delete-transaction.md index 82eb7b59e..5563c816d 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-go/examples/tablesdb/delete-transaction.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/delete.md b/examples/1.9.x/server-go/examples/tablesdb/delete.md index cdb8d0038..9f051f9e2 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-go/examples/tablesdb/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/get-column.md b/examples/1.9.x/server-go/examples/tablesdb/get-column.md index 5c611d474..22a6bd034 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/get-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/get-index.md b/examples/1.9.x/server-go/examples/tablesdb/get-index.md index dc5472e7b..4e39290b0 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-go/examples/tablesdb/get-index.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/get-row.md b/examples/1.9.x/server-go/examples/tablesdb/get-row.md index 227944067..beca17538 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-go/examples/tablesdb/get-row.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/get-table.md b/examples/1.9.x/server-go/examples/tablesdb/get-table.md index 4d4a09365..7841df7f6 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-go/examples/tablesdb/get-table.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-go/examples/tablesdb/get-transaction.md index 545adecc2..c8fc6bfb4 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-go/examples/tablesdb/get-transaction.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/get.md b/examples/1.9.x/server-go/examples/tablesdb/get.md index d8b5b1d24..f4226dbac 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/get.md +++ b/examples/1.9.x/server-go/examples/tablesdb/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-go/examples/tablesdb/increment-row-column.md index 5281dd108..477e68076 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/increment-row-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/list-columns.md b/examples/1.9.x/server-go/examples/tablesdb/list-columns.md index b33a50a70..fca24438f 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-go/examples/tablesdb/list-columns.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-go/examples/tablesdb/list-indexes.md index ec6a03b60..c723127a9 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-go/examples/tablesdb/list-indexes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/list-rows.md b/examples/1.9.x/server-go/examples/tablesdb/list-rows.md index 5f6e16311..88acc68f7 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-go/examples/tablesdb/list-rows.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/list-tables.md b/examples/1.9.x/server-go/examples/tablesdb/list-tables.md index a580af26d..eedbdcd91 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-go/examples/tablesdb/list-tables.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-go/examples/tablesdb/list-transactions.md index 6212155dc..85696c706 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-go/examples/tablesdb/list-transactions.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/list.md b/examples/1.9.x/server-go/examples/tablesdb/list.md index 6fbd3abd1..7abd7c5c3 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/list.md +++ b/examples/1.9.x/server-go/examples/tablesdb/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-big-int-column.md index 85f0c166d..a1ee456a0 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-big-int-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-boolean-column.md index ec82db5c6..4d378f2c8 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-boolean-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-datetime-column.md index b9300f5ab..a0a7d79c3 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-datetime-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-email-column.md index 46db0f906..f20e8dee8 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-email-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-enum-column.md index 5563caf18..2ff8141b3 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-enum-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-float-column.md index a304f1b60..18e8ff0d5 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-float-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-integer-column.md index 5f016d3f7..77d5b6067 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-integer-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-ip-column.md index f67a968c5..6d0b570d5 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-ip-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-line-column.md index 58ef19e31..2d2410128 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-line-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-longtext-column.md index 325275b77..191e165e1 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-longtext-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-mediumtext-column.md index 704828d0d..5257ff5a4 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-mediumtext-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-point-column.md index dde212bfc..1d4214cca 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-point-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-polygon-column.md index b49520acd..ebdbbbd85 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-polygon-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-relationship-column.md index 1bc8ee264..d09af9a34 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-relationship-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-row.md b/examples/1.9.x/server-go/examples/tablesdb/update-row.md index 30a2d644f..191e40646 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-row.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-rows.md b/examples/1.9.x/server-go/examples/tablesdb/update-rows.md index d0bf880dd..c5c201388 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-rows.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-string-column.md index 8a5ab0e88..34c4dfe2a 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-string-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-table.md b/examples/1.9.x/server-go/examples/tablesdb/update-table.md index dff249d0b..28be7c169 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-table.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-text-column.md index 2b21c83aa..93aebc707 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-text-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-go/examples/tablesdb/update-transaction.md index ab86872bb..980985999 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-transaction.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-url-column.md index fec3ebcf5..beda465b8 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-url-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-go/examples/tablesdb/update-varchar-column.md index 58cd03d6f..4546e826a 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update-varchar-column.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/update.md b/examples/1.9.x/server-go/examples/tablesdb/update.md index 31f077c8e..8cb7ff94c 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/update.md +++ b/examples/1.9.x/server-go/examples/tablesdb/update.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-go/examples/tablesdb/upsert-row.md index 12362a102..c959c7f66 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-go/examples/tablesdb/upsert-row.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-go/examples/tablesdb/upsert-rows.md index 18e1f1497..453acbb5b 100644 --- a/examples/1.9.x/server-go/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-go/examples/tablesdb/upsert-rows.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/teams/create-membership.md b/examples/1.9.x/server-go/examples/teams/create-membership.md index 943305ee3..0e7b5486d 100644 --- a/examples/1.9.x/server-go/examples/teams/create-membership.md +++ b/examples/1.9.x/server-go/examples/teams/create-membership.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/create.md b/examples/1.9.x/server-go/examples/teams/create.md index a461e14c5..2cbcea655 100644 --- a/examples/1.9.x/server-go/examples/teams/create.md +++ b/examples/1.9.x/server-go/examples/teams/create.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/delete-membership.md b/examples/1.9.x/server-go/examples/teams/delete-membership.md index a3f0fd7f3..a93367c2b 100644 --- a/examples/1.9.x/server-go/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-go/examples/teams/delete-membership.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/delete.md b/examples/1.9.x/server-go/examples/teams/delete.md index 2b3cdc695..0b009253d 100644 --- a/examples/1.9.x/server-go/examples/teams/delete.md +++ b/examples/1.9.x/server-go/examples/teams/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/get-membership.md b/examples/1.9.x/server-go/examples/teams/get-membership.md index ab1b9b9a3..d757d79a8 100644 --- a/examples/1.9.x/server-go/examples/teams/get-membership.md +++ b/examples/1.9.x/server-go/examples/teams/get-membership.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/get-prefs.md b/examples/1.9.x/server-go/examples/teams/get-prefs.md index bdfc49d12..0960a14db 100644 --- a/examples/1.9.x/server-go/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-go/examples/teams/get-prefs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/get.md b/examples/1.9.x/server-go/examples/teams/get.md index 647279826..5136c1052 100644 --- a/examples/1.9.x/server-go/examples/teams/get.md +++ b/examples/1.9.x/server-go/examples/teams/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/list-memberships.md b/examples/1.9.x/server-go/examples/teams/list-memberships.md index 443b8a991..34528d7a1 100644 --- a/examples/1.9.x/server-go/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-go/examples/teams/list-memberships.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/list.md b/examples/1.9.x/server-go/examples/teams/list.md index 9ba7fdeab..5f804272b 100644 --- a/examples/1.9.x/server-go/examples/teams/list.md +++ b/examples/1.9.x/server-go/examples/teams/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/update-membership-status.md b/examples/1.9.x/server-go/examples/teams/update-membership-status.md index 91d47cbef..e4a57e280 100644 --- a/examples/1.9.x/server-go/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-go/examples/teams/update-membership-status.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/update-membership.md b/examples/1.9.x/server-go/examples/teams/update-membership.md index 9769fff22..571a43d02 100644 --- a/examples/1.9.x/server-go/examples/teams/update-membership.md +++ b/examples/1.9.x/server-go/examples/teams/update-membership.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/update-name.md b/examples/1.9.x/server-go/examples/teams/update-name.md index 11d37ecca..a600184c8 100644 --- a/examples/1.9.x/server-go/examples/teams/update-name.md +++ b/examples/1.9.x/server-go/examples/teams/update-name.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/teams/update-prefs.md b/examples/1.9.x/server-go/examples/teams/update-prefs.md index 694acd952..455c66be6 100644 --- a/examples/1.9.x/server-go/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-go/examples/teams/update-prefs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithSession("") ) diff --git a/examples/1.9.x/server-go/examples/tokens/create-file-token.md b/examples/1.9.x/server-go/examples/tokens/create-file-token.md index 2b4baa1af..ecfd53273 100644 --- a/examples/1.9.x/server-go/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-go/examples/tokens/create-file-token.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tokens/delete.md b/examples/1.9.x/server-go/examples/tokens/delete.md index 981412d5a..17af5b2e2 100644 --- a/examples/1.9.x/server-go/examples/tokens/delete.md +++ b/examples/1.9.x/server-go/examples/tokens/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tokens/get.md b/examples/1.9.x/server-go/examples/tokens/get.md index bca1fce4a..c08e18f32 100644 --- a/examples/1.9.x/server-go/examples/tokens/get.md +++ b/examples/1.9.x/server-go/examples/tokens/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tokens/list.md b/examples/1.9.x/server-go/examples/tokens/list.md index 625251f18..4882dad84 100644 --- a/examples/1.9.x/server-go/examples/tokens/list.md +++ b/examples/1.9.x/server-go/examples/tokens/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/tokens/update.md b/examples/1.9.x/server-go/examples/tokens/update.md index d32aec1b8..95e78c70e 100644 --- a/examples/1.9.x/server-go/examples/tokens/update.md +++ b/examples/1.9.x/server-go/examples/tokens/update.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/usage/list-events.md b/examples/1.9.x/server-go/examples/usage/list-events.md index 31a95a53c..d10c75a7a 100644 --- a/examples/1.9.x/server-go/examples/usage/list-events.md +++ b/examples/1.9.x/server-go/examples/usage/list-events.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/usage/list-gauges.md b/examples/1.9.x/server-go/examples/usage/list-gauges.md index ddfc62983..c03b606fd 100644 --- a/examples/1.9.x/server-go/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-go/examples/usage/list-gauges.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-argon-2-user.md b/examples/1.9.x/server-go/examples/users/create-argon-2-user.md index 07cfb6b3f..430b55169 100644 --- a/examples/1.9.x/server-go/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-go/examples/users/create-argon-2-user.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-go/examples/users/create-bcrypt-user.md index 108224cd0..d0ed2c0b2 100644 --- a/examples/1.9.x/server-go/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-go/examples/users/create-bcrypt-user.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-jwt.md b/examples/1.9.x/server-go/examples/users/create-jwt.md index d8909ebe4..cf13d1e79 100644 --- a/examples/1.9.x/server-go/examples/users/create-jwt.md +++ b/examples/1.9.x/server-go/examples/users/create-jwt.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-md-5-user.md b/examples/1.9.x/server-go/examples/users/create-md-5-user.md index 33fdbb6f0..3fdd38422 100644 --- a/examples/1.9.x/server-go/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-go/examples/users/create-md-5-user.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-go/examples/users/create-mfa-recovery-codes.md index 0a259ae19..7f93f70f5 100644 --- a/examples/1.9.x/server-go/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-go/examples/users/create-mfa-recovery-codes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-go/examples/users/create-ph-pass-user.md index a5e8a4125..40501bf49 100644 --- a/examples/1.9.x/server-go/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-go/examples/users/create-ph-pass-user.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-go/examples/users/create-scrypt-modified-user.md index 6afa4f8e2..b9449b131 100644 --- a/examples/1.9.x/server-go/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-go/examples/users/create-scrypt-modified-user.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-scrypt-user.md b/examples/1.9.x/server-go/examples/users/create-scrypt-user.md index 60c07a15d..0bbe0023e 100644 --- a/examples/1.9.x/server-go/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-go/examples/users/create-scrypt-user.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-session.md b/examples/1.9.x/server-go/examples/users/create-session.md index 7b807863d..7fcf40af6 100644 --- a/examples/1.9.x/server-go/examples/users/create-session.md +++ b/examples/1.9.x/server-go/examples/users/create-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-sha-user.md b/examples/1.9.x/server-go/examples/users/create-sha-user.md index d8df83383..2bfb1a9a5 100644 --- a/examples/1.9.x/server-go/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-go/examples/users/create-sha-user.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-target.md b/examples/1.9.x/server-go/examples/users/create-target.md index 14926a165..187b33caa 100644 --- a/examples/1.9.x/server-go/examples/users/create-target.md +++ b/examples/1.9.x/server-go/examples/users/create-target.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create-token.md b/examples/1.9.x/server-go/examples/users/create-token.md index 6e5bdd3d9..2733c2aa1 100644 --- a/examples/1.9.x/server-go/examples/users/create-token.md +++ b/examples/1.9.x/server-go/examples/users/create-token.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/create.md b/examples/1.9.x/server-go/examples/users/create.md index cd65e5d85..eb1cd7424 100644 --- a/examples/1.9.x/server-go/examples/users/create.md +++ b/examples/1.9.x/server-go/examples/users/create.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/delete-identity.md b/examples/1.9.x/server-go/examples/users/delete-identity.md index d50912663..26a88fe00 100644 --- a/examples/1.9.x/server-go/examples/users/delete-identity.md +++ b/examples/1.9.x/server-go/examples/users/delete-identity.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-go/examples/users/delete-mfa-authenticator.md index da7213db4..481c3b6a7 100644 --- a/examples/1.9.x/server-go/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-go/examples/users/delete-mfa-authenticator.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/delete-session.md b/examples/1.9.x/server-go/examples/users/delete-session.md index 2f9b23bef..142d98cfd 100644 --- a/examples/1.9.x/server-go/examples/users/delete-session.md +++ b/examples/1.9.x/server-go/examples/users/delete-session.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/delete-sessions.md b/examples/1.9.x/server-go/examples/users/delete-sessions.md index 7ff72df4f..495089f30 100644 --- a/examples/1.9.x/server-go/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-go/examples/users/delete-sessions.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/delete-target.md b/examples/1.9.x/server-go/examples/users/delete-target.md index 55ab0813c..9651bb5a9 100644 --- a/examples/1.9.x/server-go/examples/users/delete-target.md +++ b/examples/1.9.x/server-go/examples/users/delete-target.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/delete.md b/examples/1.9.x/server-go/examples/users/delete.md index 247266a05..7e52a11b4 100644 --- a/examples/1.9.x/server-go/examples/users/delete.md +++ b/examples/1.9.x/server-go/examples/users/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-go/examples/users/get-mfa-recovery-codes.md index e017e452b..716f2e2f2 100644 --- a/examples/1.9.x/server-go/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-go/examples/users/get-mfa-recovery-codes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/get-prefs.md b/examples/1.9.x/server-go/examples/users/get-prefs.md index e6367519c..6f104ab44 100644 --- a/examples/1.9.x/server-go/examples/users/get-prefs.md +++ b/examples/1.9.x/server-go/examples/users/get-prefs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/get-target.md b/examples/1.9.x/server-go/examples/users/get-target.md index 9a90efdcd..7830206d1 100644 --- a/examples/1.9.x/server-go/examples/users/get-target.md +++ b/examples/1.9.x/server-go/examples/users/get-target.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/get.md b/examples/1.9.x/server-go/examples/users/get.md index 9ed504ee1..70f0cf179 100644 --- a/examples/1.9.x/server-go/examples/users/get.md +++ b/examples/1.9.x/server-go/examples/users/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/list-identities.md b/examples/1.9.x/server-go/examples/users/list-identities.md index 9a3be96a0..e7e0950ee 100644 --- a/examples/1.9.x/server-go/examples/users/list-identities.md +++ b/examples/1.9.x/server-go/examples/users/list-identities.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/list-logs.md b/examples/1.9.x/server-go/examples/users/list-logs.md index 004a9c2fe..35ac6bbe4 100644 --- a/examples/1.9.x/server-go/examples/users/list-logs.md +++ b/examples/1.9.x/server-go/examples/users/list-logs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/list-memberships.md b/examples/1.9.x/server-go/examples/users/list-memberships.md index 5fce1161f..1ef0dafe6 100644 --- a/examples/1.9.x/server-go/examples/users/list-memberships.md +++ b/examples/1.9.x/server-go/examples/users/list-memberships.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/list-mfa-factors.md b/examples/1.9.x/server-go/examples/users/list-mfa-factors.md index 9fe69902b..5e1a61a4e 100644 --- a/examples/1.9.x/server-go/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-go/examples/users/list-mfa-factors.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/list-sessions.md b/examples/1.9.x/server-go/examples/users/list-sessions.md index 7dc577ff9..1416463e7 100644 --- a/examples/1.9.x/server-go/examples/users/list-sessions.md +++ b/examples/1.9.x/server-go/examples/users/list-sessions.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/list-targets.md b/examples/1.9.x/server-go/examples/users/list-targets.md index 9cd72f40a..038b55c92 100644 --- a/examples/1.9.x/server-go/examples/users/list-targets.md +++ b/examples/1.9.x/server-go/examples/users/list-targets.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/list.md b/examples/1.9.x/server-go/examples/users/list.md index 3aee17e35..3e9723deb 100644 --- a/examples/1.9.x/server-go/examples/users/list.md +++ b/examples/1.9.x/server-go/examples/users/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-email-verification.md b/examples/1.9.x/server-go/examples/users/update-email-verification.md index 93daf5204..d6805fa8a 100644 --- a/examples/1.9.x/server-go/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-go/examples/users/update-email-verification.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-email.md b/examples/1.9.x/server-go/examples/users/update-email.md index 1e5faf60b..2b43abd73 100644 --- a/examples/1.9.x/server-go/examples/users/update-email.md +++ b/examples/1.9.x/server-go/examples/users/update-email.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-impersonator.md b/examples/1.9.x/server-go/examples/users/update-impersonator.md index 799c1c448..c04a2cfe1 100644 --- a/examples/1.9.x/server-go/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-go/examples/users/update-impersonator.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-labels.md b/examples/1.9.x/server-go/examples/users/update-labels.md index 7152c40f1..2d86adab7 100644 --- a/examples/1.9.x/server-go/examples/users/update-labels.md +++ b/examples/1.9.x/server-go/examples/users/update-labels.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-go/examples/users/update-mfa-recovery-codes.md index 531e88be3..eff08806a 100644 --- a/examples/1.9.x/server-go/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-go/examples/users/update-mfa-recovery-codes.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-mfa.md b/examples/1.9.x/server-go/examples/users/update-mfa.md index ea1653f0c..c27045ba4 100644 --- a/examples/1.9.x/server-go/examples/users/update-mfa.md +++ b/examples/1.9.x/server-go/examples/users/update-mfa.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-name.md b/examples/1.9.x/server-go/examples/users/update-name.md index 79d069b11..7ebef41fe 100644 --- a/examples/1.9.x/server-go/examples/users/update-name.md +++ b/examples/1.9.x/server-go/examples/users/update-name.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-password.md b/examples/1.9.x/server-go/examples/users/update-password.md index 4f8f32261..192a3247c 100644 --- a/examples/1.9.x/server-go/examples/users/update-password.md +++ b/examples/1.9.x/server-go/examples/users/update-password.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-phone-verification.md b/examples/1.9.x/server-go/examples/users/update-phone-verification.md index 7dee18dca..bf1c4f2de 100644 --- a/examples/1.9.x/server-go/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-go/examples/users/update-phone-verification.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-phone.md b/examples/1.9.x/server-go/examples/users/update-phone.md index 13ff326d5..dd85cfc19 100644 --- a/examples/1.9.x/server-go/examples/users/update-phone.md +++ b/examples/1.9.x/server-go/examples/users/update-phone.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-prefs.md b/examples/1.9.x/server-go/examples/users/update-prefs.md index 28f9d48f6..7bffc582f 100644 --- a/examples/1.9.x/server-go/examples/users/update-prefs.md +++ b/examples/1.9.x/server-go/examples/users/update-prefs.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-status.md b/examples/1.9.x/server-go/examples/users/update-status.md index 3a8c0983e..31a6b2369 100644 --- a/examples/1.9.x/server-go/examples/users/update-status.md +++ b/examples/1.9.x/server-go/examples/users/update-status.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/users/update-target.md b/examples/1.9.x/server-go/examples/users/update-target.md index 752f58203..1b7a99732 100644 --- a/examples/1.9.x/server-go/examples/users/update-target.md +++ b/examples/1.9.x/server-go/examples/users/update-target.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/webhooks/create.md b/examples/1.9.x/server-go/examples/webhooks/create.md index afa8e4950..8dc40e592 100644 --- a/examples/1.9.x/server-go/examples/webhooks/create.md +++ b/examples/1.9.x/server-go/examples/webhooks/create.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/webhooks/delete.md b/examples/1.9.x/server-go/examples/webhooks/delete.md index c47a589d3..504e33d09 100644 --- a/examples/1.9.x/server-go/examples/webhooks/delete.md +++ b/examples/1.9.x/server-go/examples/webhooks/delete.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/webhooks/get.md b/examples/1.9.x/server-go/examples/webhooks/get.md index 88771987b..d9820afe4 100644 --- a/examples/1.9.x/server-go/examples/webhooks/get.md +++ b/examples/1.9.x/server-go/examples/webhooks/get.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/webhooks/list.md b/examples/1.9.x/server-go/examples/webhooks/list.md index 693430671..234100aeb 100644 --- a/examples/1.9.x/server-go/examples/webhooks/list.md +++ b/examples/1.9.x/server-go/examples/webhooks/list.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/webhooks/update-secret.md b/examples/1.9.x/server-go/examples/webhooks/update-secret.md index 5f63c2630..df47b4829 100644 --- a/examples/1.9.x/server-go/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-go/examples/webhooks/update-secret.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-go/examples/webhooks/update.md b/examples/1.9.x/server-go/examples/webhooks/update.md index 7b0b25099..b7c2129e6 100644 --- a/examples/1.9.x/server-go/examples/webhooks/update.md +++ b/examples/1.9.x/server-go/examples/webhooks/update.md @@ -8,7 +8,7 @@ import ( ) client := client.New( - client.WithEndpoint("https://.cloud.appwrite.io/v1") + client.WithEndpoint("") client.WithProject("") client.WithKey("") ) diff --git a/examples/1.9.x/server-graphql/examples/functions/create.md b/examples/1.9.x/server-graphql/examples/functions/create.md index fa44b0753..ebfd782d8 100644 --- a/examples/1.9.x/server-graphql/examples/functions/create.md +++ b/examples/1.9.x/server-graphql/examples/functions/create.md @@ -18,6 +18,8 @@ mutation { providerBranch: "", providerSilentMode: false, providerRootDirectory: "", + providerBranches: [], + providerPaths: [], buildSpecification: "", runtimeSpecification: "", deploymentRetention: 0 @@ -59,6 +61,8 @@ mutation { providerBranch providerRootDirectory providerSilentMode + providerBranches + providerPaths buildSpecification runtimeSpecification } diff --git a/examples/1.9.x/server-graphql/examples/functions/update-function-deployment.md b/examples/1.9.x/server-graphql/examples/functions/update-function-deployment.md index 5e85f1f97..d97150d4a 100644 --- a/examples/1.9.x/server-graphql/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-graphql/examples/functions/update-function-deployment.md @@ -41,6 +41,8 @@ mutation { providerBranch providerRootDirectory providerSilentMode + providerBranches + providerPaths buildSpecification runtimeSpecification } diff --git a/examples/1.9.x/server-graphql/examples/functions/update.md b/examples/1.9.x/server-graphql/examples/functions/update.md index 8d20d37b5..88f6c30ca 100644 --- a/examples/1.9.x/server-graphql/examples/functions/update.md +++ b/examples/1.9.x/server-graphql/examples/functions/update.md @@ -18,6 +18,8 @@ mutation { providerBranch: "", providerSilentMode: false, providerRootDirectory: "", + providerBranches: [], + providerPaths: [], buildSpecification: "", runtimeSpecification: "", deploymentRetention: 0 @@ -59,6 +61,8 @@ mutation { providerBranch providerRootDirectory providerSilentMode + providerBranches + providerPaths buildSpecification runtimeSpecification } diff --git a/examples/1.9.x/server-graphql/examples/organization/create-key.md b/examples/1.9.x/server-graphql/examples/organization/create-key.md new file mode 100644 index 000000000..4ee477f61 --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/create-key.md @@ -0,0 +1,20 @@ +```graphql +mutation { + organizationCreateKey( + keyId: "", + name: "", + scopes: [], + expire: "2020-10-15T06:38:00.000+00:00" + ) { + _id + _createdAt + _updatedAt + name + expire + scopes + secret + accessedAt + sdks + } +} +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/create-project.md b/examples/1.9.x/server-graphql/examples/organization/create-project.md new file mode 100644 index 000000000..5debc5c7e --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/create-project.md @@ -0,0 +1,75 @@ +```graphql +mutation { + organizationCreateProject( + projectId: "", + name: "", + region: "fra" + ) { + _id + _createdAt + _updatedAt + name + teamId + devKeys { + _id + _createdAt + _updatedAt + name + expire + secret + accessedAt + sdks + } + smtpEnabled + smtpSenderName + smtpSenderEmail + smtpReplyToName + smtpReplyToEmail + smtpHost + smtpPort + smtpUsername + smtpPassword + smtpSecure + pingCount + pingedAt + labels + status + authMethods { + _id + enabled + } + services { + _id + enabled + } + protocols { + _id + enabled + } + region + billingLimits { + bandwidth + storage + users + executions + GBHours + imageTransformations + authPhone + budgetLimit + } + blocks { + _createdAt + resourceType + resourceId + reason + expiredAt + projectName + region + organizationName + organizationId + billingPlan + } + consoleAccessedAt + } +} +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/delete-key.md b/examples/1.9.x/server-graphql/examples/organization/delete-key.md new file mode 100644 index 000000000..7f609dfaf --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/delete-key.md @@ -0,0 +1,9 @@ +```graphql +mutation { + organizationDeleteKey( + keyId: "" + ) { + status + } +} +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/delete-project.md b/examples/1.9.x/server-graphql/examples/organization/delete-project.md new file mode 100644 index 000000000..42e3c1c09 --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/delete-project.md @@ -0,0 +1,9 @@ +```graphql +mutation { + organizationDeleteProject( + projectId: "" + ) { + status + } +} +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/get-key.md b/examples/1.9.x/server-graphql/examples/organization/get-key.md new file mode 100644 index 000000000..d7962b96e --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/get-key.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/get-project.md b/examples/1.9.x/server-graphql/examples/organization/get-project.md new file mode 100644 index 000000000..d7962b96e --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/get-project.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/list-keys.md b/examples/1.9.x/server-graphql/examples/organization/list-keys.md new file mode 100644 index 000000000..d7962b96e --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/list-keys.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/list-projects.md b/examples/1.9.x/server-graphql/examples/organization/list-projects.md new file mode 100644 index 000000000..d7962b96e --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/list-projects.md @@ -0,0 +1,2 @@ +```graphql +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/update-key.md b/examples/1.9.x/server-graphql/examples/organization/update-key.md new file mode 100644 index 000000000..827808058 --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/update-key.md @@ -0,0 +1,20 @@ +```graphql +mutation { + organizationUpdateKey( + keyId: "", + name: "", + scopes: [], + expire: "2020-10-15T06:38:00.000+00:00" + ) { + _id + _createdAt + _updatedAt + name + expire + scopes + secret + accessedAt + sdks + } +} +``` diff --git a/examples/1.9.x/server-graphql/examples/organization/update-project.md b/examples/1.9.x/server-graphql/examples/organization/update-project.md new file mode 100644 index 000000000..eb48d83fa --- /dev/null +++ b/examples/1.9.x/server-graphql/examples/organization/update-project.md @@ -0,0 +1,74 @@ +```graphql +mutation { + organizationUpdateProject( + projectId: "", + name: "" + ) { + _id + _createdAt + _updatedAt + name + teamId + devKeys { + _id + _createdAt + _updatedAt + name + expire + secret + accessedAt + sdks + } + smtpEnabled + smtpSenderName + smtpSenderEmail + smtpReplyToName + smtpReplyToEmail + smtpHost + smtpPort + smtpUsername + smtpPassword + smtpSecure + pingCount + pingedAt + labels + status + authMethods { + _id + enabled + } + services { + _id + enabled + } + protocols { + _id + enabled + } + region + billingLimits { + bandwidth + storage + users + executions + GBHours + imageTransformations + authPhone + budgetLimit + } + blocks { + _createdAt + resourceType + resourceId + reason + expiredAt + projectName + region + organizationName + organizationId + billingPlan + } + consoleAccessedAt + } +} +``` diff --git a/examples/1.9.x/server-graphql/examples/sites/create.md b/examples/1.9.x/server-graphql/examples/sites/create.md index 538aee812..ca011eab2 100644 --- a/examples/1.9.x/server-graphql/examples/sites/create.md +++ b/examples/1.9.x/server-graphql/examples/sites/create.md @@ -19,6 +19,8 @@ mutation { providerBranch: "", providerSilentMode: false, providerRootDirectory: "", + providerBranches: [], + providerPaths: [], buildSpecification: "", runtimeSpecification: "", deploymentRetention: 0 @@ -59,6 +61,8 @@ mutation { providerBranch providerRootDirectory providerSilentMode + providerBranches + providerPaths buildSpecification runtimeSpecification buildRuntime diff --git a/examples/1.9.x/server-graphql/examples/sites/update-site-deployment.md b/examples/1.9.x/server-graphql/examples/sites/update-site-deployment.md index e515a25e0..d5c3dcb2a 100644 --- a/examples/1.9.x/server-graphql/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-graphql/examples/sites/update-site-deployment.md @@ -40,6 +40,8 @@ mutation { providerBranch providerRootDirectory providerSilentMode + providerBranches + providerPaths buildSpecification runtimeSpecification buildRuntime diff --git a/examples/1.9.x/server-graphql/examples/sites/update.md b/examples/1.9.x/server-graphql/examples/sites/update.md index e24bde40e..51deb90d0 100644 --- a/examples/1.9.x/server-graphql/examples/sites/update.md +++ b/examples/1.9.x/server-graphql/examples/sites/update.md @@ -19,6 +19,8 @@ mutation { providerBranch: "", providerSilentMode: false, providerRootDirectory: "", + providerBranches: [], + providerPaths: [], buildSpecification: "", runtimeSpecification: "", deploymentRetention: 0 @@ -59,6 +61,8 @@ mutation { providerBranch providerRootDirectory providerSilentMode + providerBranches + providerPaths buildSpecification runtimeSpecification buildRuntime diff --git a/examples/1.9.x/server-kotlin/java/account/create-anonymous-session.md b/examples/1.9.x/server-kotlin/java/account/create-anonymous-session.md index e6e2e4398..9bcd77b3b 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-anonymous-session.md +++ b/examples/1.9.x/server-kotlin/java/account/create-anonymous-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-email-password-session.md b/examples/1.9.x/server-kotlin/java/account/create-email-password-session.md index c6c08c959..73ca5bc00 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-email-password-session.md +++ b/examples/1.9.x/server-kotlin/java/account/create-email-password-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-email-token.md b/examples/1.9.x/server-kotlin/java/account/create-email-token.md index a718e2d5e..4b4a5db1d 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-email-token.md +++ b/examples/1.9.x/server-kotlin/java/account/create-email-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-email-verification.md b/examples/1.9.x/server-kotlin/java/account/create-email-verification.md index 109ae076c..91236fbf6 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-email-verification.md +++ b/examples/1.9.x/server-kotlin/java/account/create-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-jwt.md b/examples/1.9.x/server-kotlin/java/account/create-jwt.md index 569c5758a..f5c5c24b3 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-jwt.md +++ b/examples/1.9.x/server-kotlin/java/account/create-jwt.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-magic-url-token.md b/examples/1.9.x/server-kotlin/java/account/create-magic-url-token.md index 2f6e83ec8..65b81403c 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-magic-url-token.md +++ b/examples/1.9.x/server-kotlin/java/account/create-magic-url-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-mfa-authenticator.md b/examples/1.9.x/server-kotlin/java/account/create-mfa-authenticator.md index 123866a91..f40c06b3b 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-kotlin/java/account/create-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.AuthenticatorType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-mfa-challenge.md b/examples/1.9.x/server-kotlin/java/account/create-mfa-challenge.md index 458936398..6ba1cbada 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-kotlin/java/account/create-mfa-challenge.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.AuthenticationFactor; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/java/account/create-mfa-recovery-codes.md index 090c61d1e..ca71ca6d7 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/java/account/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-o-auth-2-token.md b/examples/1.9.x/server-kotlin/java/account/create-o-auth-2-token.md index 3f7472704..115ead155 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-kotlin/java/account/create-o-auth-2-token.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.OAuthProvider; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-phone-token.md b/examples/1.9.x/server-kotlin/java/account/create-phone-token.md index 45bc0ccb6..3990d99c1 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-phone-token.md +++ b/examples/1.9.x/server-kotlin/java/account/create-phone-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-phone-verification.md b/examples/1.9.x/server-kotlin/java/account/create-phone-verification.md index 6ed21235c..c2cf6feec 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-phone-verification.md +++ b/examples/1.9.x/server-kotlin/java/account/create-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-recovery.md b/examples/1.9.x/server-kotlin/java/account/create-recovery.md index 64951b257..41dbb2fc7 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-recovery.md +++ b/examples/1.9.x/server-kotlin/java/account/create-recovery.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-session.md b/examples/1.9.x/server-kotlin/java/account/create-session.md index 3376cb85d..ec3b7dfa2 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-session.md +++ b/examples/1.9.x/server-kotlin/java/account/create-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create-verification.md b/examples/1.9.x/server-kotlin/java/account/create-verification.md index f0f221b45..757d4803a 100644 --- a/examples/1.9.x/server-kotlin/java/account/create-verification.md +++ b/examples/1.9.x/server-kotlin/java/account/create-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/create.md b/examples/1.9.x/server-kotlin/java/account/create.md index 9acef5599..ce71658a1 100644 --- a/examples/1.9.x/server-kotlin/java/account/create.md +++ b/examples/1.9.x/server-kotlin/java/account/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/delete-identity.md b/examples/1.9.x/server-kotlin/java/account/delete-identity.md index 5bb897f5d..faf87e81b 100644 --- a/examples/1.9.x/server-kotlin/java/account/delete-identity.md +++ b/examples/1.9.x/server-kotlin/java/account/delete-identity.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/delete-mfa-authenticator.md b/examples/1.9.x/server-kotlin/java/account/delete-mfa-authenticator.md index 4ce42b4e4..f9100f529 100644 --- a/examples/1.9.x/server-kotlin/java/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-kotlin/java/account/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.AuthenticatorType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/delete-session.md b/examples/1.9.x/server-kotlin/java/account/delete-session.md index 781161c74..9cefda4c9 100644 --- a/examples/1.9.x/server-kotlin/java/account/delete-session.md +++ b/examples/1.9.x/server-kotlin/java/account/delete-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/delete-sessions.md b/examples/1.9.x/server-kotlin/java/account/delete-sessions.md index ef087fd4a..9485b56b6 100644 --- a/examples/1.9.x/server-kotlin/java/account/delete-sessions.md +++ b/examples/1.9.x/server-kotlin/java/account/delete-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/java/account/get-mfa-recovery-codes.md index 6d59890b3..54b8dbc8d 100644 --- a/examples/1.9.x/server-kotlin/java/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/java/account/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/get-prefs.md b/examples/1.9.x/server-kotlin/java/account/get-prefs.md index eb6c6e56b..9ed628bb4 100644 --- a/examples/1.9.x/server-kotlin/java/account/get-prefs.md +++ b/examples/1.9.x/server-kotlin/java/account/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/get-session.md b/examples/1.9.x/server-kotlin/java/account/get-session.md index e5d96a82a..816abff31 100644 --- a/examples/1.9.x/server-kotlin/java/account/get-session.md +++ b/examples/1.9.x/server-kotlin/java/account/get-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/get.md b/examples/1.9.x/server-kotlin/java/account/get.md index 83caeaffa..c9ea4211f 100644 --- a/examples/1.9.x/server-kotlin/java/account/get.md +++ b/examples/1.9.x/server-kotlin/java/account/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/list-identities.md b/examples/1.9.x/server-kotlin/java/account/list-identities.md index 4c439111c..5fbc6626d 100644 --- a/examples/1.9.x/server-kotlin/java/account/list-identities.md +++ b/examples/1.9.x/server-kotlin/java/account/list-identities.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/list-logs.md b/examples/1.9.x/server-kotlin/java/account/list-logs.md index e82f68683..d98a1efe0 100644 --- a/examples/1.9.x/server-kotlin/java/account/list-logs.md +++ b/examples/1.9.x/server-kotlin/java/account/list-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/list-mfa-factors.md b/examples/1.9.x/server-kotlin/java/account/list-mfa-factors.md index d69f23e13..c9414bf1e 100644 --- a/examples/1.9.x/server-kotlin/java/account/list-mfa-factors.md +++ b/examples/1.9.x/server-kotlin/java/account/list-mfa-factors.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/list-sessions.md b/examples/1.9.x/server-kotlin/java/account/list-sessions.md index bb25cff16..11a8231e2 100644 --- a/examples/1.9.x/server-kotlin/java/account/list-sessions.md +++ b/examples/1.9.x/server-kotlin/java/account/list-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-email-verification.md b/examples/1.9.x/server-kotlin/java/account/update-email-verification.md index dd13e6fe6..bb800f89c 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-email-verification.md +++ b/examples/1.9.x/server-kotlin/java/account/update-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-email.md b/examples/1.9.x/server-kotlin/java/account/update-email.md index 06baceaef..bc98e89fe 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-email.md +++ b/examples/1.9.x/server-kotlin/java/account/update-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-magic-url-session.md b/examples/1.9.x/server-kotlin/java/account/update-magic-url-session.md index 8ed558d11..028522ebf 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-magic-url-session.md +++ b/examples/1.9.x/server-kotlin/java/account/update-magic-url-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-mfa-authenticator.md b/examples/1.9.x/server-kotlin/java/account/update-mfa-authenticator.md index aaceb2971..cbb01bbe0 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-kotlin/java/account/update-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account; import io.appwrite.enums.AuthenticatorType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-mfa-challenge.md b/examples/1.9.x/server-kotlin/java/account/update-mfa-challenge.md index a80179951..4020752d7 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-kotlin/java/account/update-mfa-challenge.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/java/account/update-mfa-recovery-codes.md index 7062704b6..50d82619d 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/java/account/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-mfa.md b/examples/1.9.x/server-kotlin/java/account/update-mfa.md index f63ee870c..9c8690e1c 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-mfa.md +++ b/examples/1.9.x/server-kotlin/java/account/update-mfa.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-name.md b/examples/1.9.x/server-kotlin/java/account/update-name.md index fe63d7e4a..b791500b6 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-name.md +++ b/examples/1.9.x/server-kotlin/java/account/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-password.md b/examples/1.9.x/server-kotlin/java/account/update-password.md index 44a4ea09a..38264cb8b 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-password.md +++ b/examples/1.9.x/server-kotlin/java/account/update-password.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-phone-session.md b/examples/1.9.x/server-kotlin/java/account/update-phone-session.md index 33e701c8d..9fffbbf81 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-phone-session.md +++ b/examples/1.9.x/server-kotlin/java/account/update-phone-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-phone-verification.md b/examples/1.9.x/server-kotlin/java/account/update-phone-verification.md index 7b692cb47..46cc6d75d 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-phone-verification.md +++ b/examples/1.9.x/server-kotlin/java/account/update-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-phone.md b/examples/1.9.x/server-kotlin/java/account/update-phone.md index 2ffdc2349..09941f6df 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-phone.md +++ b/examples/1.9.x/server-kotlin/java/account/update-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-prefs.md b/examples/1.9.x/server-kotlin/java/account/update-prefs.md index a3f58f5f6..016008c1f 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-prefs.md +++ b/examples/1.9.x/server-kotlin/java/account/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-recovery.md b/examples/1.9.x/server-kotlin/java/account/update-recovery.md index dc1b83c5e..909e37b9d 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-recovery.md +++ b/examples/1.9.x/server-kotlin/java/account/update-recovery.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-session.md b/examples/1.9.x/server-kotlin/java/account/update-session.md index a33ee5cf8..c4ed1f2ad 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-session.md +++ b/examples/1.9.x/server-kotlin/java/account/update-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-status.md b/examples/1.9.x/server-kotlin/java/account/update-status.md index 777ff6b55..4c0013924 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-status.md +++ b/examples/1.9.x/server-kotlin/java/account/update-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/account/update-verification.md b/examples/1.9.x/server-kotlin/java/account/update-verification.md index 3c19f4f1c..f3bc8e638 100644 --- a/examples/1.9.x/server-kotlin/java/account/update-verification.md +++ b/examples/1.9.x/server-kotlin/java/account/update-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Account; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/activities/get-event.md b/examples/1.9.x/server-kotlin/java/activities/get-event.md index 1e7f49d25..d6e83bc37 100644 --- a/examples/1.9.x/server-kotlin/java/activities/get-event.md +++ b/examples/1.9.x/server-kotlin/java/activities/get-event.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Activities; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/activities/list-events.md b/examples/1.9.x/server-kotlin/java/activities/list-events.md index a6c5e3e9a..c01de68e5 100644 --- a/examples/1.9.x/server-kotlin/java/activities/list-events.md +++ b/examples/1.9.x/server-kotlin/java/activities/list-events.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Activities; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/advisor/delete-report.md b/examples/1.9.x/server-kotlin/java/advisor/delete-report.md index 1ecfdda81..b17f3514a 100644 --- a/examples/1.9.x/server-kotlin/java/advisor/delete-report.md +++ b/examples/1.9.x/server-kotlin/java/advisor/delete-report.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Advisor; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/advisor/get-insight.md b/examples/1.9.x/server-kotlin/java/advisor/get-insight.md index 324de8563..0f657caee 100644 --- a/examples/1.9.x/server-kotlin/java/advisor/get-insight.md +++ b/examples/1.9.x/server-kotlin/java/advisor/get-insight.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Advisor; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/advisor/get-report.md b/examples/1.9.x/server-kotlin/java/advisor/get-report.md index 3cc1a07d0..8fe8b4173 100644 --- a/examples/1.9.x/server-kotlin/java/advisor/get-report.md +++ b/examples/1.9.x/server-kotlin/java/advisor/get-report.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Advisor; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/advisor/list-insights.md b/examples/1.9.x/server-kotlin/java/advisor/list-insights.md index 5aecf631b..7b2c7b1e4 100644 --- a/examples/1.9.x/server-kotlin/java/advisor/list-insights.md +++ b/examples/1.9.x/server-kotlin/java/advisor/list-insights.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Advisor; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/advisor/list-reports.md b/examples/1.9.x/server-kotlin/java/advisor/list-reports.md index a8a5a46a6..dd22a9f8c 100644 --- a/examples/1.9.x/server-kotlin/java/advisor/list-reports.md +++ b/examples/1.9.x/server-kotlin/java/advisor/list-reports.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Advisor; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/avatars/get-browser.md b/examples/1.9.x/server-kotlin/java/avatars/get-browser.md index 72748afcb..edd92f82b 100644 --- a/examples/1.9.x/server-kotlin/java/avatars/get-browser.md +++ b/examples/1.9.x/server-kotlin/java/avatars/get-browser.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars; import io.appwrite.enums.Browser; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/avatars/get-credit-card.md b/examples/1.9.x/server-kotlin/java/avatars/get-credit-card.md index 8f93da91a..19bd24033 100644 --- a/examples/1.9.x/server-kotlin/java/avatars/get-credit-card.md +++ b/examples/1.9.x/server-kotlin/java/avatars/get-credit-card.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars; import io.appwrite.enums.CreditCard; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/avatars/get-favicon.md b/examples/1.9.x/server-kotlin/java/avatars/get-favicon.md index 6df13f5e8..ce73e0002 100644 --- a/examples/1.9.x/server-kotlin/java/avatars/get-favicon.md +++ b/examples/1.9.x/server-kotlin/java/avatars/get-favicon.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/avatars/get-flag.md b/examples/1.9.x/server-kotlin/java/avatars/get-flag.md index f66a872d3..cd0e4bb39 100644 --- a/examples/1.9.x/server-kotlin/java/avatars/get-flag.md +++ b/examples/1.9.x/server-kotlin/java/avatars/get-flag.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars; import io.appwrite.enums.Flag; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/avatars/get-image.md b/examples/1.9.x/server-kotlin/java/avatars/get-image.md index 7f93b9f9f..8fbb58b66 100644 --- a/examples/1.9.x/server-kotlin/java/avatars/get-image.md +++ b/examples/1.9.x/server-kotlin/java/avatars/get-image.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/avatars/get-initials.md b/examples/1.9.x/server-kotlin/java/avatars/get-initials.md index 31792b91f..ea797cb49 100644 --- a/examples/1.9.x/server-kotlin/java/avatars/get-initials.md +++ b/examples/1.9.x/server-kotlin/java/avatars/get-initials.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/avatars/get-qr.md b/examples/1.9.x/server-kotlin/java/avatars/get-qr.md index 0e22f63f1..c33ad903a 100644 --- a/examples/1.9.x/server-kotlin/java/avatars/get-qr.md +++ b/examples/1.9.x/server-kotlin/java/avatars/get-qr.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/avatars/get-screenshot.md b/examples/1.9.x/server-kotlin/java/avatars/get-screenshot.md index 8110b1c34..f1034bb15 100644 --- a/examples/1.9.x/server-kotlin/java/avatars/get-screenshot.md +++ b/examples/1.9.x/server-kotlin/java/avatars/get-screenshot.md @@ -2,13 +2,13 @@ import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Avatars; -import io.appwrite.enums.Theme; +import io.appwrite.enums.BrowserTheme; import io.appwrite.enums.Timezone; import io.appwrite.enums.BrowserPermission; import io.appwrite.enums.ImageFormat; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with @@ -23,7 +23,7 @@ avatars.getScreenshot( 1920, // viewportWidth (optional) 1080, // viewportHeight (optional) 2, // scale (optional) - Theme.DARK, // theme (optional) + BrowserTheme.DARK, // theme (optional) "Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15", // userAgent (optional) true, // fullpage (optional) "en-US", // locale (optional) diff --git a/examples/1.9.x/server-kotlin/java/backups/create-archive.md b/examples/1.9.x/server-kotlin/java/backups/create-archive.md index fb181fccb..68411e7cc 100644 --- a/examples/1.9.x/server-kotlin/java/backups/create-archive.md +++ b/examples/1.9.x/server-kotlin/java/backups/create-archive.md @@ -5,7 +5,7 @@ import io.appwrite.services.Backups; import io.appwrite.enums.BackupServices; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/create-policy.md b/examples/1.9.x/server-kotlin/java/backups/create-policy.md index 42003cc4a..4835240cd 100644 --- a/examples/1.9.x/server-kotlin/java/backups/create-policy.md +++ b/examples/1.9.x/server-kotlin/java/backups/create-policy.md @@ -5,7 +5,7 @@ import io.appwrite.services.Backups; import io.appwrite.enums.BackupServices; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/create-restoration.md b/examples/1.9.x/server-kotlin/java/backups/create-restoration.md index 099f5704e..6af7d84de 100644 --- a/examples/1.9.x/server-kotlin/java/backups/create-restoration.md +++ b/examples/1.9.x/server-kotlin/java/backups/create-restoration.md @@ -5,7 +5,7 @@ import io.appwrite.services.Backups; import io.appwrite.enums.BackupServices; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/delete-archive.md b/examples/1.9.x/server-kotlin/java/backups/delete-archive.md index c413a5de7..af5a6d7cf 100644 --- a/examples/1.9.x/server-kotlin/java/backups/delete-archive.md +++ b/examples/1.9.x/server-kotlin/java/backups/delete-archive.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/delete-policy.md b/examples/1.9.x/server-kotlin/java/backups/delete-policy.md index 3ece5e389..ba10cba2b 100644 --- a/examples/1.9.x/server-kotlin/java/backups/delete-policy.md +++ b/examples/1.9.x/server-kotlin/java/backups/delete-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/get-archive.md b/examples/1.9.x/server-kotlin/java/backups/get-archive.md index 2fea53712..a9ad68c09 100644 --- a/examples/1.9.x/server-kotlin/java/backups/get-archive.md +++ b/examples/1.9.x/server-kotlin/java/backups/get-archive.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/get-policy.md b/examples/1.9.x/server-kotlin/java/backups/get-policy.md index 844e436d5..8c071445c 100644 --- a/examples/1.9.x/server-kotlin/java/backups/get-policy.md +++ b/examples/1.9.x/server-kotlin/java/backups/get-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/get-restoration.md b/examples/1.9.x/server-kotlin/java/backups/get-restoration.md index cba9b0420..7f9ea2144 100644 --- a/examples/1.9.x/server-kotlin/java/backups/get-restoration.md +++ b/examples/1.9.x/server-kotlin/java/backups/get-restoration.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/list-archives.md b/examples/1.9.x/server-kotlin/java/backups/list-archives.md index e4990166b..3bb905a7e 100644 --- a/examples/1.9.x/server-kotlin/java/backups/list-archives.md +++ b/examples/1.9.x/server-kotlin/java/backups/list-archives.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/list-policies.md b/examples/1.9.x/server-kotlin/java/backups/list-policies.md index 89f2ecf60..d0cb3f2c6 100644 --- a/examples/1.9.x/server-kotlin/java/backups/list-policies.md +++ b/examples/1.9.x/server-kotlin/java/backups/list-policies.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/list-restorations.md b/examples/1.9.x/server-kotlin/java/backups/list-restorations.md index 997d80027..f27c5fac7 100644 --- a/examples/1.9.x/server-kotlin/java/backups/list-restorations.md +++ b/examples/1.9.x/server-kotlin/java/backups/list-restorations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/backups/update-policy.md b/examples/1.9.x/server-kotlin/java/backups/update-policy.md index c27053628..33ba3e5ef 100644 --- a/examples/1.9.x/server-kotlin/java/backups/update-policy.md +++ b/examples/1.9.x/server-kotlin/java/backups/update-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Backups; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-big-int-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-big-int-attribute.md index 886dc13d5..db6fdff0c 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-big-int-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-boolean-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-boolean-attribute.md index 7daed5639..1a3cd5f8b 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-boolean-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-collection.md b/examples/1.9.x/server-kotlin/java/databases/create-collection.md index 32d9cd54e..9974facab 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-collection.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-collection.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-datetime-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-datetime-attribute.md index e213d46ea..ffb34695a 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-datetime-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-document.md b/examples/1.9.x/server-kotlin/java/databases/create-document.md index 34206c2d4..3eb171de0 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-document.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-document.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/databases/create-documents.md b/examples/1.9.x/server-kotlin/java/databases/create-documents.md index 5a158bf59..290634829 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-documents.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-email-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-email-attribute.md index c556ea4bd..68d2af802 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-email-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-email-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-enum-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-enum-attribute.md index fe94c4be4..fe9e14988 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-enum-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-float-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-float-attribute.md index 16d057bb1..6b32cdafd 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-float-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-float-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-index.md b/examples/1.9.x/server-kotlin/java/databases/create-index.md index 28a10ca2f..dd975c7c6 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-index.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-index.md @@ -6,7 +6,7 @@ import io.appwrite.enums.DatabasesIndexType; import io.appwrite.enums.OrderBy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-integer-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-integer-attribute.md index 5716f44e9..6d36bb56f 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-integer-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-ip-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-ip-attribute.md index 34569a9be..48a3c3e71 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-ip-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-line-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-line-attribute.md index 4bcb1fe83..c8e17364a 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-line-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-line-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-longtext-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-longtext-attribute.md index e4536fc7f..f60023b17 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-longtext-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-mediumtext-attribute.md index 64634ecdd..486617ea8 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-mediumtext-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-operations.md b/examples/1.9.x/server-kotlin/java/databases/create-operations.md index 29f1efbde..565bbe3b2 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-operations.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-operations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-point-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-point-attribute.md index 98e14113f..6855c0ecf 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-point-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-point-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-polygon-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-polygon-attribute.md index 184258f5c..a820ba17e 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-polygon-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-relationship-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-relationship-attribute.md index 307b948b4..bb7edd3f1 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-relationship-attribute.md @@ -6,7 +6,7 @@ import io.appwrite.enums.RelationshipType; import io.appwrite.enums.RelationMutate; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-string-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-string-attribute.md index 6c13a029f..a3aba7ec2 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-string-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-string-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-text-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-text-attribute.md index 2672a6bf4..d2fb3257b 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-text-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-text-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-transaction.md b/examples/1.9.x/server-kotlin/java/databases/create-transaction.md index 4cbee4edb..f99472794 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-transaction.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-url-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-url-attribute.md index c5d670ef8..adb812fb1 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-url-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-url-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create-varchar-attribute.md b/examples/1.9.x/server-kotlin/java/databases/create-varchar-attribute.md index c357570bc..1c11b6b2e 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/create-varchar-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/create.md b/examples/1.9.x/server-kotlin/java/databases/create.md index 8806db37d..0dfbc900f 100644 --- a/examples/1.9.x/server-kotlin/java/databases/create.md +++ b/examples/1.9.x/server-kotlin/java/databases/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/decrement-document-attribute.md b/examples/1.9.x/server-kotlin/java/databases/decrement-document-attribute.md index 96f921c06..2400b11dc 100644 --- a/examples/1.9.x/server-kotlin/java/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/decrement-document-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/databases/delete-attribute.md b/examples/1.9.x/server-kotlin/java/databases/delete-attribute.md index d97d5a56c..c7b49e01a 100644 --- a/examples/1.9.x/server-kotlin/java/databases/delete-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/delete-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/delete-collection.md b/examples/1.9.x/server-kotlin/java/databases/delete-collection.md index c2849bb78..c65991d95 100644 --- a/examples/1.9.x/server-kotlin/java/databases/delete-collection.md +++ b/examples/1.9.x/server-kotlin/java/databases/delete-collection.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/delete-document.md b/examples/1.9.x/server-kotlin/java/databases/delete-document.md index cd67c320c..0ea3d53c6 100644 --- a/examples/1.9.x/server-kotlin/java/databases/delete-document.md +++ b/examples/1.9.x/server-kotlin/java/databases/delete-document.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/databases/delete-documents.md b/examples/1.9.x/server-kotlin/java/databases/delete-documents.md index 5c4392309..ab5624a4d 100644 --- a/examples/1.9.x/server-kotlin/java/databases/delete-documents.md +++ b/examples/1.9.x/server-kotlin/java/databases/delete-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/delete-index.md b/examples/1.9.x/server-kotlin/java/databases/delete-index.md index b42767586..0958db209 100644 --- a/examples/1.9.x/server-kotlin/java/databases/delete-index.md +++ b/examples/1.9.x/server-kotlin/java/databases/delete-index.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/delete-transaction.md b/examples/1.9.x/server-kotlin/java/databases/delete-transaction.md index 1175643fa..45672272b 100644 --- a/examples/1.9.x/server-kotlin/java/databases/delete-transaction.md +++ b/examples/1.9.x/server-kotlin/java/databases/delete-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/delete.md b/examples/1.9.x/server-kotlin/java/databases/delete.md index 2993d7980..d1e3c572f 100644 --- a/examples/1.9.x/server-kotlin/java/databases/delete.md +++ b/examples/1.9.x/server-kotlin/java/databases/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/get-attribute.md b/examples/1.9.x/server-kotlin/java/databases/get-attribute.md index fe826ab2c..0e93382d2 100644 --- a/examples/1.9.x/server-kotlin/java/databases/get-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/get-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/get-collection.md b/examples/1.9.x/server-kotlin/java/databases/get-collection.md index 0584c0edf..6c0a2eaa4 100644 --- a/examples/1.9.x/server-kotlin/java/databases/get-collection.md +++ b/examples/1.9.x/server-kotlin/java/databases/get-collection.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/get-document.md b/examples/1.9.x/server-kotlin/java/databases/get-document.md index 80d63bb26..2a16b818a 100644 --- a/examples/1.9.x/server-kotlin/java/databases/get-document.md +++ b/examples/1.9.x/server-kotlin/java/databases/get-document.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/databases/get-index.md b/examples/1.9.x/server-kotlin/java/databases/get-index.md index d32a163d8..510a39ec8 100644 --- a/examples/1.9.x/server-kotlin/java/databases/get-index.md +++ b/examples/1.9.x/server-kotlin/java/databases/get-index.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/get-transaction.md b/examples/1.9.x/server-kotlin/java/databases/get-transaction.md index 48f44db7a..f185a7785 100644 --- a/examples/1.9.x/server-kotlin/java/databases/get-transaction.md +++ b/examples/1.9.x/server-kotlin/java/databases/get-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/get.md b/examples/1.9.x/server-kotlin/java/databases/get.md index aafe37981..7f016e8bb 100644 --- a/examples/1.9.x/server-kotlin/java/databases/get.md +++ b/examples/1.9.x/server-kotlin/java/databases/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/increment-document-attribute.md b/examples/1.9.x/server-kotlin/java/databases/increment-document-attribute.md index dbf0685ae..537bab466 100644 --- a/examples/1.9.x/server-kotlin/java/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/increment-document-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/databases/list-attributes.md b/examples/1.9.x/server-kotlin/java/databases/list-attributes.md index 43019a15d..89c325ec4 100644 --- a/examples/1.9.x/server-kotlin/java/databases/list-attributes.md +++ b/examples/1.9.x/server-kotlin/java/databases/list-attributes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/list-collections.md b/examples/1.9.x/server-kotlin/java/databases/list-collections.md index 53684f090..49cb2c46a 100644 --- a/examples/1.9.x/server-kotlin/java/databases/list-collections.md +++ b/examples/1.9.x/server-kotlin/java/databases/list-collections.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/list-documents.md b/examples/1.9.x/server-kotlin/java/databases/list-documents.md index f961c7a18..4c7b24ee1 100644 --- a/examples/1.9.x/server-kotlin/java/databases/list-documents.md +++ b/examples/1.9.x/server-kotlin/java/databases/list-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/databases/list-indexes.md b/examples/1.9.x/server-kotlin/java/databases/list-indexes.md index e483c5e7e..9b32473a2 100644 --- a/examples/1.9.x/server-kotlin/java/databases/list-indexes.md +++ b/examples/1.9.x/server-kotlin/java/databases/list-indexes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/list-transactions.md b/examples/1.9.x/server-kotlin/java/databases/list-transactions.md index 27fe4e936..f6e9f786e 100644 --- a/examples/1.9.x/server-kotlin/java/databases/list-transactions.md +++ b/examples/1.9.x/server-kotlin/java/databases/list-transactions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/list.md b/examples/1.9.x/server-kotlin/java/databases/list.md index aa4d2d7b0..f197d23ca 100644 --- a/examples/1.9.x/server-kotlin/java/databases/list.md +++ b/examples/1.9.x/server-kotlin/java/databases/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-big-int-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-big-int-attribute.md index 3ca8e5d21..07aefc685 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-big-int-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-boolean-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-boolean-attribute.md index 691eb61f0..8721f060d 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-boolean-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-collection.md b/examples/1.9.x/server-kotlin/java/databases/update-collection.md index 4308488ed..f7a6e4f62 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-collection.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-collection.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-datetime-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-datetime-attribute.md index 00755230d..63bb5c342 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-datetime-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-document.md b/examples/1.9.x/server-kotlin/java/databases/update-document.md index cb47ac15a..15af2c3d5 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-document.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-document.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/databases/update-documents.md b/examples/1.9.x/server-kotlin/java/databases/update-documents.md index 641a69c8c..ffd35f3fd 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-documents.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-email-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-email-attribute.md index c1a63da7d..d52eb0acc 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-email-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-email-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-enum-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-enum-attribute.md index 7d5f939d0..5d586b916 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-enum-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-float-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-float-attribute.md index 54609f393..9dcf57178 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-float-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-float-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-integer-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-integer-attribute.md index 08f87fe93..99812e5c5 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-integer-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-ip-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-ip-attribute.md index bcc9f22c5..57647bb2c 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-ip-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-line-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-line-attribute.md index ccd348da1..3fd735f37 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-line-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-line-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-longtext-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-longtext-attribute.md index ad0e83cb0..c20bc9bb0 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-longtext-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-mediumtext-attribute.md index 778948002..379091938 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-mediumtext-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-point-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-point-attribute.md index fdfdada1b..3cb185bf7 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-point-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-point-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-polygon-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-polygon-attribute.md index 640f3ee23..920a9dd15 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-polygon-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-relationship-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-relationship-attribute.md index 9024a4096..29a4ad98a 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-relationship-attribute.md @@ -5,7 +5,7 @@ import io.appwrite.services.Databases; import io.appwrite.enums.RelationMutate; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-string-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-string-attribute.md index e0b440c1b..36dd3fbb8 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-string-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-string-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-text-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-text-attribute.md index 72edaf1ca..e8b751ea4 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-text-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-text-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-transaction.md b/examples/1.9.x/server-kotlin/java/databases/update-transaction.md index 7f1918268..287ab9889 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-transaction.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-url-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-url-attribute.md index 94f6b997f..8409f18e9 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-url-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-url-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update-varchar-attribute.md b/examples/1.9.x/server-kotlin/java/databases/update-varchar-attribute.md index 3070aa39e..9d6c237de 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-kotlin/java/databases/update-varchar-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/update.md b/examples/1.9.x/server-kotlin/java/databases/update.md index f8ad19f03..c1c83748c 100644 --- a/examples/1.9.x/server-kotlin/java/databases/update.md +++ b/examples/1.9.x/server-kotlin/java/databases/update.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/databases/upsert-document.md b/examples/1.9.x/server-kotlin/java/databases/upsert-document.md index 3f8105210..e12b6ac4a 100644 --- a/examples/1.9.x/server-kotlin/java/databases/upsert-document.md +++ b/examples/1.9.x/server-kotlin/java/databases/upsert-document.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/databases/upsert-documents.md b/examples/1.9.x/server-kotlin/java/databases/upsert-documents.md index 80e3862e1..75ed74cfb 100644 --- a/examples/1.9.x/server-kotlin/java/databases/upsert-documents.md +++ b/examples/1.9.x/server-kotlin/java/databases/upsert-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Databases; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/create-deployment.md b/examples/1.9.x/server-kotlin/java/functions/create-deployment.md index 9a56935a8..b44a319c7 100644 --- a/examples/1.9.x/server-kotlin/java/functions/create-deployment.md +++ b/examples/1.9.x/server-kotlin/java/functions/create-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.models.InputFile; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/create-duplicate-deployment.md b/examples/1.9.x/server-kotlin/java/functions/create-duplicate-deployment.md index afb33a908..d34f29daf 100644 --- a/examples/1.9.x/server-kotlin/java/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-kotlin/java/functions/create-duplicate-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/create-execution.md b/examples/1.9.x/server-kotlin/java/functions/create-execution.md index 222761eb6..7e2fcc3a8 100644 --- a/examples/1.9.x/server-kotlin/java/functions/create-execution.md +++ b/examples/1.9.x/server-kotlin/java/functions/create-execution.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions; import io.appwrite.enums.ExecutionMethod; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/functions/create-template-deployment.md b/examples/1.9.x/server-kotlin/java/functions/create-template-deployment.md index 1059cd5e3..c92b756cb 100644 --- a/examples/1.9.x/server-kotlin/java/functions/create-template-deployment.md +++ b/examples/1.9.x/server-kotlin/java/functions/create-template-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions; import io.appwrite.enums.TemplateReferenceType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/create-variable.md b/examples/1.9.x/server-kotlin/java/functions/create-variable.md index d3e41c10a..5fb47f736 100644 --- a/examples/1.9.x/server-kotlin/java/functions/create-variable.md +++ b/examples/1.9.x/server-kotlin/java/functions/create-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/create-vcs-deployment.md b/examples/1.9.x/server-kotlin/java/functions/create-vcs-deployment.md index 94bf9dfd0..864b3bbdf 100644 --- a/examples/1.9.x/server-kotlin/java/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-kotlin/java/functions/create-vcs-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions; import io.appwrite.enums.VCSReferenceType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/create.md b/examples/1.9.x/server-kotlin/java/functions/create.md index 4fbeee4a0..271fa1c69 100644 --- a/examples/1.9.x/server-kotlin/java/functions/create.md +++ b/examples/1.9.x/server-kotlin/java/functions/create.md @@ -2,11 +2,11 @@ import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; -import io.appwrite.enums.Runtime; -import io.appwrite.enums.Scopes; +import io.appwrite.enums.FunctionRuntime; +import io.appwrite.enums.ProjectKeyScopes; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key @@ -15,7 +15,7 @@ Functions functions = new Functions(client); functions.create( "", // functionId "", // name - Runtime.NODE_14_5, // runtime + FunctionRuntime.NODE_14_5, // runtime List.of("any"), // execute (optional) List.of(), // events (optional) "", // schedule (optional) @@ -24,12 +24,14 @@ functions.create( false, // logging (optional) "", // entrypoint (optional) "", // commands (optional) - List.of(Scopes.PROJECT_READ), // scopes (optional) + List.of(ProjectKeyScopes.PROJECT_READ), // scopes (optional) "", // installationId (optional) "", // providerRepositoryId (optional) "", // providerBranch (optional) false, // providerSilentMode (optional) "", // providerRootDirectory (optional) + List.of(), // providerBranches (optional) + List.of(), // providerPaths (optional) "", // buildSpecification (optional) "", // runtimeSpecification (optional) 0, // deploymentRetention (optional) diff --git a/examples/1.9.x/server-kotlin/java/functions/delete-deployment.md b/examples/1.9.x/server-kotlin/java/functions/delete-deployment.md index a7244cdbc..3510199dc 100644 --- a/examples/1.9.x/server-kotlin/java/functions/delete-deployment.md +++ b/examples/1.9.x/server-kotlin/java/functions/delete-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/delete-execution.md b/examples/1.9.x/server-kotlin/java/functions/delete-execution.md index 43b556a93..2b1c64a48 100644 --- a/examples/1.9.x/server-kotlin/java/functions/delete-execution.md +++ b/examples/1.9.x/server-kotlin/java/functions/delete-execution.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/delete-variable.md b/examples/1.9.x/server-kotlin/java/functions/delete-variable.md index 7298bb1a3..2a9efc2fa 100644 --- a/examples/1.9.x/server-kotlin/java/functions/delete-variable.md +++ b/examples/1.9.x/server-kotlin/java/functions/delete-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/delete.md b/examples/1.9.x/server-kotlin/java/functions/delete.md index fabcb1a7e..998ec43da 100644 --- a/examples/1.9.x/server-kotlin/java/functions/delete.md +++ b/examples/1.9.x/server-kotlin/java/functions/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/get-deployment-download.md b/examples/1.9.x/server-kotlin/java/functions/get-deployment-download.md index 59de9f04c..edd2d8412 100644 --- a/examples/1.9.x/server-kotlin/java/functions/get-deployment-download.md +++ b/examples/1.9.x/server-kotlin/java/functions/get-deployment-download.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions; import io.appwrite.enums.DeploymentDownloadType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/get-deployment.md b/examples/1.9.x/server-kotlin/java/functions/get-deployment.md index a6a96d142..9380709eb 100644 --- a/examples/1.9.x/server-kotlin/java/functions/get-deployment.md +++ b/examples/1.9.x/server-kotlin/java/functions/get-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/get-execution.md b/examples/1.9.x/server-kotlin/java/functions/get-execution.md index bfaabe7aa..8c83e641d 100644 --- a/examples/1.9.x/server-kotlin/java/functions/get-execution.md +++ b/examples/1.9.x/server-kotlin/java/functions/get-execution.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/functions/get-variable.md b/examples/1.9.x/server-kotlin/java/functions/get-variable.md index e2ff42ee5..ee2587eed 100644 --- a/examples/1.9.x/server-kotlin/java/functions/get-variable.md +++ b/examples/1.9.x/server-kotlin/java/functions/get-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/get.md b/examples/1.9.x/server-kotlin/java/functions/get.md index fb3dc8d2d..523e4c2ae 100644 --- a/examples/1.9.x/server-kotlin/java/functions/get.md +++ b/examples/1.9.x/server-kotlin/java/functions/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/list-deployments.md b/examples/1.9.x/server-kotlin/java/functions/list-deployments.md index 4e0de978b..a9752a035 100644 --- a/examples/1.9.x/server-kotlin/java/functions/list-deployments.md +++ b/examples/1.9.x/server-kotlin/java/functions/list-deployments.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/list-executions.md b/examples/1.9.x/server-kotlin/java/functions/list-executions.md index b7ab9efb0..cdc3cf80e 100644 --- a/examples/1.9.x/server-kotlin/java/functions/list-executions.md +++ b/examples/1.9.x/server-kotlin/java/functions/list-executions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/functions/list-runtimes.md b/examples/1.9.x/server-kotlin/java/functions/list-runtimes.md index 0a4a240c8..de4b1b8e6 100644 --- a/examples/1.9.x/server-kotlin/java/functions/list-runtimes.md +++ b/examples/1.9.x/server-kotlin/java/functions/list-runtimes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/list-specifications.md b/examples/1.9.x/server-kotlin/java/functions/list-specifications.md index a6a245a7e..5175f4074 100644 --- a/examples/1.9.x/server-kotlin/java/functions/list-specifications.md +++ b/examples/1.9.x/server-kotlin/java/functions/list-specifications.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/list-variables.md b/examples/1.9.x/server-kotlin/java/functions/list-variables.md index 4766fca54..7749a0858 100644 --- a/examples/1.9.x/server-kotlin/java/functions/list-variables.md +++ b/examples/1.9.x/server-kotlin/java/functions/list-variables.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/list.md b/examples/1.9.x/server-kotlin/java/functions/list.md index b7eab3e2f..93eafaa5b 100644 --- a/examples/1.9.x/server-kotlin/java/functions/list.md +++ b/examples/1.9.x/server-kotlin/java/functions/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/update-deployment-status.md b/examples/1.9.x/server-kotlin/java/functions/update-deployment-status.md index 920ce4a0f..b36559917 100644 --- a/examples/1.9.x/server-kotlin/java/functions/update-deployment-status.md +++ b/examples/1.9.x/server-kotlin/java/functions/update-deployment-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/update-function-deployment.md b/examples/1.9.x/server-kotlin/java/functions/update-function-deployment.md index 363c23ab8..ad563fd98 100644 --- a/examples/1.9.x/server-kotlin/java/functions/update-function-deployment.md +++ b/examples/1.9.x/server-kotlin/java/functions/update-function-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/update-variable.md b/examples/1.9.x/server-kotlin/java/functions/update-variable.md index fa4518f65..1b0202c88 100644 --- a/examples/1.9.x/server-kotlin/java/functions/update-variable.md +++ b/examples/1.9.x/server-kotlin/java/functions/update-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/functions/update.md b/examples/1.9.x/server-kotlin/java/functions/update.md index 09e3264d9..f0adbd115 100644 --- a/examples/1.9.x/server-kotlin/java/functions/update.md +++ b/examples/1.9.x/server-kotlin/java/functions/update.md @@ -2,11 +2,11 @@ import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Functions; -import io.appwrite.enums.Runtime; -import io.appwrite.enums.Scopes; +import io.appwrite.enums.FunctionRuntime; +import io.appwrite.enums.ProjectKeyScopes; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key @@ -15,7 +15,7 @@ Functions functions = new Functions(client); functions.update( "", // functionId "", // name - Runtime.NODE_14_5, // runtime (optional) + FunctionRuntime.NODE_14_5, // runtime (optional) List.of("any"), // execute (optional) List.of(), // events (optional) "", // schedule (optional) @@ -24,12 +24,14 @@ functions.update( false, // logging (optional) "", // entrypoint (optional) "", // commands (optional) - List.of(Scopes.PROJECT_READ), // scopes (optional) + List.of(ProjectKeyScopes.PROJECT_READ), // scopes (optional) "", // installationId (optional) "", // providerRepositoryId (optional) "", // providerBranch (optional) false, // providerSilentMode (optional) "", // providerRootDirectory (optional) + List.of(), // providerBranches (optional) + List.of(), // providerPaths (optional) "", // buildSpecification (optional) "", // runtimeSpecification (optional) 0, // deploymentRetention (optional) diff --git a/examples/1.9.x/server-kotlin/java/graphql/mutation.md b/examples/1.9.x/server-kotlin/java/graphql/mutation.md index 1f327de50..eb291b10a 100644 --- a/examples/1.9.x/server-kotlin/java/graphql/mutation.md +++ b/examples/1.9.x/server-kotlin/java/graphql/mutation.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Graphql; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/graphql/query.md b/examples/1.9.x/server-kotlin/java/graphql/query.md index 29ea821d6..df5907036 100644 --- a/examples/1.9.x/server-kotlin/java/graphql/query.md +++ b/examples/1.9.x/server-kotlin/java/graphql/query.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Graphql; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-antivirus.md b/examples/1.9.x/server-kotlin/java/health/get-antivirus.md index ca3836e02..ec169f099 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-antivirus.md +++ b/examples/1.9.x/server-kotlin/java/health/get-antivirus.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-cache.md b/examples/1.9.x/server-kotlin/java/health/get-cache.md index 7dcd6343f..e4771bf24 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-cache.md +++ b/examples/1.9.x/server-kotlin/java/health/get-cache.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-certificate.md b/examples/1.9.x/server-kotlin/java/health/get-certificate.md index cc9a6c292..dfcd614b2 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-certificate.md +++ b/examples/1.9.x/server-kotlin/java/health/get-certificate.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-console-pausing.md b/examples/1.9.x/server-kotlin/java/health/get-console-pausing.md index d8904345b..ee8c7559d 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-console-pausing.md +++ b/examples/1.9.x/server-kotlin/java/health/get-console-pausing.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-db.md b/examples/1.9.x/server-kotlin/java/health/get-db.md index 9d6c13a32..2e656cdd7 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-db.md +++ b/examples/1.9.x/server-kotlin/java/health/get-db.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-failed-jobs.md b/examples/1.9.x/server-kotlin/java/health/get-failed-jobs.md index 0466bbfce..328696d13 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-failed-jobs.md +++ b/examples/1.9.x/server-kotlin/java/health/get-failed-jobs.md @@ -2,17 +2,17 @@ import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; -import io.appwrite.enums.Name; +import io.appwrite.enums.HealthQueueName; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key Health health = new Health(client); health.getFailedJobs( - Name.V1_DATABASE, // name + HealthQueueName.V1_DATABASE, // name 0, // threshold (optional) new CoroutineCallback<>((result, error) -> { if (error != null) { diff --git a/examples/1.9.x/server-kotlin/java/health/get-pub-sub.md b/examples/1.9.x/server-kotlin/java/health/get-pub-sub.md index 00dd25857..2d87a770e 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-pub-sub.md +++ b/examples/1.9.x/server-kotlin/java/health/get-pub-sub.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-audits.md b/examples/1.9.x/server-kotlin/java/health/get-queue-audits.md index d5f9cb501..784059472 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-audits.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-audits.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-builds.md b/examples/1.9.x/server-kotlin/java/health/get-queue-builds.md index fdb5f3ff7..33ecb1a17 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-builds.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-builds.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-certificates.md b/examples/1.9.x/server-kotlin/java/health/get-queue-certificates.md index ef747caef..937ef05e0 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-certificates.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-certificates.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-databases.md b/examples/1.9.x/server-kotlin/java/health/get-queue-databases.md index 83673a679..42121cfc4 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-databases.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-databases.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-deletes.md b/examples/1.9.x/server-kotlin/java/health/get-queue-deletes.md index e18579ebc..c1f2b73ef 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-deletes.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-deletes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-functions.md b/examples/1.9.x/server-kotlin/java/health/get-queue-functions.md index ef578b8b0..0dcdc885f 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-functions.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-functions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-logs.md b/examples/1.9.x/server-kotlin/java/health/get-queue-logs.md index b86690a92..ec12f46ee 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-logs.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-mails.md b/examples/1.9.x/server-kotlin/java/health/get-queue-mails.md index 5c8d846b1..3c22caa99 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-mails.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-mails.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-messaging.md b/examples/1.9.x/server-kotlin/java/health/get-queue-messaging.md index a3c10815c..ebc18ad3f 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-messaging.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-messaging.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-migrations.md b/examples/1.9.x/server-kotlin/java/health/get-queue-migrations.md index 69210ef05..1c1c4fcf8 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-migrations.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-migrations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-stats-resources.md b/examples/1.9.x/server-kotlin/java/health/get-queue-stats-resources.md index 020f18291..22d60dcb3 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-stats-resources.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-usage.md b/examples/1.9.x/server-kotlin/java/health/get-queue-usage.md index 79fa06210..ee4e6a821 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-usage.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-usage.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-queue-webhooks.md b/examples/1.9.x/server-kotlin/java/health/get-queue-webhooks.md index 94f93eddc..759aa8960 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-kotlin/java/health/get-queue-webhooks.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-storage-local.md b/examples/1.9.x/server-kotlin/java/health/get-storage-local.md index db8f374d0..b41100f0b 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-storage-local.md +++ b/examples/1.9.x/server-kotlin/java/health/get-storage-local.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-storage.md b/examples/1.9.x/server-kotlin/java/health/get-storage.md index 34f7b63a8..29a50d3d6 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-storage.md +++ b/examples/1.9.x/server-kotlin/java/health/get-storage.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get-time.md b/examples/1.9.x/server-kotlin/java/health/get-time.md index 925fb801a..8b11eb12d 100644 --- a/examples/1.9.x/server-kotlin/java/health/get-time.md +++ b/examples/1.9.x/server-kotlin/java/health/get-time.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/health/get.md b/examples/1.9.x/server-kotlin/java/health/get.md index 96c2a534c..5b6011ba4 100644 --- a/examples/1.9.x/server-kotlin/java/health/get.md +++ b/examples/1.9.x/server-kotlin/java/health/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Health; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/locale/get.md b/examples/1.9.x/server-kotlin/java/locale/get.md index ce0599ebf..56cf419d2 100644 --- a/examples/1.9.x/server-kotlin/java/locale/get.md +++ b/examples/1.9.x/server-kotlin/java/locale/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/locale/list-codes.md b/examples/1.9.x/server-kotlin/java/locale/list-codes.md index 25555499b..b53328edf 100644 --- a/examples/1.9.x/server-kotlin/java/locale/list-codes.md +++ b/examples/1.9.x/server-kotlin/java/locale/list-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/locale/list-continents.md b/examples/1.9.x/server-kotlin/java/locale/list-continents.md index f7098f332..9dcf4e17d 100644 --- a/examples/1.9.x/server-kotlin/java/locale/list-continents.md +++ b/examples/1.9.x/server-kotlin/java/locale/list-continents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/locale/list-countries-eu.md b/examples/1.9.x/server-kotlin/java/locale/list-countries-eu.md index b312639fc..aa540bd9c 100644 --- a/examples/1.9.x/server-kotlin/java/locale/list-countries-eu.md +++ b/examples/1.9.x/server-kotlin/java/locale/list-countries-eu.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/locale/list-countries-phones.md b/examples/1.9.x/server-kotlin/java/locale/list-countries-phones.md index aed72e0ff..eebebbf45 100644 --- a/examples/1.9.x/server-kotlin/java/locale/list-countries-phones.md +++ b/examples/1.9.x/server-kotlin/java/locale/list-countries-phones.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/locale/list-countries.md b/examples/1.9.x/server-kotlin/java/locale/list-countries.md index 8eef04d63..a2a01f814 100644 --- a/examples/1.9.x/server-kotlin/java/locale/list-countries.md +++ b/examples/1.9.x/server-kotlin/java/locale/list-countries.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/locale/list-currencies.md b/examples/1.9.x/server-kotlin/java/locale/list-currencies.md index fc4ee4d9d..a033a783c 100644 --- a/examples/1.9.x/server-kotlin/java/locale/list-currencies.md +++ b/examples/1.9.x/server-kotlin/java/locale/list-currencies.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/locale/list-languages.md b/examples/1.9.x/server-kotlin/java/locale/list-languages.md index 44d101564..022ebd440 100644 --- a/examples/1.9.x/server-kotlin/java/locale/list-languages.md +++ b/examples/1.9.x/server-kotlin/java/locale/list-languages.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Locale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-apns-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-apns-provider.md index 134c5c96d..0686efb81 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-apns-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-email.md b/examples/1.9.x/server-kotlin/java/messaging/create-email.md index f347ca09f..825b176c7 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-email.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-fcm-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-fcm-provider.md index 6cd9e9ffc..315a5640e 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-fcm-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-mailgun-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-mailgun-provider.md index be7ec1315..958bb75b0 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-mailgun-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-msg-91-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-msg-91-provider.md index 2af08cf05..284acbbd4 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-msg-91-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-push.md b/examples/1.9.x/server-kotlin/java/messaging/create-push.md index 0f1190518..6064c9d7f 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-push.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-push.md @@ -5,7 +5,7 @@ import io.appwrite.services.Messaging; import io.appwrite.enums.MessagePriority; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-resend-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-resend-provider.md index 516ba4e2e..51688b801 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-resend-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-sendgrid-provider.md index ecb1e1bde..59f3f4401 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-sendgrid-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-sms.md b/examples/1.9.x/server-kotlin/java/messaging/create-sms.md index 530bb29ca..8691b77b8 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-sms.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-sms.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-smtp-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-smtp-provider.md index 2259babda..c1672ca45 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-smtp-provider.md @@ -5,7 +5,7 @@ import io.appwrite.services.Messaging; import io.appwrite.enums.SmtpEncryption; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-subscriber.md b/examples/1.9.x/server-kotlin/java/messaging/create-subscriber.md index 39480c0c0..fe1e84bf7 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-subscriber.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setJWT(""); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-telesign-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-telesign-provider.md index 87b9e1fcd..22c740a59 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-telesign-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-textmagic-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-textmagic-provider.md index 2599ed5d3..bf717a506 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-textmagic-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-topic.md b/examples/1.9.x/server-kotlin/java/messaging/create-topic.md index 1c9c56371..5b18ee1b2 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-topic.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-topic.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-twilio-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-twilio-provider.md index 5078b3dbe..8da9fcc44 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-twilio-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/create-vonage-provider.md b/examples/1.9.x/server-kotlin/java/messaging/create-vonage-provider.md index ac269038c..146211313 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/create-vonage-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/delete-provider.md b/examples/1.9.x/server-kotlin/java/messaging/delete-provider.md index 0136e9dc1..5d6209c16 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/delete-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/delete-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/delete-subscriber.md b/examples/1.9.x/server-kotlin/java/messaging/delete-subscriber.md index 265a70ba7..03ae037aa 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-kotlin/java/messaging/delete-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setJWT(""); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-kotlin/java/messaging/delete-topic.md b/examples/1.9.x/server-kotlin/java/messaging/delete-topic.md index aee64733c..68a668d1c 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/delete-topic.md +++ b/examples/1.9.x/server-kotlin/java/messaging/delete-topic.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/delete.md b/examples/1.9.x/server-kotlin/java/messaging/delete.md index 7585a4867..aeb5746ae 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/delete.md +++ b/examples/1.9.x/server-kotlin/java/messaging/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/get-message.md b/examples/1.9.x/server-kotlin/java/messaging/get-message.md index 846e881e4..5dee254a5 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/get-message.md +++ b/examples/1.9.x/server-kotlin/java/messaging/get-message.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/get-provider.md b/examples/1.9.x/server-kotlin/java/messaging/get-provider.md index 4d68108b3..77c512a80 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/get-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/get-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/get-subscriber.md b/examples/1.9.x/server-kotlin/java/messaging/get-subscriber.md index 01137147b..86948cde3 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/get-subscriber.md +++ b/examples/1.9.x/server-kotlin/java/messaging/get-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/get-topic.md b/examples/1.9.x/server-kotlin/java/messaging/get-topic.md index d1e9693a6..7f4685396 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/get-topic.md +++ b/examples/1.9.x/server-kotlin/java/messaging/get-topic.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-message-logs.md b/examples/1.9.x/server-kotlin/java/messaging/list-message-logs.md index 5c2e97ce6..ad3aea2d6 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-message-logs.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-message-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-messages.md b/examples/1.9.x/server-kotlin/java/messaging/list-messages.md index 060d166ad..5868cf949 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-messages.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-messages.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-provider-logs.md b/examples/1.9.x/server-kotlin/java/messaging/list-provider-logs.md index f0656be8e..4c8276376 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-provider-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-providers.md b/examples/1.9.x/server-kotlin/java/messaging/list-providers.md index 40abdc4e4..5051e0edd 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-providers.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-providers.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-subscriber-logs.md b/examples/1.9.x/server-kotlin/java/messaging/list-subscriber-logs.md index 1fef063d3..98430d962 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-subscriber-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-subscribers.md b/examples/1.9.x/server-kotlin/java/messaging/list-subscribers.md index e7eb27c8c..d4128c1fa 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-subscribers.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-subscribers.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-targets.md b/examples/1.9.x/server-kotlin/java/messaging/list-targets.md index f40902d32..80f8038f8 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-targets.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-targets.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-topic-logs.md b/examples/1.9.x/server-kotlin/java/messaging/list-topic-logs.md index 28d4df689..bbd19f971 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-topic-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/list-topics.md b/examples/1.9.x/server-kotlin/java/messaging/list-topics.md index de91ffdba..b68249391 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/list-topics.md +++ b/examples/1.9.x/server-kotlin/java/messaging/list-topics.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-apns-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-apns-provider.md index daebea076..17abeffeb 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-apns-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-email.md b/examples/1.9.x/server-kotlin/java/messaging/update-email.md index 0ca5c23c6..2f3c8385a 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-email.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-fcm-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-fcm-provider.md index 1b9f694c9..ebe7a53e2 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-fcm-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-mailgun-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-mailgun-provider.md index 53281efaf..bbba3477a 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-mailgun-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-msg-91-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-msg-91-provider.md index c25e7e3ce..89725b10b 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-msg-91-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-push.md b/examples/1.9.x/server-kotlin/java/messaging/update-push.md index 4fa648938..362c614b7 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-push.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-push.md @@ -5,7 +5,7 @@ import io.appwrite.services.Messaging; import io.appwrite.enums.MessagePriority; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-resend-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-resend-provider.md index 16b61b7bc..a331b0ec3 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-resend-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-sendgrid-provider.md index bb90a433c..5dd45c011 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-sendgrid-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-sms.md b/examples/1.9.x/server-kotlin/java/messaging/update-sms.md index 808be650a..877ba3329 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-sms.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-sms.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-smtp-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-smtp-provider.md index e68e2d80d..4ade5a400 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-smtp-provider.md @@ -5,7 +5,7 @@ import io.appwrite.services.Messaging; import io.appwrite.enums.SmtpEncryption; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-telesign-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-telesign-provider.md index fef04fe0b..2b1f14794 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-telesign-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-textmagic-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-textmagic-provider.md index 0068564cf..0630de2c7 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-textmagic-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-topic.md b/examples/1.9.x/server-kotlin/java/messaging/update-topic.md index b1617441b..582048670 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-topic.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-topic.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-twilio-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-twilio-provider.md index 36e44fa22..8c29d24d6 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-twilio-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/messaging/update-vonage-provider.md b/examples/1.9.x/server-kotlin/java/messaging/update-vonage-provider.md index 549bcce2e..69571ff6d 100644 --- a/examples/1.9.x/server-kotlin/java/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-kotlin/java/messaging/update-vonage-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Messaging; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/organization/create-key.md b/examples/1.9.x/server-kotlin/java/organization/create-key.md new file mode 100644 index 000000000..7b38a9a8f --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/create-key.md @@ -0,0 +1,29 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; +import io.appwrite.enums.OrganizationKeyScopes; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.createKey( + "", // keyId + "", // name + List.of(OrganizationKeyScopes.PROJECTS_READ), // scopes + "2020-10-15T06:38:00.000+00:00", // expire (optional) + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/create-project.md b/examples/1.9.x/server-kotlin/java/organization/create-project.md new file mode 100644 index 000000000..828d7ba0b --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/create-project.md @@ -0,0 +1,28 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; +import io.appwrite.enums.Region; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.createProject( + "", // projectId + "", // name + Region.FRA, // region (optional) + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/delete-key.md b/examples/1.9.x/server-kotlin/java/organization/delete-key.md new file mode 100644 index 000000000..4510c958a --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/delete-key.md @@ -0,0 +1,25 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.deleteKey( + "", // keyId + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/delete-project.md b/examples/1.9.x/server-kotlin/java/organization/delete-project.md new file mode 100644 index 000000000..551bea3ab --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/delete-project.md @@ -0,0 +1,25 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.deleteProject( + "", // projectId + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/get-key.md b/examples/1.9.x/server-kotlin/java/organization/get-key.md new file mode 100644 index 000000000..9febeab42 --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/get-key.md @@ -0,0 +1,25 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.getKey( + "", // keyId + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/get-project.md b/examples/1.9.x/server-kotlin/java/organization/get-project.md new file mode 100644 index 000000000..cab793ef9 --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/get-project.md @@ -0,0 +1,25 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.getProject( + "", // projectId + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/list-keys.md b/examples/1.9.x/server-kotlin/java/organization/list-keys.md new file mode 100644 index 000000000..a6da049cb --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/list-keys.md @@ -0,0 +1,26 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.listKeys( + List.of(), // queries (optional) + false, // total (optional) + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/list-projects.md b/examples/1.9.x/server-kotlin/java/organization/list-projects.md new file mode 100644 index 000000000..9697e4847 --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/list-projects.md @@ -0,0 +1,27 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.listProjects( + List.of(), // queries (optional) + "", // search (optional) + false, // total (optional) + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/update-key.md b/examples/1.9.x/server-kotlin/java/organization/update-key.md new file mode 100644 index 000000000..d4ad1e0c6 --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/update-key.md @@ -0,0 +1,29 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; +import io.appwrite.enums.OrganizationKeyScopes; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.updateKey( + "", // keyId + "", // name + List.of(OrganizationKeyScopes.PROJECTS_READ), // scopes + "2020-10-15T06:38:00.000+00:00", // expire (optional) + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/organization/update-project.md b/examples/1.9.x/server-kotlin/java/organization/update-project.md new file mode 100644 index 000000000..7db99662d --- /dev/null +++ b/examples/1.9.x/server-kotlin/java/organization/update-project.md @@ -0,0 +1,26 @@ +```java +import io.appwrite.Client; +import io.appwrite.coroutines.CoroutineCallback; +import io.appwrite.services.Organization; + +Client client = new Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey(""); // Your secret API key + +Organization organization = new Organization(client); + +organization.updateProject( + "", // projectId + "", // name + new CoroutineCallback<>((result, error) -> { + if (error != null) { + error.printStackTrace(); + return; + } + + System.out.println(result); + }) +); + +``` diff --git a/examples/1.9.x/server-kotlin/java/presences/delete.md b/examples/1.9.x/server-kotlin/java/presences/delete.md index 5c797c21a..6ed974d83 100644 --- a/examples/1.9.x/server-kotlin/java/presences/delete.md +++ b/examples/1.9.x/server-kotlin/java/presences/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Presences; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/presences/get.md b/examples/1.9.x/server-kotlin/java/presences/get.md index 17868cec8..431644f39 100644 --- a/examples/1.9.x/server-kotlin/java/presences/get.md +++ b/examples/1.9.x/server-kotlin/java/presences/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Presences; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/presences/list.md b/examples/1.9.x/server-kotlin/java/presences/list.md index b43741d29..a0e3a5907 100644 --- a/examples/1.9.x/server-kotlin/java/presences/list.md +++ b/examples/1.9.x/server-kotlin/java/presences/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Presences; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/presences/update-presence.md b/examples/1.9.x/server-kotlin/java/presences/update-presence.md index f94e70566..ec0aaef6e 100644 --- a/examples/1.9.x/server-kotlin/java/presences/update-presence.md +++ b/examples/1.9.x/server-kotlin/java/presences/update-presence.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Presences; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/presences/upsert.md b/examples/1.9.x/server-kotlin/java/presences/upsert.md index df15d7080..f58209cc4 100644 --- a/examples/1.9.x/server-kotlin/java/presences/upsert.md +++ b/examples/1.9.x/server-kotlin/java/presences/upsert.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Presences; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-android-platform.md b/examples/1.9.x/server-kotlin/java/project/create-android-platform.md index 61281f1c5..bebf1b4ba 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-android-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/create-android-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-apple-platform.md b/examples/1.9.x/server-kotlin/java/project/create-apple-platform.md index 1e60e28ca..9e3186a59 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-apple-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/create-apple-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-ephemeral-key.md b/examples/1.9.x/server-kotlin/java/project/create-ephemeral-key.md index 545e16d25..fcf8a68bc 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-kotlin/java/project/create-ephemeral-key.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectKeyScopes; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-key.md b/examples/1.9.x/server-kotlin/java/project/create-key.md index fdfd7d388..ddd77ab40 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-key.md +++ b/examples/1.9.x/server-kotlin/java/project/create-key.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectKeyScopes; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-linux-platform.md b/examples/1.9.x/server-kotlin/java/project/create-linux-platform.md index 0b3355b31..8e17e4439 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-linux-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/create-linux-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-mock-phone.md b/examples/1.9.x/server-kotlin/java/project/create-mock-phone.md index 44acac492..1794eaba6 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-mock-phone.md +++ b/examples/1.9.x/server-kotlin/java/project/create-mock-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-smtp-test.md b/examples/1.9.x/server-kotlin/java/project/create-smtp-test.md index e6a700663..1bfcde221 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-smtp-test.md +++ b/examples/1.9.x/server-kotlin/java/project/create-smtp-test.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-variable.md b/examples/1.9.x/server-kotlin/java/project/create-variable.md index 62d7a4741..c41877676 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-variable.md +++ b/examples/1.9.x/server-kotlin/java/project/create-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-web-platform.md b/examples/1.9.x/server-kotlin/java/project/create-web-platform.md index efd4399cc..02cd6966f 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-web-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/create-web-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/create-windows-platform.md b/examples/1.9.x/server-kotlin/java/project/create-windows-platform.md index a38b79e43..edfc3714d 100644 --- a/examples/1.9.x/server-kotlin/java/project/create-windows-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/create-windows-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/delete-key.md b/examples/1.9.x/server-kotlin/java/project/delete-key.md index e0104face..d414fbcb6 100644 --- a/examples/1.9.x/server-kotlin/java/project/delete-key.md +++ b/examples/1.9.x/server-kotlin/java/project/delete-key.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/delete-mock-phone.md b/examples/1.9.x/server-kotlin/java/project/delete-mock-phone.md index 45bab07db..5603bac35 100644 --- a/examples/1.9.x/server-kotlin/java/project/delete-mock-phone.md +++ b/examples/1.9.x/server-kotlin/java/project/delete-mock-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/delete-platform.md b/examples/1.9.x/server-kotlin/java/project/delete-platform.md index 93b15c9a3..b124ffff9 100644 --- a/examples/1.9.x/server-kotlin/java/project/delete-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/delete-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/delete-variable.md b/examples/1.9.x/server-kotlin/java/project/delete-variable.md index 98ff61de2..7481bad31 100644 --- a/examples/1.9.x/server-kotlin/java/project/delete-variable.md +++ b/examples/1.9.x/server-kotlin/java/project/delete-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/delete.md b/examples/1.9.x/server-kotlin/java/project/delete.md index 14b750998..89182fad5 100644 --- a/examples/1.9.x/server-kotlin/java/project/delete.md +++ b/examples/1.9.x/server-kotlin/java/project/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/get-email-template.md b/examples/1.9.x/server-kotlin/java/project/get-email-template.md index ee1e3811f..2d72deb54 100644 --- a/examples/1.9.x/server-kotlin/java/project/get-email-template.md +++ b/examples/1.9.x/server-kotlin/java/project/get-email-template.md @@ -6,7 +6,7 @@ import io.appwrite.enums.ProjectEmailTemplateId; import io.appwrite.enums.ProjectEmailTemplateLocale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/get-key.md b/examples/1.9.x/server-kotlin/java/project/get-key.md index 23021b3f1..68e3d63b7 100644 --- a/examples/1.9.x/server-kotlin/java/project/get-key.md +++ b/examples/1.9.x/server-kotlin/java/project/get-key.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/get-mock-phone.md b/examples/1.9.x/server-kotlin/java/project/get-mock-phone.md index 3c7c98478..f512b6c16 100644 --- a/examples/1.9.x/server-kotlin/java/project/get-mock-phone.md +++ b/examples/1.9.x/server-kotlin/java/project/get-mock-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/get-o-auth-2-provider.md b/examples/1.9.x/server-kotlin/java/project/get-o-auth-2-provider.md index cf3f9636d..378d0d571 100644 --- a/examples/1.9.x/server-kotlin/java/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-kotlin/java/project/get-o-auth-2-provider.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectOAuthProviderId; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/get-platform.md b/examples/1.9.x/server-kotlin/java/project/get-platform.md index 5eef86970..692893d78 100644 --- a/examples/1.9.x/server-kotlin/java/project/get-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/get-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/get-policy.md b/examples/1.9.x/server-kotlin/java/project/get-policy.md index 9252383f0..819d54b41 100644 --- a/examples/1.9.x/server-kotlin/java/project/get-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/get-policy.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectPolicyId; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/get-variable.md b/examples/1.9.x/server-kotlin/java/project/get-variable.md index f922e278b..dc3e5db9e 100644 --- a/examples/1.9.x/server-kotlin/java/project/get-variable.md +++ b/examples/1.9.x/server-kotlin/java/project/get-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/get.md b/examples/1.9.x/server-kotlin/java/project/get.md index 125c5bf5e..87f6a3a54 100644 --- a/examples/1.9.x/server-kotlin/java/project/get.md +++ b/examples/1.9.x/server-kotlin/java/project/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/list-email-templates.md b/examples/1.9.x/server-kotlin/java/project/list-email-templates.md index 98fb6835f..f42ecf0c4 100644 --- a/examples/1.9.x/server-kotlin/java/project/list-email-templates.md +++ b/examples/1.9.x/server-kotlin/java/project/list-email-templates.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/list-keys.md b/examples/1.9.x/server-kotlin/java/project/list-keys.md index 30dfcccd3..9d3d05843 100644 --- a/examples/1.9.x/server-kotlin/java/project/list-keys.md +++ b/examples/1.9.x/server-kotlin/java/project/list-keys.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/list-mock-phones.md b/examples/1.9.x/server-kotlin/java/project/list-mock-phones.md index 9bcdde7aa..5362b9c74 100644 --- a/examples/1.9.x/server-kotlin/java/project/list-mock-phones.md +++ b/examples/1.9.x/server-kotlin/java/project/list-mock-phones.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/list-o-auth-2-providers.md b/examples/1.9.x/server-kotlin/java/project/list-o-auth-2-providers.md index f68278a4b..09998c608 100644 --- a/examples/1.9.x/server-kotlin/java/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-kotlin/java/project/list-o-auth-2-providers.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/list-platforms.md b/examples/1.9.x/server-kotlin/java/project/list-platforms.md index 6287ee5b2..eddf25a84 100644 --- a/examples/1.9.x/server-kotlin/java/project/list-platforms.md +++ b/examples/1.9.x/server-kotlin/java/project/list-platforms.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/list-policies.md b/examples/1.9.x/server-kotlin/java/project/list-policies.md index 91757f4e3..110c79ff2 100644 --- a/examples/1.9.x/server-kotlin/java/project/list-policies.md +++ b/examples/1.9.x/server-kotlin/java/project/list-policies.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/list-variables.md b/examples/1.9.x/server-kotlin/java/project/list-variables.md index bfcfbd696..b6c6fb72f 100644 --- a/examples/1.9.x/server-kotlin/java/project/list-variables.md +++ b/examples/1.9.x/server-kotlin/java/project/list-variables.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-android-platform.md b/examples/1.9.x/server-kotlin/java/project/update-android-platform.md index 96a6dc211..27ca118b6 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-android-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/update-android-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-apple-platform.md b/examples/1.9.x/server-kotlin/java/project/update-apple-platform.md index 85c140326..630064356 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-apple-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/update-apple-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-auth-method.md b/examples/1.9.x/server-kotlin/java/project/update-auth-method.md index cc05ab051..bb33f7c78 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-auth-method.md +++ b/examples/1.9.x/server-kotlin/java/project/update-auth-method.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectAuthMethodId; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-kotlin/java/project/update-deny-aliased-email-policy.md index 407172c60..f913b9e4c 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-deny-aliased-email-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-kotlin/java/project/update-deny-disposable-email-policy.md index 8e5593975..5f6afd914 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-deny-disposable-email-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-deny-free-email-policy.md b/examples/1.9.x/server-kotlin/java/project/update-deny-free-email-policy.md index 412328bd5..ce852c361 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-deny-free-email-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-email-template.md b/examples/1.9.x/server-kotlin/java/project/update-email-template.md index b0b2302f5..8a1593504 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-email-template.md +++ b/examples/1.9.x/server-kotlin/java/project/update-email-template.md @@ -6,7 +6,7 @@ import io.appwrite.enums.ProjectEmailTemplateId; import io.appwrite.enums.ProjectEmailTemplateLocale; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-key.md b/examples/1.9.x/server-kotlin/java/project/update-key.md index 4fa79bbbb..e8e47c15c 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-key.md +++ b/examples/1.9.x/server-kotlin/java/project/update-key.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectKeyScopes; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-labels.md b/examples/1.9.x/server-kotlin/java/project/update-labels.md index c8c9e1bce..40de614a8 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-labels.md +++ b/examples/1.9.x/server-kotlin/java/project/update-labels.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-linux-platform.md b/examples/1.9.x/server-kotlin/java/project/update-linux-platform.md index 589ed969f..dccfae08e 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-linux-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/update-linux-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-membership-privacy-policy.md b/examples/1.9.x/server-kotlin/java/project/update-membership-privacy-policy.md index a27bc2e90..b061487ad 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-membership-privacy-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-mock-phone.md b/examples/1.9.x/server-kotlin/java/project/update-mock-phone.md index adc75fb9c..7f6fac380 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-mock-phone.md +++ b/examples/1.9.x/server-kotlin/java/project/update-mock-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-amazon.md index b58b0114b..b883c018c 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-amazon.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-apple.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-apple.md index 9eeb9dd8a..33db148fb 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-apple.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-auth-0.md index c14a8ef5f..5fd242537 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-auth-0.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-authentik.md index cfbe273a5..ff35a1176 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-authentik.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-autodesk.md index 605750d31..0bff94213 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-autodesk.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-bitbucket.md index 6fe51fd80..6a3bd0f0b 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-bitbucket.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-bitly.md index a3c14ddc9..b178f5fee 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-bitly.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-box.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-box.md index 03418f17e..db1a835ad 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-box.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-dailymotion.md index 0db1d9a05..2974c1c19 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-dailymotion.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-discord.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-discord.md index 82139314b..245cc8a37 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-discord.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-disqus.md index d29dc872a..8fa93d0d6 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-disqus.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-dropbox.md index 0545a5817..0436560a7 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-dropbox.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-etsy.md index 9e64828ae..4ede1a345 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-etsy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-facebook.md index abfc06375..723022067 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-facebook.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-figma.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-figma.md index df58f04bc..8a5722790 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-figma.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-fusion-auth.md index ae251db37..1adf750e5 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-fusion-auth.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-git-hub.md index e795770a5..e3c05a409 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-git-hub.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-gitlab.md index f61e79736..cea0011bf 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-gitlab.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-google.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-google.md index 19b22f9d7..59c56d784 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-google.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectOAuth2GooglePrompt; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-keycloak.md index bf5e16f70..782f786aa 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-keycloak.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-kick.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-kick.md index 9c771b89f..2675dc73b 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-kick.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-linkedin.md index 4f7db46a2..1cc8e8305 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-linkedin.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-microsoft.md index 801cc7c8a..3237ad11e 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-microsoft.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-notion.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-notion.md index 6f898dbe9..9f0f658cd 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-notion.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-oidc.md index 10b302eb4..c13bfceb5 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-oidc.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-okta.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-okta.md index a8b31ef84..31a94973b 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-okta.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-paypal-sandbox.md index 2e1b8a5d2..3012a786d 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-paypal-sandbox.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-paypal.md index 6169ad05a..4eb4541f3 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-paypal.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-podio.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-podio.md index 40da7cabd..2f522385b 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-podio.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-salesforce.md index e6aa570af..f0a2e3f7b 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-salesforce.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-slack.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-slack.md index c62f48bca..b11ed2ede 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-slack.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-spotify.md index 85eef6a3a..93ed2cec3 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-spotify.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-stripe.md index c6c8a7357..ff88b8276 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-stripe.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-tradeshift-sandbox.md index ca9f55c03..9d0b33dcd 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-tradeshift-sandbox.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-tradeshift.md index 9ab62a476..f5eaa6e9a 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-tradeshift.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-twitch.md index 4bc43d006..bc55f7bab 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-twitch.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-word-press.md index 06a9745a7..d71459e0c 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-word-press.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-yahoo.md index db93ec6e7..14ee4c26d 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-yahoo.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-yandex.md index cf4c4500e..8e3f654f5 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-yandex.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-zoho.md index c8c5e1362..32e2687f9 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-zoho.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-zoom.md index b809dc018..309ca6faa 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2-zoom.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2x.md b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2x.md index d59ea9806..f9cb11819 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-kotlin/java/project/update-o-auth-2x.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-password-dictionary-policy.md b/examples/1.9.x/server-kotlin/java/project/update-password-dictionary-policy.md index 27879b99e..e2709137d 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-password-dictionary-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-password-history-policy.md b/examples/1.9.x/server-kotlin/java/project/update-password-history-policy.md index e873c7f8f..a46761c3c 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-password-history-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-password-history-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-password-personal-data-policy.md b/examples/1.9.x/server-kotlin/java/project/update-password-personal-data-policy.md index 15c277ebd..d489107a1 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-password-personal-data-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-protocol.md b/examples/1.9.x/server-kotlin/java/project/update-protocol.md index 0ef3ace0a..ad818c9fa 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-protocol.md +++ b/examples/1.9.x/server-kotlin/java/project/update-protocol.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectProtocolId; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-service.md b/examples/1.9.x/server-kotlin/java/project/update-service.md index 663fdd04b..9f46355ac 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-service.md +++ b/examples/1.9.x/server-kotlin/java/project/update-service.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectServiceId; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-session-alert-policy.md b/examples/1.9.x/server-kotlin/java/project/update-session-alert-policy.md index 6e7418e18..868195440 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-session-alert-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-session-duration-policy.md b/examples/1.9.x/server-kotlin/java/project/update-session-duration-policy.md index d181d8550..99f335ef5 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-session-duration-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-session-invalidation-policy.md b/examples/1.9.x/server-kotlin/java/project/update-session-invalidation-policy.md index 4a8efa7c7..fb558110e 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-session-invalidation-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-session-limit-policy.md b/examples/1.9.x/server-kotlin/java/project/update-session-limit-policy.md index 13204c06c..624fb22cb 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-session-limit-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-smtp.md b/examples/1.9.x/server-kotlin/java/project/update-smtp.md index 77c02a3e4..05af2fa7a 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-smtp.md +++ b/examples/1.9.x/server-kotlin/java/project/update-smtp.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project; import io.appwrite.enums.ProjectSMTPSecure; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-user-limit-policy.md b/examples/1.9.x/server-kotlin/java/project/update-user-limit-policy.md index 18e52b807..f21c666c7 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-kotlin/java/project/update-user-limit-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-variable.md b/examples/1.9.x/server-kotlin/java/project/update-variable.md index 19e7d88c1..86b6e7d3a 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-variable.md +++ b/examples/1.9.x/server-kotlin/java/project/update-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-web-platform.md b/examples/1.9.x/server-kotlin/java/project/update-web-platform.md index 8de452f59..90aa24ee1 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-web-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/update-web-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/project/update-windows-platform.md b/examples/1.9.x/server-kotlin/java/project/update-windows-platform.md index c7fa06e39..711808fc5 100644 --- a/examples/1.9.x/server-kotlin/java/project/update-windows-platform.md +++ b/examples/1.9.x/server-kotlin/java/project/update-windows-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Project; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/proxy/create-api-rule.md b/examples/1.9.x/server-kotlin/java/proxy/create-api-rule.md index ab047ffe9..5fb347e94 100644 --- a/examples/1.9.x/server-kotlin/java/proxy/create-api-rule.md +++ b/examples/1.9.x/server-kotlin/java/proxy/create-api-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Proxy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/proxy/create-function-rule.md b/examples/1.9.x/server-kotlin/java/proxy/create-function-rule.md index 151de9ba0..59924c6c4 100644 --- a/examples/1.9.x/server-kotlin/java/proxy/create-function-rule.md +++ b/examples/1.9.x/server-kotlin/java/proxy/create-function-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Proxy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/proxy/create-redirect-rule.md b/examples/1.9.x/server-kotlin/java/proxy/create-redirect-rule.md index d204bd650..59937a763 100644 --- a/examples/1.9.x/server-kotlin/java/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-kotlin/java/proxy/create-redirect-rule.md @@ -2,11 +2,11 @@ import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Proxy; -import io.appwrite.enums.StatusCode; +import io.appwrite.enums.RedirectStatusCode; import io.appwrite.enums.ProxyResourceType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key @@ -15,7 +15,7 @@ Proxy proxy = new Proxy(client); proxy.createRedirectRule( "", // domain "https://example.com", // url - StatusCode.MOVED_PERMANENTLY_301, // statusCode + RedirectStatusCode.MOVEDPERMANENTLY, // statusCode "", // resourceId ProxyResourceType.SITE, // resourceType new CoroutineCallback<>((result, error) -> { diff --git a/examples/1.9.x/server-kotlin/java/proxy/create-site-rule.md b/examples/1.9.x/server-kotlin/java/proxy/create-site-rule.md index a02de14df..f462a2ac1 100644 --- a/examples/1.9.x/server-kotlin/java/proxy/create-site-rule.md +++ b/examples/1.9.x/server-kotlin/java/proxy/create-site-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Proxy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/proxy/delete-rule.md b/examples/1.9.x/server-kotlin/java/proxy/delete-rule.md index 26d79f09d..756245a98 100644 --- a/examples/1.9.x/server-kotlin/java/proxy/delete-rule.md +++ b/examples/1.9.x/server-kotlin/java/proxy/delete-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Proxy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/proxy/get-rule.md b/examples/1.9.x/server-kotlin/java/proxy/get-rule.md index ecb354fac..dd8391396 100644 --- a/examples/1.9.x/server-kotlin/java/proxy/get-rule.md +++ b/examples/1.9.x/server-kotlin/java/proxy/get-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Proxy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/proxy/list-rules.md b/examples/1.9.x/server-kotlin/java/proxy/list-rules.md index 3936ed5f7..b699ae142 100644 --- a/examples/1.9.x/server-kotlin/java/proxy/list-rules.md +++ b/examples/1.9.x/server-kotlin/java/proxy/list-rules.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Proxy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/proxy/update-rule-status.md b/examples/1.9.x/server-kotlin/java/proxy/update-rule-status.md index c4c530893..c861bc508 100644 --- a/examples/1.9.x/server-kotlin/java/proxy/update-rule-status.md +++ b/examples/1.9.x/server-kotlin/java/proxy/update-rule-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Proxy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/create-deployment.md b/examples/1.9.x/server-kotlin/java/sites/create-deployment.md index 1301c3415..dd89277d2 100644 --- a/examples/1.9.x/server-kotlin/java/sites/create-deployment.md +++ b/examples/1.9.x/server-kotlin/java/sites/create-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.models.InputFile; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/create-duplicate-deployment.md b/examples/1.9.x/server-kotlin/java/sites/create-duplicate-deployment.md index 06d41d2dc..3a71ce0e8 100644 --- a/examples/1.9.x/server-kotlin/java/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-kotlin/java/sites/create-duplicate-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/create-template-deployment.md b/examples/1.9.x/server-kotlin/java/sites/create-template-deployment.md index 13077648d..94e6afbcf 100644 --- a/examples/1.9.x/server-kotlin/java/sites/create-template-deployment.md +++ b/examples/1.9.x/server-kotlin/java/sites/create-template-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.services.Sites; import io.appwrite.enums.TemplateReferenceType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/create-variable.md b/examples/1.9.x/server-kotlin/java/sites/create-variable.md index e7748b8c5..6b67653b2 100644 --- a/examples/1.9.x/server-kotlin/java/sites/create-variable.md +++ b/examples/1.9.x/server-kotlin/java/sites/create-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/create-vcs-deployment.md b/examples/1.9.x/server-kotlin/java/sites/create-vcs-deployment.md index 529fab34d..7afdb2723 100644 --- a/examples/1.9.x/server-kotlin/java/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-kotlin/java/sites/create-vcs-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.services.Sites; import io.appwrite.enums.VCSReferenceType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/create.md b/examples/1.9.x/server-kotlin/java/sites/create.md index 1f1f8e3bd..07922a6d1 100644 --- a/examples/1.9.x/server-kotlin/java/sites/create.md +++ b/examples/1.9.x/server-kotlin/java/sites/create.md @@ -2,12 +2,12 @@ import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; -import io.appwrite.enums.Framework; -import io.appwrite.enums.BuildRuntime; -import io.appwrite.enums.Adapter; +import io.appwrite.enums.SiteFramework; +import io.appwrite.enums.SiteBuildRuntime; +import io.appwrite.enums.SiteAdapter; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key @@ -16,8 +16,8 @@ Sites sites = new Sites(client); sites.create( "", // siteId "", // name - Framework.ANALOG, // framework - BuildRuntime.NODE_14_5, // buildRuntime + SiteFramework.ANALOG, // framework + SiteBuildRuntime.NODE_14_5, // buildRuntime false, // enabled (optional) false, // logging (optional) 1, // timeout (optional) @@ -25,13 +25,15 @@ sites.create( "", // buildCommand (optional) "", // startCommand (optional) "", // outputDirectory (optional) - Adapter.STATIC, // adapter (optional) + SiteAdapter.STATIC, // adapter (optional) "", // installationId (optional) "", // fallbackFile (optional) "", // providerRepositoryId (optional) "", // providerBranch (optional) false, // providerSilentMode (optional) "", // providerRootDirectory (optional) + List.of(), // providerBranches (optional) + List.of(), // providerPaths (optional) "", // buildSpecification (optional) "", // runtimeSpecification (optional) 0, // deploymentRetention (optional) diff --git a/examples/1.9.x/server-kotlin/java/sites/delete-deployment.md b/examples/1.9.x/server-kotlin/java/sites/delete-deployment.md index 90d36bf3e..604024843 100644 --- a/examples/1.9.x/server-kotlin/java/sites/delete-deployment.md +++ b/examples/1.9.x/server-kotlin/java/sites/delete-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/delete-log.md b/examples/1.9.x/server-kotlin/java/sites/delete-log.md index af696c141..874c40958 100644 --- a/examples/1.9.x/server-kotlin/java/sites/delete-log.md +++ b/examples/1.9.x/server-kotlin/java/sites/delete-log.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/delete-variable.md b/examples/1.9.x/server-kotlin/java/sites/delete-variable.md index b63a81c01..e5d274b20 100644 --- a/examples/1.9.x/server-kotlin/java/sites/delete-variable.md +++ b/examples/1.9.x/server-kotlin/java/sites/delete-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/delete.md b/examples/1.9.x/server-kotlin/java/sites/delete.md index 48bfbe267..16f36c69c 100644 --- a/examples/1.9.x/server-kotlin/java/sites/delete.md +++ b/examples/1.9.x/server-kotlin/java/sites/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/get-deployment-download.md b/examples/1.9.x/server-kotlin/java/sites/get-deployment-download.md index 3df75ba07..db63bfa9a 100644 --- a/examples/1.9.x/server-kotlin/java/sites/get-deployment-download.md +++ b/examples/1.9.x/server-kotlin/java/sites/get-deployment-download.md @@ -5,7 +5,7 @@ import io.appwrite.services.Sites; import io.appwrite.enums.DeploymentDownloadType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/get-deployment.md b/examples/1.9.x/server-kotlin/java/sites/get-deployment.md index 26565abce..6bb782037 100644 --- a/examples/1.9.x/server-kotlin/java/sites/get-deployment.md +++ b/examples/1.9.x/server-kotlin/java/sites/get-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/get-log.md b/examples/1.9.x/server-kotlin/java/sites/get-log.md index 290e82251..c13a20b45 100644 --- a/examples/1.9.x/server-kotlin/java/sites/get-log.md +++ b/examples/1.9.x/server-kotlin/java/sites/get-log.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/get-variable.md b/examples/1.9.x/server-kotlin/java/sites/get-variable.md index c5ac3890e..9fcb8b65e 100644 --- a/examples/1.9.x/server-kotlin/java/sites/get-variable.md +++ b/examples/1.9.x/server-kotlin/java/sites/get-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/get.md b/examples/1.9.x/server-kotlin/java/sites/get.md index 55d6ed33e..58fc911d6 100644 --- a/examples/1.9.x/server-kotlin/java/sites/get.md +++ b/examples/1.9.x/server-kotlin/java/sites/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/list-deployments.md b/examples/1.9.x/server-kotlin/java/sites/list-deployments.md index 650bd7bb1..bf88fdd6d 100644 --- a/examples/1.9.x/server-kotlin/java/sites/list-deployments.md +++ b/examples/1.9.x/server-kotlin/java/sites/list-deployments.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/list-frameworks.md b/examples/1.9.x/server-kotlin/java/sites/list-frameworks.md index 6192bf29f..d3f11ab06 100644 --- a/examples/1.9.x/server-kotlin/java/sites/list-frameworks.md +++ b/examples/1.9.x/server-kotlin/java/sites/list-frameworks.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/list-logs.md b/examples/1.9.x/server-kotlin/java/sites/list-logs.md index 437ebf5e8..4bc34ec37 100644 --- a/examples/1.9.x/server-kotlin/java/sites/list-logs.md +++ b/examples/1.9.x/server-kotlin/java/sites/list-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/list-specifications.md b/examples/1.9.x/server-kotlin/java/sites/list-specifications.md index e97db7da9..4be25029e 100644 --- a/examples/1.9.x/server-kotlin/java/sites/list-specifications.md +++ b/examples/1.9.x/server-kotlin/java/sites/list-specifications.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/list-variables.md b/examples/1.9.x/server-kotlin/java/sites/list-variables.md index 16c3e36f7..e9adeb97a 100644 --- a/examples/1.9.x/server-kotlin/java/sites/list-variables.md +++ b/examples/1.9.x/server-kotlin/java/sites/list-variables.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/list.md b/examples/1.9.x/server-kotlin/java/sites/list.md index 5d53afd41..d3c94ed6d 100644 --- a/examples/1.9.x/server-kotlin/java/sites/list.md +++ b/examples/1.9.x/server-kotlin/java/sites/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/update-deployment-status.md b/examples/1.9.x/server-kotlin/java/sites/update-deployment-status.md index 627cfcc20..3ee1eef88 100644 --- a/examples/1.9.x/server-kotlin/java/sites/update-deployment-status.md +++ b/examples/1.9.x/server-kotlin/java/sites/update-deployment-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/update-site-deployment.md b/examples/1.9.x/server-kotlin/java/sites/update-site-deployment.md index 8c60b7778..30df07e24 100644 --- a/examples/1.9.x/server-kotlin/java/sites/update-site-deployment.md +++ b/examples/1.9.x/server-kotlin/java/sites/update-site-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/update-variable.md b/examples/1.9.x/server-kotlin/java/sites/update-variable.md index ec016d77f..76bcb51f1 100644 --- a/examples/1.9.x/server-kotlin/java/sites/update-variable.md +++ b/examples/1.9.x/server-kotlin/java/sites/update-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/sites/update.md b/examples/1.9.x/server-kotlin/java/sites/update.md index 5086605b3..2a5d543eb 100644 --- a/examples/1.9.x/server-kotlin/java/sites/update.md +++ b/examples/1.9.x/server-kotlin/java/sites/update.md @@ -2,12 +2,12 @@ import io.appwrite.Client; import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Sites; -import io.appwrite.enums.Framework; -import io.appwrite.enums.BuildRuntime; -import io.appwrite.enums.Adapter; +import io.appwrite.enums.SiteFramework; +import io.appwrite.enums.SiteBuildRuntime; +import io.appwrite.enums.SiteAdapter; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key @@ -16,7 +16,7 @@ Sites sites = new Sites(client); sites.update( "", // siteId "", // name - Framework.ANALOG, // framework + SiteFramework.ANALOG, // framework false, // enabled (optional) false, // logging (optional) 1, // timeout (optional) @@ -24,14 +24,16 @@ sites.update( "", // buildCommand (optional) "", // startCommand (optional) "", // outputDirectory (optional) - BuildRuntime.NODE_14_5, // buildRuntime (optional) - Adapter.STATIC, // adapter (optional) + SiteBuildRuntime.NODE_14_5, // buildRuntime (optional) + SiteAdapter.STATIC, // adapter (optional) "", // fallbackFile (optional) "", // installationId (optional) "", // providerRepositoryId (optional) "", // providerBranch (optional) false, // providerSilentMode (optional) "", // providerRootDirectory (optional) + List.of(), // providerBranches (optional) + List.of(), // providerPaths (optional) "", // buildSpecification (optional) "", // runtimeSpecification (optional) 0, // deploymentRetention (optional) diff --git a/examples/1.9.x/server-kotlin/java/storage/create-bucket.md b/examples/1.9.x/server-kotlin/java/storage/create-bucket.md index 7a15d3264..3ed8822f5 100644 --- a/examples/1.9.x/server-kotlin/java/storage/create-bucket.md +++ b/examples/1.9.x/server-kotlin/java/storage/create-bucket.md @@ -7,7 +7,7 @@ import io.appwrite.services.Storage; import io.appwrite.enums.Compression; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/storage/create-file.md b/examples/1.9.x/server-kotlin/java/storage/create-file.md index 80fff49a1..bb09cdc6a 100644 --- a/examples/1.9.x/server-kotlin/java/storage/create-file.md +++ b/examples/1.9.x/server-kotlin/java/storage/create-file.md @@ -7,7 +7,7 @@ import io.appwrite.Role; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/storage/delete-bucket.md b/examples/1.9.x/server-kotlin/java/storage/delete-bucket.md index 175c65ef6..b66c9c583 100644 --- a/examples/1.9.x/server-kotlin/java/storage/delete-bucket.md +++ b/examples/1.9.x/server-kotlin/java/storage/delete-bucket.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/storage/delete-file.md b/examples/1.9.x/server-kotlin/java/storage/delete-file.md index dc3e279e2..c2c8ab073 100644 --- a/examples/1.9.x/server-kotlin/java/storage/delete-file.md +++ b/examples/1.9.x/server-kotlin/java/storage/delete-file.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/storage/get-bucket.md b/examples/1.9.x/server-kotlin/java/storage/get-bucket.md index fb6c59519..0dee6ebc7 100644 --- a/examples/1.9.x/server-kotlin/java/storage/get-bucket.md +++ b/examples/1.9.x/server-kotlin/java/storage/get-bucket.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/storage/get-file-download.md b/examples/1.9.x/server-kotlin/java/storage/get-file-download.md index 9fa4df864..e44640788 100644 --- a/examples/1.9.x/server-kotlin/java/storage/get-file-download.md +++ b/examples/1.9.x/server-kotlin/java/storage/get-file-download.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/storage/get-file-preview.md b/examples/1.9.x/server-kotlin/java/storage/get-file-preview.md index 18093617c..00bec70b8 100644 --- a/examples/1.9.x/server-kotlin/java/storage/get-file-preview.md +++ b/examples/1.9.x/server-kotlin/java/storage/get-file-preview.md @@ -6,7 +6,7 @@ import io.appwrite.enums.ImageGravity; import io.appwrite.enums.ImageFormat; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/storage/get-file-view.md b/examples/1.9.x/server-kotlin/java/storage/get-file-view.md index 106884f0d..a924e9475 100644 --- a/examples/1.9.x/server-kotlin/java/storage/get-file-view.md +++ b/examples/1.9.x/server-kotlin/java/storage/get-file-view.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/storage/get-file.md b/examples/1.9.x/server-kotlin/java/storage/get-file.md index 85c95162f..82ccca0f8 100644 --- a/examples/1.9.x/server-kotlin/java/storage/get-file.md +++ b/examples/1.9.x/server-kotlin/java/storage/get-file.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/storage/list-buckets.md b/examples/1.9.x/server-kotlin/java/storage/list-buckets.md index 85ca001a8..8fb171500 100644 --- a/examples/1.9.x/server-kotlin/java/storage/list-buckets.md +++ b/examples/1.9.x/server-kotlin/java/storage/list-buckets.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/storage/list-files.md b/examples/1.9.x/server-kotlin/java/storage/list-files.md index 35334b5c1..2d4cb24af 100644 --- a/examples/1.9.x/server-kotlin/java/storage/list-files.md +++ b/examples/1.9.x/server-kotlin/java/storage/list-files.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/storage/update-bucket.md b/examples/1.9.x/server-kotlin/java/storage/update-bucket.md index 7f94346da..3e300947d 100644 --- a/examples/1.9.x/server-kotlin/java/storage/update-bucket.md +++ b/examples/1.9.x/server-kotlin/java/storage/update-bucket.md @@ -7,7 +7,7 @@ import io.appwrite.services.Storage; import io.appwrite.enums.Compression; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/storage/update-file.md b/examples/1.9.x/server-kotlin/java/storage/update-file.md index 7692b1ed6..d47e8ecec 100644 --- a/examples/1.9.x/server-kotlin/java/storage/update-file.md +++ b/examples/1.9.x/server-kotlin/java/storage/update-file.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.Storage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-big-int-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-big-int-column.md index 9a4f50e72..c3a0f9799 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-big-int-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-boolean-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-boolean-column.md index eee5271b9..b339b298a 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-boolean-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-datetime-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-datetime-column.md index df06f3231..7358fb740 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-datetime-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-email-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-email-column.md index 864604ddf..e1504d31b 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-email-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-enum-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-enum-column.md index a932605e1..a3d6ff1bf 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-enum-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-float-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-float-column.md index 5582d5159..65abd7aab 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-float-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-index.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-index.md index 17b6e1de4..457182570 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-index.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-index.md @@ -6,7 +6,7 @@ import io.appwrite.enums.TablesDBIndexType; import io.appwrite.enums.OrderBy; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-integer-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-integer-column.md index 04371d853..56d64ffa1 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-integer-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-ip-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-ip-column.md index eb97261ef..1e1dca868 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-ip-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-line-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-line-column.md index 7dc67e360..51f4eab4e 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-line-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-longtext-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-longtext-column.md index f21e4183d..ef766cddf 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-longtext-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-mediumtext-column.md index b68ed88be..3c3bf6373 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-mediumtext-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-operations.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-operations.md index 066590410..5998372e5 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-operations.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-operations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-point-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-point-column.md index 0d01b7ab0..31d7e0943 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-point-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-polygon-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-polygon-column.md index bbf2563a4..e895e0320 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-polygon-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-relationship-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-relationship-column.md index f72d573d8..6a6c98259 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-relationship-column.md @@ -6,7 +6,7 @@ import io.appwrite.enums.RelationshipType; import io.appwrite.enums.RelationMutate; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-row.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-row.md index c3193a422..f0160ed08 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-row.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-row.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-rows.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-rows.md index 1e16a4dfd..4650295f5 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-rows.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-string-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-string-column.md index 058d5850b..9b43d23aa 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-string-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-table.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-table.md index 079ff5de0..95a3cd2b6 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-table.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-table.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-text-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-text-column.md index 25c2b0ac3..be8bd9a00 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-text-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-transaction.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-transaction.md index d66c22005..ae90c8f01 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-url-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-url-column.md index 0ab5d95ef..3b2d2b471 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-url-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create-varchar-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/create-varchar-column.md index fb2b3129a..36a3b0404 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create-varchar-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/create.md b/examples/1.9.x/server-kotlin/java/tablesdb/create.md index ccd99cc2d..2bf147b4d 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/create.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/decrement-row-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/decrement-row-column.md index 7d35318f9..08ebe9c49 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/decrement-row-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/delete-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/delete-column.md index 106bb1190..6a26aea34 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/delete-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/delete-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/delete-index.md b/examples/1.9.x/server-kotlin/java/tablesdb/delete-index.md index 3185434c1..d49f42be0 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/delete-index.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/delete-index.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/delete-row.md b/examples/1.9.x/server-kotlin/java/tablesdb/delete-row.md index 800e4f799..0462a1a63 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/delete-row.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/delete-row.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/delete-rows.md b/examples/1.9.x/server-kotlin/java/tablesdb/delete-rows.md index f12aaa368..28dfc5788 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/delete-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/delete-table.md b/examples/1.9.x/server-kotlin/java/tablesdb/delete-table.md index b98290803..6b5c25c30 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/delete-table.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/delete-table.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/delete-transaction.md b/examples/1.9.x/server-kotlin/java/tablesdb/delete-transaction.md index 8a0a6507a..0abe6186e 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/delete-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/delete.md b/examples/1.9.x/server-kotlin/java/tablesdb/delete.md index e66bb111c..95bdbfede 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/delete.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/get-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/get-column.md index c34254720..18c5dcdf5 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/get-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/get-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/get-index.md b/examples/1.9.x/server-kotlin/java/tablesdb/get-index.md index 3e9d8b059..1f18c6775 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/get-index.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/get-index.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/get-row.md b/examples/1.9.x/server-kotlin/java/tablesdb/get-row.md index c424eb247..3b47e3b26 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/get-row.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/get-row.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/get-table.md b/examples/1.9.x/server-kotlin/java/tablesdb/get-table.md index 839e7b5af..7127d0c70 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/get-table.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/get-table.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/get-transaction.md b/examples/1.9.x/server-kotlin/java/tablesdb/get-transaction.md index b4d22183b..9b6bf92e5 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/get-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/get.md b/examples/1.9.x/server-kotlin/java/tablesdb/get.md index 1593fce94..7f925ccdc 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/get.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/increment-row-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/increment-row-column.md index 69539c94c..004f3da2b 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/increment-row-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/list-columns.md b/examples/1.9.x/server-kotlin/java/tablesdb/list-columns.md index 6a997d81f..a4eec6d26 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/list-columns.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/list-columns.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/list-indexes.md b/examples/1.9.x/server-kotlin/java/tablesdb/list-indexes.md index abe669b52..8fc9b7da9 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/list-indexes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/list-rows.md b/examples/1.9.x/server-kotlin/java/tablesdb/list-rows.md index 174b4255b..0bafbe2f5 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/list-rows.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/list-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/list-tables.md b/examples/1.9.x/server-kotlin/java/tablesdb/list-tables.md index 37c046318..80baef8b8 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/list-tables.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/list-tables.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/list-transactions.md b/examples/1.9.x/server-kotlin/java/tablesdb/list-transactions.md index 38ae582b1..d72182242 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/list-transactions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/list.md b/examples/1.9.x/server-kotlin/java/tablesdb/list.md index 39ca54429..f28d32b66 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/list.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-big-int-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-big-int-column.md index dcc45a289..cc28b72b3 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-big-int-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-boolean-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-boolean-column.md index 9cceda436..042a41b58 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-boolean-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-datetime-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-datetime-column.md index fc1661d50..0ba23616b 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-datetime-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-email-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-email-column.md index 50b863961..a5a26dcf1 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-email-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-enum-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-enum-column.md index 0141a59ee..4a9c2c1e3 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-enum-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-float-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-float-column.md index 90b1d507b..bf31d4712 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-float-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-integer-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-integer-column.md index 4ba9f1d3f..228ace905 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-integer-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-ip-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-ip-column.md index 12bc0815c..47ae7c64e 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-ip-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-line-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-line-column.md index 389b99a94..410476347 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-line-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-longtext-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-longtext-column.md index 0f6ab8b0a..01cadf00c 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-longtext-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-mediumtext-column.md index 08298e65a..0c8820a88 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-mediumtext-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-point-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-point-column.md index dc7bf66ad..64a386e3f 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-point-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-polygon-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-polygon-column.md index 6aa7597a6..17115e32d 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-polygon-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-relationship-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-relationship-column.md index 5acc64420..df43e6922 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-relationship-column.md @@ -5,7 +5,7 @@ import io.appwrite.services.TablesDB; import io.appwrite.enums.RelationMutate; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-row.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-row.md index e22abdfbd..5d48c645a 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-row.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-row.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-rows.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-rows.md index cc954291d..f03a87f06 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-rows.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-string-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-string-column.md index 2f83ac118..0764dfc0f 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-string-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-table.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-table.md index 21120b77e..71691763a 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-table.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-table.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-text-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-text-column.md index 949dd394f..152e47035 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-text-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-transaction.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-transaction.md index 91790210a..c5012a3b1 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-url-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-url-column.md index a1aebc18b..a6c8a84e7 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-url-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update-varchar-column.md b/examples/1.9.x/server-kotlin/java/tablesdb/update-varchar-column.md index e9738c6e8..2d852ad7b 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update-varchar-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/update.md b/examples/1.9.x/server-kotlin/java/tablesdb/update.md index ee0448146..5ca349b98 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/update.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/update.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/upsert-row.md b/examples/1.9.x/server-kotlin/java/tablesdb/upsert-row.md index faa683694..40becb363 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/upsert-row.md @@ -6,7 +6,7 @@ import io.appwrite.Role; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tablesdb/upsert-rows.md b/examples/1.9.x/server-kotlin/java/tablesdb/upsert-rows.md index 1c46abfe7..942e190fb 100644 --- a/examples/1.9.x/server-kotlin/java/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-kotlin/java/tablesdb/upsert-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.TablesDB; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/teams/create-membership.md b/examples/1.9.x/server-kotlin/java/teams/create-membership.md index 52cf1043d..dff11e37e 100644 --- a/examples/1.9.x/server-kotlin/java/teams/create-membership.md +++ b/examples/1.9.x/server-kotlin/java/teams/create-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/create.md b/examples/1.9.x/server-kotlin/java/teams/create.md index d2d921bf8..e55a401c1 100644 --- a/examples/1.9.x/server-kotlin/java/teams/create.md +++ b/examples/1.9.x/server-kotlin/java/teams/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/delete-membership.md b/examples/1.9.x/server-kotlin/java/teams/delete-membership.md index 9a8d609b8..8f5660ffb 100644 --- a/examples/1.9.x/server-kotlin/java/teams/delete-membership.md +++ b/examples/1.9.x/server-kotlin/java/teams/delete-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/delete.md b/examples/1.9.x/server-kotlin/java/teams/delete.md index a96e78ee7..ec5ad6f1d 100644 --- a/examples/1.9.x/server-kotlin/java/teams/delete.md +++ b/examples/1.9.x/server-kotlin/java/teams/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/get-membership.md b/examples/1.9.x/server-kotlin/java/teams/get-membership.md index 0ebfec907..339b03f3a 100644 --- a/examples/1.9.x/server-kotlin/java/teams/get-membership.md +++ b/examples/1.9.x/server-kotlin/java/teams/get-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/get-prefs.md b/examples/1.9.x/server-kotlin/java/teams/get-prefs.md index 8a4846f00..d67bf0273 100644 --- a/examples/1.9.x/server-kotlin/java/teams/get-prefs.md +++ b/examples/1.9.x/server-kotlin/java/teams/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/get.md b/examples/1.9.x/server-kotlin/java/teams/get.md index 8fc7fc6e1..9b8fcd916 100644 --- a/examples/1.9.x/server-kotlin/java/teams/get.md +++ b/examples/1.9.x/server-kotlin/java/teams/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/list-memberships.md b/examples/1.9.x/server-kotlin/java/teams/list-memberships.md index 348ffd834..2adaf6e31 100644 --- a/examples/1.9.x/server-kotlin/java/teams/list-memberships.md +++ b/examples/1.9.x/server-kotlin/java/teams/list-memberships.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/list.md b/examples/1.9.x/server-kotlin/java/teams/list.md index 0f0827d65..08137d69b 100644 --- a/examples/1.9.x/server-kotlin/java/teams/list.md +++ b/examples/1.9.x/server-kotlin/java/teams/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/update-membership-status.md b/examples/1.9.x/server-kotlin/java/teams/update-membership-status.md index bb82703d9..597319e00 100644 --- a/examples/1.9.x/server-kotlin/java/teams/update-membership-status.md +++ b/examples/1.9.x/server-kotlin/java/teams/update-membership-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/update-membership.md b/examples/1.9.x/server-kotlin/java/teams/update-membership.md index 97034ae32..15fef2c7e 100644 --- a/examples/1.9.x/server-kotlin/java/teams/update-membership.md +++ b/examples/1.9.x/server-kotlin/java/teams/update-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/update-name.md b/examples/1.9.x/server-kotlin/java/teams/update-name.md index 7ee251487..db3cdd8cb 100644 --- a/examples/1.9.x/server-kotlin/java/teams/update-name.md +++ b/examples/1.9.x/server-kotlin/java/teams/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/teams/update-prefs.md b/examples/1.9.x/server-kotlin/java/teams/update-prefs.md index 7f7be4c77..9499784e3 100644 --- a/examples/1.9.x/server-kotlin/java/teams/update-prefs.md +++ b/examples/1.9.x/server-kotlin/java/teams/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Teams; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/java/tokens/create-file-token.md b/examples/1.9.x/server-kotlin/java/tokens/create-file-token.md index fae86d2b6..769b4c6ea 100644 --- a/examples/1.9.x/server-kotlin/java/tokens/create-file-token.md +++ b/examples/1.9.x/server-kotlin/java/tokens/create-file-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tokens/delete.md b/examples/1.9.x/server-kotlin/java/tokens/delete.md index 06c8478a2..3339e4c45 100644 --- a/examples/1.9.x/server-kotlin/java/tokens/delete.md +++ b/examples/1.9.x/server-kotlin/java/tokens/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tokens/get.md b/examples/1.9.x/server-kotlin/java/tokens/get.md index 584a37e44..9ac35a414 100644 --- a/examples/1.9.x/server-kotlin/java/tokens/get.md +++ b/examples/1.9.x/server-kotlin/java/tokens/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tokens/list.md b/examples/1.9.x/server-kotlin/java/tokens/list.md index fdda4490f..e9b196170 100644 --- a/examples/1.9.x/server-kotlin/java/tokens/list.md +++ b/examples/1.9.x/server-kotlin/java/tokens/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/tokens/update.md b/examples/1.9.x/server-kotlin/java/tokens/update.md index 033cbc5b9..75b17797b 100644 --- a/examples/1.9.x/server-kotlin/java/tokens/update.md +++ b/examples/1.9.x/server-kotlin/java/tokens/update.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Tokens; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/usage/list-events.md b/examples/1.9.x/server-kotlin/java/usage/list-events.md index 3c80be062..5ae82f94c 100644 --- a/examples/1.9.x/server-kotlin/java/usage/list-events.md +++ b/examples/1.9.x/server-kotlin/java/usage/list-events.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Usage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/usage/list-gauges.md b/examples/1.9.x/server-kotlin/java/usage/list-gauges.md index 71b26c949..8f96309f4 100644 --- a/examples/1.9.x/server-kotlin/java/usage/list-gauges.md +++ b/examples/1.9.x/server-kotlin/java/usage/list-gauges.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Usage; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-argon-2-user.md b/examples/1.9.x/server-kotlin/java/users/create-argon-2-user.md index 50fbb283c..9747939e4 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-argon-2-user.md +++ b/examples/1.9.x/server-kotlin/java/users/create-argon-2-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-bcrypt-user.md b/examples/1.9.x/server-kotlin/java/users/create-bcrypt-user.md index 0963995e8..4b006cf16 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-kotlin/java/users/create-bcrypt-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-jwt.md b/examples/1.9.x/server-kotlin/java/users/create-jwt.md index 521c10b2e..c75d4eaed 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-jwt.md +++ b/examples/1.9.x/server-kotlin/java/users/create-jwt.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-md-5-user.md b/examples/1.9.x/server-kotlin/java/users/create-md-5-user.md index 840ba29ab..d34a64ca4 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-md-5-user.md +++ b/examples/1.9.x/server-kotlin/java/users/create-md-5-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/java/users/create-mfa-recovery-codes.md index 5715b9b17..a65c5522f 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/java/users/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-ph-pass-user.md b/examples/1.9.x/server-kotlin/java/users/create-ph-pass-user.md index fd9f5f5ba..edee6e101 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-kotlin/java/users/create-ph-pass-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-scrypt-modified-user.md b/examples/1.9.x/server-kotlin/java/users/create-scrypt-modified-user.md index 892e49ffb..40f26230a 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-kotlin/java/users/create-scrypt-modified-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-scrypt-user.md b/examples/1.9.x/server-kotlin/java/users/create-scrypt-user.md index e894f1d28..0ac02e184 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-scrypt-user.md +++ b/examples/1.9.x/server-kotlin/java/users/create-scrypt-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-session.md b/examples/1.9.x/server-kotlin/java/users/create-session.md index e5c77e421..9a7fc2357 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-session.md +++ b/examples/1.9.x/server-kotlin/java/users/create-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-sha-user.md b/examples/1.9.x/server-kotlin/java/users/create-sha-user.md index d60caa756..d0db20ff8 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-sha-user.md +++ b/examples/1.9.x/server-kotlin/java/users/create-sha-user.md @@ -5,7 +5,7 @@ import io.appwrite.services.Users; import io.appwrite.enums.PasswordHash; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-target.md b/examples/1.9.x/server-kotlin/java/users/create-target.md index 8a953ebb6..b941ebe8c 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-target.md +++ b/examples/1.9.x/server-kotlin/java/users/create-target.md @@ -5,7 +5,7 @@ import io.appwrite.services.Users; import io.appwrite.enums.MessagingProviderType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create-token.md b/examples/1.9.x/server-kotlin/java/users/create-token.md index fccdf6bae..63cc5b116 100644 --- a/examples/1.9.x/server-kotlin/java/users/create-token.md +++ b/examples/1.9.x/server-kotlin/java/users/create-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/create.md b/examples/1.9.x/server-kotlin/java/users/create.md index ddf631a94..850c31d1a 100644 --- a/examples/1.9.x/server-kotlin/java/users/create.md +++ b/examples/1.9.x/server-kotlin/java/users/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/delete-identity.md b/examples/1.9.x/server-kotlin/java/users/delete-identity.md index f27e3af6c..414472634 100644 --- a/examples/1.9.x/server-kotlin/java/users/delete-identity.md +++ b/examples/1.9.x/server-kotlin/java/users/delete-identity.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/delete-mfa-authenticator.md b/examples/1.9.x/server-kotlin/java/users/delete-mfa-authenticator.md index cdf8ec03e..11c880804 100644 --- a/examples/1.9.x/server-kotlin/java/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-kotlin/java/users/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Users; import io.appwrite.enums.AuthenticatorType; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/delete-session.md b/examples/1.9.x/server-kotlin/java/users/delete-session.md index 8b39eb11b..7826e1fb7 100644 --- a/examples/1.9.x/server-kotlin/java/users/delete-session.md +++ b/examples/1.9.x/server-kotlin/java/users/delete-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/delete-sessions.md b/examples/1.9.x/server-kotlin/java/users/delete-sessions.md index 01b63b4c6..46829080d 100644 --- a/examples/1.9.x/server-kotlin/java/users/delete-sessions.md +++ b/examples/1.9.x/server-kotlin/java/users/delete-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/delete-target.md b/examples/1.9.x/server-kotlin/java/users/delete-target.md index f222ec65c..e6ddf3bb4 100644 --- a/examples/1.9.x/server-kotlin/java/users/delete-target.md +++ b/examples/1.9.x/server-kotlin/java/users/delete-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/delete.md b/examples/1.9.x/server-kotlin/java/users/delete.md index 00dfd2370..44a653391 100644 --- a/examples/1.9.x/server-kotlin/java/users/delete.md +++ b/examples/1.9.x/server-kotlin/java/users/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/java/users/get-mfa-recovery-codes.md index 28a433ff8..5a18b5a92 100644 --- a/examples/1.9.x/server-kotlin/java/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/java/users/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/get-prefs.md b/examples/1.9.x/server-kotlin/java/users/get-prefs.md index 405f03317..5e5a255d9 100644 --- a/examples/1.9.x/server-kotlin/java/users/get-prefs.md +++ b/examples/1.9.x/server-kotlin/java/users/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/get-target.md b/examples/1.9.x/server-kotlin/java/users/get-target.md index f103524d1..5b305cb8f 100644 --- a/examples/1.9.x/server-kotlin/java/users/get-target.md +++ b/examples/1.9.x/server-kotlin/java/users/get-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/get.md b/examples/1.9.x/server-kotlin/java/users/get.md index d72e78caf..5141856e9 100644 --- a/examples/1.9.x/server-kotlin/java/users/get.md +++ b/examples/1.9.x/server-kotlin/java/users/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/list-identities.md b/examples/1.9.x/server-kotlin/java/users/list-identities.md index 505ac56bd..5bd29a309 100644 --- a/examples/1.9.x/server-kotlin/java/users/list-identities.md +++ b/examples/1.9.x/server-kotlin/java/users/list-identities.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/list-logs.md b/examples/1.9.x/server-kotlin/java/users/list-logs.md index fa2107b35..43a5b86ea 100644 --- a/examples/1.9.x/server-kotlin/java/users/list-logs.md +++ b/examples/1.9.x/server-kotlin/java/users/list-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/list-memberships.md b/examples/1.9.x/server-kotlin/java/users/list-memberships.md index 0beeb6a6d..02c7c35bb 100644 --- a/examples/1.9.x/server-kotlin/java/users/list-memberships.md +++ b/examples/1.9.x/server-kotlin/java/users/list-memberships.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/list-mfa-factors.md b/examples/1.9.x/server-kotlin/java/users/list-mfa-factors.md index fc273e134..ff6d3cc6d 100644 --- a/examples/1.9.x/server-kotlin/java/users/list-mfa-factors.md +++ b/examples/1.9.x/server-kotlin/java/users/list-mfa-factors.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/list-sessions.md b/examples/1.9.x/server-kotlin/java/users/list-sessions.md index 5c9d66c28..1d826d8c6 100644 --- a/examples/1.9.x/server-kotlin/java/users/list-sessions.md +++ b/examples/1.9.x/server-kotlin/java/users/list-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/list-targets.md b/examples/1.9.x/server-kotlin/java/users/list-targets.md index c531484dd..689011545 100644 --- a/examples/1.9.x/server-kotlin/java/users/list-targets.md +++ b/examples/1.9.x/server-kotlin/java/users/list-targets.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/list.md b/examples/1.9.x/server-kotlin/java/users/list.md index 78bd24e61..27275c72d 100644 --- a/examples/1.9.x/server-kotlin/java/users/list.md +++ b/examples/1.9.x/server-kotlin/java/users/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-email-verification.md b/examples/1.9.x/server-kotlin/java/users/update-email-verification.md index c0b3b3149..02379414d 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-email-verification.md +++ b/examples/1.9.x/server-kotlin/java/users/update-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-email.md b/examples/1.9.x/server-kotlin/java/users/update-email.md index 8d343ce22..90c9dc8b9 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-email.md +++ b/examples/1.9.x/server-kotlin/java/users/update-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-impersonator.md b/examples/1.9.x/server-kotlin/java/users/update-impersonator.md index 879e4361f..6d219562e 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-impersonator.md +++ b/examples/1.9.x/server-kotlin/java/users/update-impersonator.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-labels.md b/examples/1.9.x/server-kotlin/java/users/update-labels.md index ae52debaa..ab3614e2d 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-labels.md +++ b/examples/1.9.x/server-kotlin/java/users/update-labels.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/java/users/update-mfa-recovery-codes.md index a0b9d1b02..c77d4a0f5 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/java/users/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-mfa.md b/examples/1.9.x/server-kotlin/java/users/update-mfa.md index b7a5e337d..6486345b2 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-mfa.md +++ b/examples/1.9.x/server-kotlin/java/users/update-mfa.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-name.md b/examples/1.9.x/server-kotlin/java/users/update-name.md index 0de8d5db9..1226b9886 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-name.md +++ b/examples/1.9.x/server-kotlin/java/users/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-password.md b/examples/1.9.x/server-kotlin/java/users/update-password.md index 3e073ecf6..37b5b251b 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-password.md +++ b/examples/1.9.x/server-kotlin/java/users/update-password.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-phone-verification.md b/examples/1.9.x/server-kotlin/java/users/update-phone-verification.md index b11e744fc..0aefde61b 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-phone-verification.md +++ b/examples/1.9.x/server-kotlin/java/users/update-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-phone.md b/examples/1.9.x/server-kotlin/java/users/update-phone.md index 2eee18334..5b3d72020 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-phone.md +++ b/examples/1.9.x/server-kotlin/java/users/update-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-prefs.md b/examples/1.9.x/server-kotlin/java/users/update-prefs.md index ff2a6c118..dc9a2c205 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-prefs.md +++ b/examples/1.9.x/server-kotlin/java/users/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-status.md b/examples/1.9.x/server-kotlin/java/users/update-status.md index 6ff97e198..c073b1959 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-status.md +++ b/examples/1.9.x/server-kotlin/java/users/update-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/users/update-target.md b/examples/1.9.x/server-kotlin/java/users/update-target.md index c9335828a..18868cbd2 100644 --- a/examples/1.9.x/server-kotlin/java/users/update-target.md +++ b/examples/1.9.x/server-kotlin/java/users/update-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Users; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/webhooks/create.md b/examples/1.9.x/server-kotlin/java/webhooks/create.md index 2c2dba732..66e13066a 100644 --- a/examples/1.9.x/server-kotlin/java/webhooks/create.md +++ b/examples/1.9.x/server-kotlin/java/webhooks/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Webhooks; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/webhooks/delete.md b/examples/1.9.x/server-kotlin/java/webhooks/delete.md index 21c530473..cd1b50a86 100644 --- a/examples/1.9.x/server-kotlin/java/webhooks/delete.md +++ b/examples/1.9.x/server-kotlin/java/webhooks/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Webhooks; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/webhooks/get.md b/examples/1.9.x/server-kotlin/java/webhooks/get.md index 07ed7714e..9b8fce28a 100644 --- a/examples/1.9.x/server-kotlin/java/webhooks/get.md +++ b/examples/1.9.x/server-kotlin/java/webhooks/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Webhooks; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/webhooks/list.md b/examples/1.9.x/server-kotlin/java/webhooks/list.md index 22e3d32d0..57332fbab 100644 --- a/examples/1.9.x/server-kotlin/java/webhooks/list.md +++ b/examples/1.9.x/server-kotlin/java/webhooks/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Webhooks; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/webhooks/update-secret.md b/examples/1.9.x/server-kotlin/java/webhooks/update-secret.md index eb18d8710..3be565395 100644 --- a/examples/1.9.x/server-kotlin/java/webhooks/update-secret.md +++ b/examples/1.9.x/server-kotlin/java/webhooks/update-secret.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Webhooks; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/java/webhooks/update.md b/examples/1.9.x/server-kotlin/java/webhooks/update.md index c6a436c86..7885e9da4 100644 --- a/examples/1.9.x/server-kotlin/java/webhooks/update.md +++ b/examples/1.9.x/server-kotlin/java/webhooks/update.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback; import io.appwrite.services.Webhooks; Client client = new Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey(""); // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-anonymous-session.md b/examples/1.9.x/server-kotlin/kotlin/account/create-anonymous-session.md index 68a9fd8cb..446f06874 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-anonymous-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-anonymous-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-email-password-session.md b/examples/1.9.x/server-kotlin/kotlin/account/create-email-password-session.md index a1cea8ff9..cdd8628e3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-email-password-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-email-password-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-email-token.md b/examples/1.9.x/server-kotlin/kotlin/account/create-email-token.md index dcca57a7d..9fb19befe 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-email-token.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-email-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-email-verification.md b/examples/1.9.x/server-kotlin/kotlin/account/create-email-verification.md index 1e35db8b2..23af74a0e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-email-verification.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-jwt.md b/examples/1.9.x/server-kotlin/kotlin/account/create-jwt.md index 9fdd8c2af..222ad7412 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-jwt.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-jwt.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-magic-url-token.md b/examples/1.9.x/server-kotlin/kotlin/account/create-magic-url-token.md index 16a0a9ef4..000235a67 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-magic-url-token.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-magic-url-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-authenticator.md b/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-authenticator.md index 51b69b1cb..6b833ab24 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.AuthenticatorType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-challenge.md b/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-challenge.md index 664be4aff..56fde8bb3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-challenge.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.AuthenticationFactor val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-recovery-codes.md index 30dcdb745..28841352d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-o-auth-2-token.md b/examples/1.9.x/server-kotlin/kotlin/account/create-o-auth-2-token.md index bc993687d..790acebd2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-o-auth-2-token.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.OAuthProvider val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-phone-token.md b/examples/1.9.x/server-kotlin/kotlin/account/create-phone-token.md index c4f4075a7..73be8f1a7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-phone-token.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-phone-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-phone-verification.md b/examples/1.9.x/server-kotlin/kotlin/account/create-phone-verification.md index 991862fa4..f0c9fca99 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-phone-verification.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-recovery.md b/examples/1.9.x/server-kotlin/kotlin/account/create-recovery.md index 826fb6363..52ec312e3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-recovery.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-recovery.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-session.md b/examples/1.9.x/server-kotlin/kotlin/account/create-session.md index fac50ff4d..f83d36794 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create-verification.md b/examples/1.9.x/server-kotlin/kotlin/account/create-verification.md index 6b01e27b6..9017b198f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create-verification.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/create.md b/examples/1.9.x/server-kotlin/kotlin/account/create.md index 2b9cd5f4f..0a7401398 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/create.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/delete-identity.md b/examples/1.9.x/server-kotlin/kotlin/account/delete-identity.md index 528a225bd..14d33ad3d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/delete-identity.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/delete-identity.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/delete-mfa-authenticator.md b/examples/1.9.x/server-kotlin/kotlin/account/delete-mfa-authenticator.md index 231b312ba..83b49ccfd 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.AuthenticatorType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/delete-session.md b/examples/1.9.x/server-kotlin/kotlin/account/delete-session.md index aabb48c1e..5c0138435 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/delete-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/delete-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/delete-sessions.md b/examples/1.9.x/server-kotlin/kotlin/account/delete-sessions.md index 5232e675e..8702c5249 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/delete-sessions.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/delete-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/kotlin/account/get-mfa-recovery-codes.md index 04ff7a4ca..da04c2a5b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/get-prefs.md b/examples/1.9.x/server-kotlin/kotlin/account/get-prefs.md index 51e682ee8..5b5895043 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/get-prefs.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/get-session.md b/examples/1.9.x/server-kotlin/kotlin/account/get-session.md index 7311e5c15..6c0002b9d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/get-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/get-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/get.md b/examples/1.9.x/server-kotlin/kotlin/account/get.md index b8d2078ff..110100b0c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/list-identities.md b/examples/1.9.x/server-kotlin/kotlin/account/list-identities.md index 612e06951..78a9965d9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/list-identities.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/list-identities.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/list-logs.md b/examples/1.9.x/server-kotlin/kotlin/account/list-logs.md index fb39e7376..a49c61907 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/list-logs.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/list-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/list-mfa-factors.md b/examples/1.9.x/server-kotlin/kotlin/account/list-mfa-factors.md index 95c2ffde2..19fa67ce3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/list-mfa-factors.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/list-mfa-factors.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/list-sessions.md b/examples/1.9.x/server-kotlin/kotlin/account/list-sessions.md index 120766637..b27d2020d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/list-sessions.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/list-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-email-verification.md b/examples/1.9.x/server-kotlin/kotlin/account/update-email-verification.md index e36908d2a..ec6b03701 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-email-verification.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-email.md b/examples/1.9.x/server-kotlin/kotlin/account/update-email.md index 6319d8084..56c885d6a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-email.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-magic-url-session.md b/examples/1.9.x/server-kotlin/kotlin/account/update-magic-url-session.md index 7a9524008..e5e15553f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-magic-url-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-magic-url-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-authenticator.md b/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-authenticator.md index cba56459b..e8ea40c09 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Account import io.appwrite.enums.AuthenticatorType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-challenge.md b/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-challenge.md index f0d8e6a03..3aa05216e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-challenge.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-recovery-codes.md index 4563b3bbf..4ae3c23d1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-mfa.md b/examples/1.9.x/server-kotlin/kotlin/account/update-mfa.md index 7a1a74d59..eb9c533e6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-mfa.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-mfa.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-name.md b/examples/1.9.x/server-kotlin/kotlin/account/update-name.md index 6fc7f1cd4..2fc7b085a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-name.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-password.md b/examples/1.9.x/server-kotlin/kotlin/account/update-password.md index 33b14a5c6..6fd8a8316 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-password.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-password.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-phone-session.md b/examples/1.9.x/server-kotlin/kotlin/account/update-phone-session.md index 368d77ab4..aa260e217 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-phone-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-phone-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-phone-verification.md b/examples/1.9.x/server-kotlin/kotlin/account/update-phone-verification.md index 22c05c0be..43f7c1dd2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-phone-verification.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-phone.md b/examples/1.9.x/server-kotlin/kotlin/account/update-phone.md index a3be3c875..c0b9a4c44 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-phone.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-prefs.md b/examples/1.9.x/server-kotlin/kotlin/account/update-prefs.md index 87740321c..6b7efa226 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-prefs.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-recovery.md b/examples/1.9.x/server-kotlin/kotlin/account/update-recovery.md index 31387f9da..f50ab3853 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-recovery.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-recovery.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-session.md b/examples/1.9.x/server-kotlin/kotlin/account/update-session.md index bc85529d4..10548bac5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-status.md b/examples/1.9.x/server-kotlin/kotlin/account/update-status.md index 19e6496c0..22c59d32e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-status.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/account/update-verification.md b/examples/1.9.x/server-kotlin/kotlin/account/update-verification.md index f19aaa6c3..bc9ac6123 100644 --- a/examples/1.9.x/server-kotlin/kotlin/account/update-verification.md +++ b/examples/1.9.x/server-kotlin/kotlin/account/update-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Account val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/activities/get-event.md b/examples/1.9.x/server-kotlin/kotlin/activities/get-event.md index 4bb742bee..92ef9c25a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/activities/get-event.md +++ b/examples/1.9.x/server-kotlin/kotlin/activities/get-event.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Activities val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/activities/list-events.md b/examples/1.9.x/server-kotlin/kotlin/activities/list-events.md index e781bfb2b..bf458e3aa 100644 --- a/examples/1.9.x/server-kotlin/kotlin/activities/list-events.md +++ b/examples/1.9.x/server-kotlin/kotlin/activities/list-events.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Activities val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/advisor/delete-report.md b/examples/1.9.x/server-kotlin/kotlin/advisor/delete-report.md index bc77810fe..6525d6180 100644 --- a/examples/1.9.x/server-kotlin/kotlin/advisor/delete-report.md +++ b/examples/1.9.x/server-kotlin/kotlin/advisor/delete-report.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Advisor val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/advisor/get-insight.md b/examples/1.9.x/server-kotlin/kotlin/advisor/get-insight.md index 44ea4391e..77d02e404 100644 --- a/examples/1.9.x/server-kotlin/kotlin/advisor/get-insight.md +++ b/examples/1.9.x/server-kotlin/kotlin/advisor/get-insight.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Advisor val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/advisor/get-report.md b/examples/1.9.x/server-kotlin/kotlin/advisor/get-report.md index b32c0cd6d..55eb3dacc 100644 --- a/examples/1.9.x/server-kotlin/kotlin/advisor/get-report.md +++ b/examples/1.9.x/server-kotlin/kotlin/advisor/get-report.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Advisor val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/advisor/list-insights.md b/examples/1.9.x/server-kotlin/kotlin/advisor/list-insights.md index b5cd6cf2e..87c862968 100644 --- a/examples/1.9.x/server-kotlin/kotlin/advisor/list-insights.md +++ b/examples/1.9.x/server-kotlin/kotlin/advisor/list-insights.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Advisor val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/advisor/list-reports.md b/examples/1.9.x/server-kotlin/kotlin/advisor/list-reports.md index 815eaf325..8febabaed 100644 --- a/examples/1.9.x/server-kotlin/kotlin/advisor/list-reports.md +++ b/examples/1.9.x/server-kotlin/kotlin/advisor/list-reports.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Advisor val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/avatars/get-browser.md b/examples/1.9.x/server-kotlin/kotlin/avatars/get-browser.md index 2565bd7cf..1bb702598 100644 --- a/examples/1.9.x/server-kotlin/kotlin/avatars/get-browser.md +++ b/examples/1.9.x/server-kotlin/kotlin/avatars/get-browser.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars import io.appwrite.enums.Browser val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/avatars/get-credit-card.md b/examples/1.9.x/server-kotlin/kotlin/avatars/get-credit-card.md index 08ce6f06c..fc638f6a3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/avatars/get-credit-card.md +++ b/examples/1.9.x/server-kotlin/kotlin/avatars/get-credit-card.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars import io.appwrite.enums.CreditCard val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/avatars/get-favicon.md b/examples/1.9.x/server-kotlin/kotlin/avatars/get-favicon.md index b19ad3ffc..01650d8e9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/avatars/get-favicon.md +++ b/examples/1.9.x/server-kotlin/kotlin/avatars/get-favicon.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/avatars/get-flag.md b/examples/1.9.x/server-kotlin/kotlin/avatars/get-flag.md index 3f411c337..2b0539fa0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/avatars/get-flag.md +++ b/examples/1.9.x/server-kotlin/kotlin/avatars/get-flag.md @@ -5,7 +5,7 @@ import io.appwrite.services.Avatars import io.appwrite.enums.Flag val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/avatars/get-image.md b/examples/1.9.x/server-kotlin/kotlin/avatars/get-image.md index 5efffd328..996a17eef 100644 --- a/examples/1.9.x/server-kotlin/kotlin/avatars/get-image.md +++ b/examples/1.9.x/server-kotlin/kotlin/avatars/get-image.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/avatars/get-initials.md b/examples/1.9.x/server-kotlin/kotlin/avatars/get-initials.md index 731aaab41..4b0bcc8fa 100644 --- a/examples/1.9.x/server-kotlin/kotlin/avatars/get-initials.md +++ b/examples/1.9.x/server-kotlin/kotlin/avatars/get-initials.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/avatars/get-qr.md b/examples/1.9.x/server-kotlin/kotlin/avatars/get-qr.md index e9419fef5..bacd45d65 100644 --- a/examples/1.9.x/server-kotlin/kotlin/avatars/get-qr.md +++ b/examples/1.9.x/server-kotlin/kotlin/avatars/get-qr.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/avatars/get-screenshot.md b/examples/1.9.x/server-kotlin/kotlin/avatars/get-screenshot.md index 0c6bc62b1..c38f7d196 100644 --- a/examples/1.9.x/server-kotlin/kotlin/avatars/get-screenshot.md +++ b/examples/1.9.x/server-kotlin/kotlin/avatars/get-screenshot.md @@ -2,13 +2,13 @@ import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Avatars -import io.appwrite.enums.Theme +import io.appwrite.enums.BrowserTheme import io.appwrite.enums.Timezone import io.appwrite.enums.BrowserPermission import io.appwrite.enums.ImageFormat val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with @@ -23,7 +23,7 @@ val result = avatars.getScreenshot( viewportWidth = 1920, // optional viewportHeight = 1080, // optional scale = 2, // optional - theme = Theme.DARK, // optional + theme = BrowserTheme.DARK, // optional userAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15", // optional fullpage = true, // optional locale = "en-US", // optional diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/create-archive.md b/examples/1.9.x/server-kotlin/kotlin/backups/create-archive.md index dae911b20..49b7a5c12 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/create-archive.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/create-archive.md @@ -5,7 +5,7 @@ import io.appwrite.services.Backups import io.appwrite.enums.BackupServices val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/create-policy.md b/examples/1.9.x/server-kotlin/kotlin/backups/create-policy.md index 21133d094..fca976756 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/create-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/create-policy.md @@ -5,7 +5,7 @@ import io.appwrite.services.Backups import io.appwrite.enums.BackupServices val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/create-restoration.md b/examples/1.9.x/server-kotlin/kotlin/backups/create-restoration.md index 852c9d00e..ac8306b5c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/create-restoration.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/create-restoration.md @@ -5,7 +5,7 @@ import io.appwrite.services.Backups import io.appwrite.enums.BackupServices val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/delete-archive.md b/examples/1.9.x/server-kotlin/kotlin/backups/delete-archive.md index deb19d02c..6721da2af 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/delete-archive.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/delete-archive.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/delete-policy.md b/examples/1.9.x/server-kotlin/kotlin/backups/delete-policy.md index c5ab29e0d..ea7be6a76 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/delete-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/delete-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/get-archive.md b/examples/1.9.x/server-kotlin/kotlin/backups/get-archive.md index 84574f3bd..e1e947eac 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/get-archive.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/get-archive.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/get-policy.md b/examples/1.9.x/server-kotlin/kotlin/backups/get-policy.md index 8d11217b1..3ad6e5938 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/get-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/get-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/get-restoration.md b/examples/1.9.x/server-kotlin/kotlin/backups/get-restoration.md index 1ad395d54..59ceb65d0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/get-restoration.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/get-restoration.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/list-archives.md b/examples/1.9.x/server-kotlin/kotlin/backups/list-archives.md index 0459f6830..2b4d1368a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/list-archives.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/list-archives.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/list-policies.md b/examples/1.9.x/server-kotlin/kotlin/backups/list-policies.md index 1cfac1028..afe88d385 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/list-policies.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/list-policies.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/list-restorations.md b/examples/1.9.x/server-kotlin/kotlin/backups/list-restorations.md index df4646f8e..8cffb47c2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/list-restorations.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/list-restorations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/backups/update-policy.md b/examples/1.9.x/server-kotlin/kotlin/backups/update-policy.md index 367a2546b..95122ef54 100644 --- a/examples/1.9.x/server-kotlin/kotlin/backups/update-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/backups/update-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Backups val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-big-int-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-big-int-attribute.md index dff765b38..e593400f0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-big-int-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-boolean-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-boolean-attribute.md index 9b06790a2..cc5846ec5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-boolean-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-collection.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-collection.md index 9dbc8696f..6e592e0ed 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-collection.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-collection.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-datetime-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-datetime-attribute.md index 051b7ed7a..c4545a54f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-datetime-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-document.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-document.md index f0cb24e9a..2c04aa081 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-document.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-document.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-documents.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-documents.md index a0f32b6c3..59d7868fc 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-documents.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-email-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-email-attribute.md index ab76182df..0e7e3dce3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-email-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-email-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-enum-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-enum-attribute.md index 982ed8bc6..f35557915 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-enum-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-float-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-float-attribute.md index ecf3795f7..6b3d6b89c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-float-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-float-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-index.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-index.md index aae520e3e..74246cc25 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-index.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-index.md @@ -6,7 +6,7 @@ import io.appwrite.enums.DatabasesIndexType import io.appwrite.enums.OrderBy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-integer-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-integer-attribute.md index 875fddd69..ac160dbd8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-integer-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-ip-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-ip-attribute.md index 1417b75d5..29b280796 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-ip-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-line-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-line-attribute.md index cff25a370..10003626c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-line-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-line-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-longtext-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-longtext-attribute.md index 8e845ed7f..4f9e0f970 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-longtext-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-mediumtext-attribute.md index 2fee5bf5f..2eb741cb2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-mediumtext-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-operations.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-operations.md index 5c414afd1..02f500812 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-operations.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-operations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-point-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-point-attribute.md index 9ab6eaf02..b4b1cd20d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-point-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-point-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-polygon-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-polygon-attribute.md index 2c2f74e1d..1370fcebe 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-polygon-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-relationship-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-relationship-attribute.md index 6f3604fa5..a70dbd5a8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-relationship-attribute.md @@ -6,7 +6,7 @@ import io.appwrite.enums.RelationshipType import io.appwrite.enums.RelationMutate val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-string-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-string-attribute.md index 94c831600..1abbb5cfd 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-string-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-string-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-text-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-text-attribute.md index 64dff056e..d011e5684 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-text-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-text-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-transaction.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-transaction.md index affea1ade..28c3d7b9e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-transaction.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-url-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-url-attribute.md index cfea13026..58d5b373e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-url-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-url-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create-varchar-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/create-varchar-attribute.md index d5e55ebc1..63a155a3f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create-varchar-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/create.md b/examples/1.9.x/server-kotlin/kotlin/databases/create.md index 84b42af29..ffe8a0af5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/create.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/decrement-document-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/decrement-document-attribute.md index 8f72cff78..51c325bb2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/decrement-document-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/delete-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/delete-attribute.md index d0da3b223..185dfd8b9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/delete-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/delete-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/delete-collection.md b/examples/1.9.x/server-kotlin/kotlin/databases/delete-collection.md index fcb70adf3..12f17409a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/delete-collection.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/delete-collection.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/delete-document.md b/examples/1.9.x/server-kotlin/kotlin/databases/delete-document.md index 42e196e05..2f67f156e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/delete-document.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/delete-document.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/delete-documents.md b/examples/1.9.x/server-kotlin/kotlin/databases/delete-documents.md index 43baf47bc..04e989d90 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/delete-documents.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/delete-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/delete-index.md b/examples/1.9.x/server-kotlin/kotlin/databases/delete-index.md index f96df1c1a..a57b17402 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/delete-index.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/delete-index.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/delete-transaction.md b/examples/1.9.x/server-kotlin/kotlin/databases/delete-transaction.md index 20425d68b..2516eb647 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/delete-transaction.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/delete-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/delete.md b/examples/1.9.x/server-kotlin/kotlin/databases/delete.md index bee3ffc18..f96ff554b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/get-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/get-attribute.md index eb49cb15c..0b3290d6b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/get-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/get-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/get-collection.md b/examples/1.9.x/server-kotlin/kotlin/databases/get-collection.md index 374a96653..d2954e52c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/get-collection.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/get-collection.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/get-document.md b/examples/1.9.x/server-kotlin/kotlin/databases/get-document.md index b7f492c1f..618530473 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/get-document.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/get-document.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/get-index.md b/examples/1.9.x/server-kotlin/kotlin/databases/get-index.md index 8a728b72b..6480389df 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/get-index.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/get-index.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/get-transaction.md b/examples/1.9.x/server-kotlin/kotlin/databases/get-transaction.md index f4b58289e..4405fe905 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/get-transaction.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/get-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/get.md b/examples/1.9.x/server-kotlin/kotlin/databases/get.md index 53f3359c0..41fce31ea 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/increment-document-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/increment-document-attribute.md index 995f61a64..820c787d9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/increment-document-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/list-attributes.md b/examples/1.9.x/server-kotlin/kotlin/databases/list-attributes.md index 51b330a33..fd64eedd7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/list-attributes.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/list-attributes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/list-collections.md b/examples/1.9.x/server-kotlin/kotlin/databases/list-collections.md index 85dd1298e..459dd3bb0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/list-collections.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/list-collections.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/list-documents.md b/examples/1.9.x/server-kotlin/kotlin/databases/list-documents.md index 26e60e6ff..d32445743 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/list-documents.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/list-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/list-indexes.md b/examples/1.9.x/server-kotlin/kotlin/databases/list-indexes.md index d91e4b2db..b81f95e03 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/list-indexes.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/list-indexes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/list-transactions.md b/examples/1.9.x/server-kotlin/kotlin/databases/list-transactions.md index 1195069e1..4aeaa9bc7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/list-transactions.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/list-transactions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/list.md b/examples/1.9.x/server-kotlin/kotlin/databases/list.md index f869a96f9..ba1ac5e3e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-big-int-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-big-int-attribute.md index 12b85ae31..ba5000916 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-big-int-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-boolean-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-boolean-attribute.md index cffc7b675..7fdb5d3df 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-boolean-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-collection.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-collection.md index f383054c0..ebe854499 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-collection.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-collection.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-datetime-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-datetime-attribute.md index 08e33b624..2fcf82188 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-datetime-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-document.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-document.md index 15cebaa2c..002fb7d5b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-document.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-document.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-documents.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-documents.md index bed508885..51f978955 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-documents.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-email-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-email-attribute.md index 0815cda21..f7666c970 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-email-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-email-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-enum-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-enum-attribute.md index 56fc612bb..ba25fd15b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-enum-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-float-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-float-attribute.md index 315815ef5..34275c52b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-float-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-float-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-integer-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-integer-attribute.md index 75d59ccf1..bb96429aa 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-integer-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-ip-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-ip-attribute.md index 8855307e2..b07305634 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-ip-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-line-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-line-attribute.md index 0951a6ad3..a6a3a31dc 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-line-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-line-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-longtext-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-longtext-attribute.md index df98d40b5..26ff51cc2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-longtext-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-mediumtext-attribute.md index 220029778..96c3f64e4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-mediumtext-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-point-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-point-attribute.md index 7e5acf486..940328675 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-point-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-point-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-polygon-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-polygon-attribute.md index 6b3ce7bba..2143f762d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-polygon-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-relationship-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-relationship-attribute.md index 5990539dd..9936b28a8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-relationship-attribute.md @@ -5,7 +5,7 @@ import io.appwrite.services.Databases import io.appwrite.enums.RelationMutate val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-string-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-string-attribute.md index c6eff55d3..a84450e0c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-string-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-string-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-text-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-text-attribute.md index 0766eba1d..3ae4b63f3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-text-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-text-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-transaction.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-transaction.md index d59a11057..047a09756 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-transaction.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-url-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-url-attribute.md index 84f9911af..7a3701f0e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-url-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-url-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update-varchar-attribute.md b/examples/1.9.x/server-kotlin/kotlin/databases/update-varchar-attribute.md index bb285fed0..03ceb0696 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update-varchar-attribute.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/update.md b/examples/1.9.x/server-kotlin/kotlin/databases/update.md index 5adc8a013..7096b79e3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/update.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/update.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/upsert-document.md b/examples/1.9.x/server-kotlin/kotlin/databases/upsert-document.md index 5f1caef25..2438d7920 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/upsert-document.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/upsert-document.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/databases/upsert-documents.md b/examples/1.9.x/server-kotlin/kotlin/databases/upsert-documents.md index a9e673c20..1d664faa0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/databases/upsert-documents.md +++ b/examples/1.9.x/server-kotlin/kotlin/databases/upsert-documents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Databases val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/create-deployment.md b/examples/1.9.x/server-kotlin/kotlin/functions/create-deployment.md index 3fe1a24f6..a61ee6fe7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/create-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/create-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.models.InputFile import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/create-duplicate-deployment.md b/examples/1.9.x/server-kotlin/kotlin/functions/create-duplicate-deployment.md index 4fda762a9..793584557 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/create-duplicate-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/create-execution.md b/examples/1.9.x/server-kotlin/kotlin/functions/create-execution.md index 1bae93d37..04a3b7a6c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/create-execution.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/create-execution.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions import io.appwrite.enums.ExecutionMethod val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/create-template-deployment.md b/examples/1.9.x/server-kotlin/kotlin/functions/create-template-deployment.md index ebc28411b..a495ecb12 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/create-template-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/create-template-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions import io.appwrite.enums.TemplateReferenceType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/create-variable.md b/examples/1.9.x/server-kotlin/kotlin/functions/create-variable.md index 28c8ef7f9..1f5f7af15 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/create-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/create-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/create-vcs-deployment.md b/examples/1.9.x/server-kotlin/kotlin/functions/create-vcs-deployment.md index 143083c6c..d94be38b4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/create-vcs-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions import io.appwrite.enums.VCSReferenceType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/create.md b/examples/1.9.x/server-kotlin/kotlin/functions/create.md index c742bc55b..da996a7ce 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/create.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/create.md @@ -2,11 +2,11 @@ import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions -import io.appwrite.enums.Runtime -import io.appwrite.enums.Scopes +import io.appwrite.enums.FunctionRuntime +import io.appwrite.enums.ProjectKeyScopes val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -15,7 +15,7 @@ val functions = Functions(client) val response = functions.create( functionId = "", name = "", - runtime = Runtime.NODE_14_5, + runtime = FunctionRuntime.NODE_14_5, execute = listOf("any"), // optional events = listOf(), // optional schedule = "", // optional @@ -24,12 +24,14 @@ val response = functions.create( logging = false, // optional entrypoint = "", // optional commands = "", // optional - scopes = listOf(Scopes.PROJECT_READ), // optional + scopes = listOf(ProjectKeyScopes.PROJECT_READ), // optional installationId = "", // optional providerRepositoryId = "", // optional providerBranch = "", // optional providerSilentMode = false, // optional providerRootDirectory = "", // optional + providerBranches = listOf(), // optional + providerPaths = listOf(), // optional buildSpecification = "", // optional runtimeSpecification = "", // optional deploymentRetention = 0 // optional diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/delete-deployment.md b/examples/1.9.x/server-kotlin/kotlin/functions/delete-deployment.md index d3129ad60..d71fb8d38 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/delete-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/delete-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/delete-execution.md b/examples/1.9.x/server-kotlin/kotlin/functions/delete-execution.md index 82e132b07..cfcb8f7ec 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/delete-execution.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/delete-execution.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/delete-variable.md b/examples/1.9.x/server-kotlin/kotlin/functions/delete-variable.md index 803f5af18..86dc2f7a2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/delete-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/delete-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/delete.md b/examples/1.9.x/server-kotlin/kotlin/functions/delete.md index 5970fbb24..155abbe19 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/get-deployment-download.md b/examples/1.9.x/server-kotlin/kotlin/functions/get-deployment-download.md index d6663d685..8568451a6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/get-deployment-download.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/get-deployment-download.md @@ -5,7 +5,7 @@ import io.appwrite.services.Functions import io.appwrite.enums.DeploymentDownloadType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/get-deployment.md b/examples/1.9.x/server-kotlin/kotlin/functions/get-deployment.md index c8fd70766..fae1d6436 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/get-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/get-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/get-execution.md b/examples/1.9.x/server-kotlin/kotlin/functions/get-execution.md index 38e313815..cf66792a4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/get-execution.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/get-execution.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/get-variable.md b/examples/1.9.x/server-kotlin/kotlin/functions/get-variable.md index 09b9fd1fa..2a33aa45f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/get-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/get-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/get.md b/examples/1.9.x/server-kotlin/kotlin/functions/get.md index 035dc3b87..725b98581 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/list-deployments.md b/examples/1.9.x/server-kotlin/kotlin/functions/list-deployments.md index 950e60480..366cc868b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/list-deployments.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/list-deployments.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/list-executions.md b/examples/1.9.x/server-kotlin/kotlin/functions/list-executions.md index 42b23a261..bd01393d4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/list-executions.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/list-executions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/list-runtimes.md b/examples/1.9.x/server-kotlin/kotlin/functions/list-runtimes.md index b32e73bf0..1302ab123 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/list-runtimes.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/list-runtimes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/list-specifications.md b/examples/1.9.x/server-kotlin/kotlin/functions/list-specifications.md index 452d24fe8..f0dce650c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/list-specifications.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/list-specifications.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/list-variables.md b/examples/1.9.x/server-kotlin/kotlin/functions/list-variables.md index e7f0e55a0..1e6a14115 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/list-variables.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/list-variables.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/list.md b/examples/1.9.x/server-kotlin/kotlin/functions/list.md index a76143269..6eca53f59 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/update-deployment-status.md b/examples/1.9.x/server-kotlin/kotlin/functions/update-deployment-status.md index acbb9bcd3..b27142db2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/update-deployment-status.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/update-deployment-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/update-function-deployment.md b/examples/1.9.x/server-kotlin/kotlin/functions/update-function-deployment.md index a94335067..17b5c810f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/update-function-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/update-function-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/update-variable.md b/examples/1.9.x/server-kotlin/kotlin/functions/update-variable.md index 9085015fa..a87d4f960 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/update-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/update-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/functions/update.md b/examples/1.9.x/server-kotlin/kotlin/functions/update.md index 002968245..12b0f3d11 100644 --- a/examples/1.9.x/server-kotlin/kotlin/functions/update.md +++ b/examples/1.9.x/server-kotlin/kotlin/functions/update.md @@ -2,11 +2,11 @@ import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Functions -import io.appwrite.enums.Runtime -import io.appwrite.enums.Scopes +import io.appwrite.enums.FunctionRuntime +import io.appwrite.enums.ProjectKeyScopes val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -15,7 +15,7 @@ val functions = Functions(client) val response = functions.update( functionId = "", name = "", - runtime = Runtime.NODE_14_5, // optional + runtime = FunctionRuntime.NODE_14_5, // optional execute = listOf("any"), // optional events = listOf(), // optional schedule = "", // optional @@ -24,12 +24,14 @@ val response = functions.update( logging = false, // optional entrypoint = "", // optional commands = "", // optional - scopes = listOf(Scopes.PROJECT_READ), // optional + scopes = listOf(ProjectKeyScopes.PROJECT_READ), // optional installationId = "", // optional providerRepositoryId = "", // optional providerBranch = "", // optional providerSilentMode = false, // optional providerRootDirectory = "", // optional + providerBranches = listOf(), // optional + providerPaths = listOf(), // optional buildSpecification = "", // optional runtimeSpecification = "", // optional deploymentRetention = 0 // optional diff --git a/examples/1.9.x/server-kotlin/kotlin/graphql/mutation.md b/examples/1.9.x/server-kotlin/kotlin/graphql/mutation.md index 3ec94a5d4..1539e8d1d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/graphql/mutation.md +++ b/examples/1.9.x/server-kotlin/kotlin/graphql/mutation.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Graphql val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/graphql/query.md b/examples/1.9.x/server-kotlin/kotlin/graphql/query.md index e22d508b3..9853a316c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/graphql/query.md +++ b/examples/1.9.x/server-kotlin/kotlin/graphql/query.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Graphql val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-antivirus.md b/examples/1.9.x/server-kotlin/kotlin/health/get-antivirus.md index 03bd635b1..7790d0c60 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-antivirus.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-antivirus.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-cache.md b/examples/1.9.x/server-kotlin/kotlin/health/get-cache.md index ef3265d3a..bcf6693de 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-cache.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-cache.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-certificate.md b/examples/1.9.x/server-kotlin/kotlin/health/get-certificate.md index 4dd8312c0..c4054e755 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-certificate.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-certificate.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-console-pausing.md b/examples/1.9.x/server-kotlin/kotlin/health/get-console-pausing.md index d595a2c3e..7331fd520 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-console-pausing.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-console-pausing.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-db.md b/examples/1.9.x/server-kotlin/kotlin/health/get-db.md index a844d27dc..c5b23b469 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-db.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-db.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-failed-jobs.md b/examples/1.9.x/server-kotlin/kotlin/health/get-failed-jobs.md index 8f27aa34b..354bc7f97 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-failed-jobs.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-failed-jobs.md @@ -2,17 +2,17 @@ import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health -import io.appwrite.enums.Name +import io.appwrite.enums.HealthQueueName val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key val health = Health(client) val response = health.getFailedJobs( - name = Name.V1_DATABASE, + name = HealthQueueName.V1_DATABASE, threshold = 0 // optional ) ``` diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-pub-sub.md b/examples/1.9.x/server-kotlin/kotlin/health/get-pub-sub.md index e12911f46..c0d02b0cb 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-pub-sub.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-pub-sub.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-audits.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-audits.md index a0a021887..994936206 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-audits.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-audits.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-builds.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-builds.md index 2a5378582..5c8bc2b6d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-builds.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-builds.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-certificates.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-certificates.md index 2776e5b88..487d24e3b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-certificates.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-certificates.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-databases.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-databases.md index b65359e9f..68b3ea79a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-databases.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-databases.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-deletes.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-deletes.md index e99a76bef..e5b33d79c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-deletes.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-deletes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-functions.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-functions.md index 5e0b45aaf..5f29d03ae 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-functions.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-functions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-logs.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-logs.md index b258f31b9..c85e869a2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-logs.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-mails.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-mails.md index ef5075231..0a471d5f9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-mails.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-mails.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-messaging.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-messaging.md index a1ccdace9..27a47e094 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-messaging.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-messaging.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-migrations.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-migrations.md index 1f5701fba..cc59f6305 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-migrations.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-migrations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-stats-resources.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-stats-resources.md index f2359cf0f..5d17c4150 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-stats-resources.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-usage.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-usage.md index 7dcccb61e..764378372 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-usage.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-usage.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-webhooks.md b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-webhooks.md index 1b1831c9a..76c5463b2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-queue-webhooks.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-storage-local.md b/examples/1.9.x/server-kotlin/kotlin/health/get-storage-local.md index 41a01f87c..64774a55e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-storage-local.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-storage-local.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-storage.md b/examples/1.9.x/server-kotlin/kotlin/health/get-storage.md index 5c52798d7..6c59d2793 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-storage.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-storage.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get-time.md b/examples/1.9.x/server-kotlin/kotlin/health/get-time.md index acbebfd16..465decb42 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get-time.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get-time.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/health/get.md b/examples/1.9.x/server-kotlin/kotlin/health/get.md index 3932ccb14..6cab90320 100644 --- a/examples/1.9.x/server-kotlin/kotlin/health/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/health/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Health val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/locale/get.md b/examples/1.9.x/server-kotlin/kotlin/locale/get.md index aa14e4501..15b73adb9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/locale/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/locale/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/locale/list-codes.md b/examples/1.9.x/server-kotlin/kotlin/locale/list-codes.md index d7d323e4f..dec9fcf04 100644 --- a/examples/1.9.x/server-kotlin/kotlin/locale/list-codes.md +++ b/examples/1.9.x/server-kotlin/kotlin/locale/list-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/locale/list-continents.md b/examples/1.9.x/server-kotlin/kotlin/locale/list-continents.md index 84fd76bcf..e09bf1e27 100644 --- a/examples/1.9.x/server-kotlin/kotlin/locale/list-continents.md +++ b/examples/1.9.x/server-kotlin/kotlin/locale/list-continents.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/locale/list-countries-eu.md b/examples/1.9.x/server-kotlin/kotlin/locale/list-countries-eu.md index 4fbcee6c1..ffa6b46a8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/locale/list-countries-eu.md +++ b/examples/1.9.x/server-kotlin/kotlin/locale/list-countries-eu.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/locale/list-countries-phones.md b/examples/1.9.x/server-kotlin/kotlin/locale/list-countries-phones.md index 02c56bbcc..41a8728e1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/locale/list-countries-phones.md +++ b/examples/1.9.x/server-kotlin/kotlin/locale/list-countries-phones.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/locale/list-countries.md b/examples/1.9.x/server-kotlin/kotlin/locale/list-countries.md index 441e130e5..e272c1877 100644 --- a/examples/1.9.x/server-kotlin/kotlin/locale/list-countries.md +++ b/examples/1.9.x/server-kotlin/kotlin/locale/list-countries.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/locale/list-currencies.md b/examples/1.9.x/server-kotlin/kotlin/locale/list-currencies.md index c68d676a5..2689bcf01 100644 --- a/examples/1.9.x/server-kotlin/kotlin/locale/list-currencies.md +++ b/examples/1.9.x/server-kotlin/kotlin/locale/list-currencies.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/locale/list-languages.md b/examples/1.9.x/server-kotlin/kotlin/locale/list-languages.md index 307d0b796..49324b2eb 100644 --- a/examples/1.9.x/server-kotlin/kotlin/locale/list-languages.md +++ b/examples/1.9.x/server-kotlin/kotlin/locale/list-languages.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Locale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-apns-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-apns-provider.md index e9d80cad2..6ee85cfb1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-apns-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-email.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-email.md index a5a813b38..b34e50d04 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-email.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-fcm-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-fcm-provider.md index 495b9ac67..8ba7ccb33 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-fcm-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-mailgun-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-mailgun-provider.md index 7f253330f..802b5a9ac 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-mailgun-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-msg-91-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-msg-91-provider.md index a80004b80..2b8478b4e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-msg-91-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-push.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-push.md index 1a547af28..3b7aa80c8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-push.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-push.md @@ -5,7 +5,7 @@ import io.appwrite.services.Messaging import io.appwrite.enums.MessagePriority val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-resend-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-resend-provider.md index 313bbb705..e2c252d99 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-resend-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-sendgrid-provider.md index 05b263bbb..2c384543f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-sendgrid-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-sms.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-sms.md index 124b2a501..b0e0fe0df 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-sms.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-sms.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-smtp-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-smtp-provider.md index 64d55ed13..aca94f4fd 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-smtp-provider.md @@ -5,7 +5,7 @@ import io.appwrite.services.Messaging import io.appwrite.enums.SmtpEncryption val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-subscriber.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-subscriber.md index 8b72a8133..b83070c0d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-subscriber.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setJWT("") // Your secret JSON Web Token diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-telesign-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-telesign-provider.md index 585fddeb3..b9a5e22b6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-telesign-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-textmagic-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-textmagic-provider.md index d9290bb27..6b4c630cd 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-textmagic-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-topic.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-topic.md index 139dcf6aa..44d04ed01 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-topic.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-topic.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-twilio-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-twilio-provider.md index 94556b562..19bafd55d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-twilio-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/create-vonage-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/create-vonage-provider.md index d4b8b3dcc..60a1c6c10 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/create-vonage-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/delete-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/delete-provider.md index 82875d674..f9789788b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/delete-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/delete-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/delete-subscriber.md b/examples/1.9.x/server-kotlin/kotlin/messaging/delete-subscriber.md index d475b5b41..72d2bb049 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/delete-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setJWT("") // Your secret JSON Web Token diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/delete-topic.md b/examples/1.9.x/server-kotlin/kotlin/messaging/delete-topic.md index 46407e82b..c14aa91a7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/delete-topic.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/delete-topic.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/delete.md b/examples/1.9.x/server-kotlin/kotlin/messaging/delete.md index 25a5cfb43..c9492d39b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/get-message.md b/examples/1.9.x/server-kotlin/kotlin/messaging/get-message.md index 9e9254f58..4d15848d1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/get-message.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/get-message.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/get-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/get-provider.md index a318451d6..b625827c3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/get-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/get-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/get-subscriber.md b/examples/1.9.x/server-kotlin/kotlin/messaging/get-subscriber.md index ef49cf15f..4e397a4e7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/get-subscriber.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/get-subscriber.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/get-topic.md b/examples/1.9.x/server-kotlin/kotlin/messaging/get-topic.md index 1a5738f8e..788a1b602 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/get-topic.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/get-topic.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-message-logs.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-message-logs.md index 7aedf604f..63c43495d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-message-logs.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-message-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-messages.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-messages.md index cbf689e23..7075e04c6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-messages.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-messages.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-provider-logs.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-provider-logs.md index f395d934f..1f8ff13f7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-provider-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-providers.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-providers.md index 27c875d41..1c0fb74a0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-providers.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-providers.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-subscriber-logs.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-subscriber-logs.md index 77aa52587..14bfe9750 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-subscriber-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-subscribers.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-subscribers.md index 8ae76791f..4587f3550 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-subscribers.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-subscribers.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-targets.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-targets.md index e6ff5faaa..8e571df85 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-targets.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-targets.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-topic-logs.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-topic-logs.md index ce66475e5..ff8de64f2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-topic-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/list-topics.md b/examples/1.9.x/server-kotlin/kotlin/messaging/list-topics.md index 23cae83dd..65459b4df 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/list-topics.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/list-topics.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-apns-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-apns-provider.md index 2d8812910..b67c46e37 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-apns-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-email.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-email.md index d072c39de..5135b7b5c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-email.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-fcm-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-fcm-provider.md index 2d5e52573..969a3bdb8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-fcm-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-mailgun-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-mailgun-provider.md index 18b652ce3..c876c3a92 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-mailgun-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-msg-91-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-msg-91-provider.md index f4901b70a..b68fe2191 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-msg-91-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-push.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-push.md index 26b60a2ad..8d85724c7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-push.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-push.md @@ -5,7 +5,7 @@ import io.appwrite.services.Messaging import io.appwrite.enums.MessagePriority val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-resend-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-resend-provider.md index c16fa845e..bcfdee986 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-resend-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-sendgrid-provider.md index 2d82d6a86..a0d33176f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-sendgrid-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-sms.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-sms.md index aa53bf147..3e710bd63 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-sms.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-sms.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-smtp-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-smtp-provider.md index ff8ed34ea..577d01f2c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-smtp-provider.md @@ -5,7 +5,7 @@ import io.appwrite.services.Messaging import io.appwrite.enums.SmtpEncryption val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-telesign-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-telesign-provider.md index f2cb5b251..0ff5e3e05 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-telesign-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-textmagic-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-textmagic-provider.md index 1640c79d5..cd9d9cd34 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-textmagic-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-topic.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-topic.md index d9a6a78c2..a9dcf0fe5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-topic.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-topic.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-twilio-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-twilio-provider.md index b60901a90..6911be3c6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-twilio-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/messaging/update-vonage-provider.md b/examples/1.9.x/server-kotlin/kotlin/messaging/update-vonage-provider.md index 8458a7b43..618245b94 100644 --- a/examples/1.9.x/server-kotlin/kotlin/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/messaging/update-vonage-provider.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Messaging val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/create-key.md b/examples/1.9.x/server-kotlin/kotlin/organization/create-key.md new file mode 100644 index 000000000..e39a92c9e --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/create-key.md @@ -0,0 +1,20 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization +import io.appwrite.enums.OrganizationKeyScopes + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.createKey( + keyId = "", + name = "", + scopes = listOf(OrganizationKeyScopes.PROJECTS_READ), + expire = "2020-10-15T06:38:00.000+00:00" // optional +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/create-project.md b/examples/1.9.x/server-kotlin/kotlin/organization/create-project.md new file mode 100644 index 000000000..951cf80fa --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/create-project.md @@ -0,0 +1,19 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization +import io.appwrite.enums.Region + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.createProject( + projectId = "", + name = "", + region = Region.FRA // optional +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/delete-key.md b/examples/1.9.x/server-kotlin/kotlin/organization/delete-key.md new file mode 100644 index 000000000..17e75432c --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/delete-key.md @@ -0,0 +1,16 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.deleteKey( + keyId = "" +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/delete-project.md b/examples/1.9.x/server-kotlin/kotlin/organization/delete-project.md new file mode 100644 index 000000000..de3e8a23d --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/delete-project.md @@ -0,0 +1,16 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.deleteProject( + projectId = "" +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/get-key.md b/examples/1.9.x/server-kotlin/kotlin/organization/get-key.md new file mode 100644 index 000000000..eb2802b5a --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/get-key.md @@ -0,0 +1,16 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.getKey( + keyId = "" +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/get-project.md b/examples/1.9.x/server-kotlin/kotlin/organization/get-project.md new file mode 100644 index 000000000..969809926 --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/get-project.md @@ -0,0 +1,16 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.getProject( + projectId = "" +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/list-keys.md b/examples/1.9.x/server-kotlin/kotlin/organization/list-keys.md new file mode 100644 index 000000000..3f36c7a79 --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/list-keys.md @@ -0,0 +1,17 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.listKeys( + queries = listOf(), // optional + total = false // optional +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/list-projects.md b/examples/1.9.x/server-kotlin/kotlin/organization/list-projects.md new file mode 100644 index 000000000..16defb246 --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/list-projects.md @@ -0,0 +1,18 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.listProjects( + queries = listOf(), // optional + search = "", // optional + total = false // optional +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/update-key.md b/examples/1.9.x/server-kotlin/kotlin/organization/update-key.md new file mode 100644 index 000000000..c81d50af7 --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/update-key.md @@ -0,0 +1,20 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization +import io.appwrite.enums.OrganizationKeyScopes + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.updateKey( + keyId = "", + name = "", + scopes = listOf(OrganizationKeyScopes.PROJECTS_READ), + expire = "2020-10-15T06:38:00.000+00:00" // optional +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/organization/update-project.md b/examples/1.9.x/server-kotlin/kotlin/organization/update-project.md new file mode 100644 index 000000000..88f714cab --- /dev/null +++ b/examples/1.9.x/server-kotlin/kotlin/organization/update-project.md @@ -0,0 +1,17 @@ +```kotlin +import io.appwrite.Client +import io.appwrite.coroutines.CoroutineCallback +import io.appwrite.services.Organization + +val client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +val organization = Organization(client) + +val response = organization.updateProject( + projectId = "", + name = "" +) +``` diff --git a/examples/1.9.x/server-kotlin/kotlin/presences/delete.md b/examples/1.9.x/server-kotlin/kotlin/presences/delete.md index f19489f26..66541853a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/presences/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/presences/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Presences val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/presences/get.md b/examples/1.9.x/server-kotlin/kotlin/presences/get.md index bf1529539..1624c21f3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/presences/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/presences/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Presences val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/presences/list.md b/examples/1.9.x/server-kotlin/kotlin/presences/list.md index 3426a0a29..40d1ff765 100644 --- a/examples/1.9.x/server-kotlin/kotlin/presences/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/presences/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Presences val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/presences/update-presence.md b/examples/1.9.x/server-kotlin/kotlin/presences/update-presence.md index 3b3d41c73..74f5976b7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/presences/update-presence.md +++ b/examples/1.9.x/server-kotlin/kotlin/presences/update-presence.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/presences/upsert.md b/examples/1.9.x/server-kotlin/kotlin/presences/upsert.md index 39d0c859b..4d7bdea0f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/presences/upsert.md +++ b/examples/1.9.x/server-kotlin/kotlin/presences/upsert.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-android-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/create-android-platform.md index 9b2d64fbc..c23358234 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-android-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-android-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-apple-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/create-apple-platform.md index 2ab03170a..6a97671b9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-apple-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-apple-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-ephemeral-key.md b/examples/1.9.x/server-kotlin/kotlin/project/create-ephemeral-key.md index b29f4b406..7a0298d75 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-ephemeral-key.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectKeyScopes val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-key.md b/examples/1.9.x/server-kotlin/kotlin/project/create-key.md index 4a946f48f..3b324d9ed 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-key.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-key.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectKeyScopes val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-linux-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/create-linux-platform.md index 0443dfbe4..cdaf0bc73 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-linux-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-linux-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-mock-phone.md b/examples/1.9.x/server-kotlin/kotlin/project/create-mock-phone.md index e8babf68c..e29123be1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-mock-phone.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-mock-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-smtp-test.md b/examples/1.9.x/server-kotlin/kotlin/project/create-smtp-test.md index b457518ec..03b70a6bd 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-smtp-test.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-smtp-test.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-variable.md b/examples/1.9.x/server-kotlin/kotlin/project/create-variable.md index e61e1baad..98f29b01b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-web-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/create-web-platform.md index 309e6a2fb..6a00652c1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-web-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-web-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/create-windows-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/create-windows-platform.md index 648851dcc..c40b14a17 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/create-windows-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/create-windows-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/delete-key.md b/examples/1.9.x/server-kotlin/kotlin/project/delete-key.md index 0141ae95f..799158bda 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/delete-key.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/delete-key.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/delete-mock-phone.md b/examples/1.9.x/server-kotlin/kotlin/project/delete-mock-phone.md index 963fbc981..4909a1b73 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/delete-mock-phone.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/delete-mock-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/delete-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/delete-platform.md index 7b3a91230..a7202bc5b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/delete-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/delete-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/delete-variable.md b/examples/1.9.x/server-kotlin/kotlin/project/delete-variable.md index 674d805dc..e6d044884 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/delete-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/delete-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/delete.md b/examples/1.9.x/server-kotlin/kotlin/project/delete.md index 29668a25c..9b859275a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/get-email-template.md b/examples/1.9.x/server-kotlin/kotlin/project/get-email-template.md index afb83fb05..874295c08 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/get-email-template.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/get-email-template.md @@ -6,7 +6,7 @@ import io.appwrite.enums.ProjectEmailTemplateId import io.appwrite.enums.ProjectEmailTemplateLocale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/get-key.md b/examples/1.9.x/server-kotlin/kotlin/project/get-key.md index 20c00451a..f0357253c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/get-key.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/get-key.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/get-mock-phone.md b/examples/1.9.x/server-kotlin/kotlin/project/get-mock-phone.md index 3051539db..ded373464 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/get-mock-phone.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/get-mock-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/get-o-auth-2-provider.md b/examples/1.9.x/server-kotlin/kotlin/project/get-o-auth-2-provider.md index 7a41003d7..aac962330 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/get-o-auth-2-provider.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectOAuthProviderId val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/get-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/get-platform.md index d436d7306..f06cfb6c9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/get-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/get-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/get-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/get-policy.md index 62b5dcd54..f5df2d4a8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/get-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/get-policy.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectPolicyId val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/get-variable.md b/examples/1.9.x/server-kotlin/kotlin/project/get-variable.md index 59dea6483..d321035ea 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/get-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/get-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/get.md b/examples/1.9.x/server-kotlin/kotlin/project/get.md index c910566a6..95519fe1d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/list-email-templates.md b/examples/1.9.x/server-kotlin/kotlin/project/list-email-templates.md index f1ced3985..9a298a273 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/list-email-templates.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/list-email-templates.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/list-keys.md b/examples/1.9.x/server-kotlin/kotlin/project/list-keys.md index d1e4ebf86..1f836fd07 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/list-keys.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/list-keys.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/list-mock-phones.md b/examples/1.9.x/server-kotlin/kotlin/project/list-mock-phones.md index 6ac56a26d..44869dab6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/list-mock-phones.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/list-mock-phones.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/list-o-auth-2-providers.md b/examples/1.9.x/server-kotlin/kotlin/project/list-o-auth-2-providers.md index de6e25adc..4f9543716 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/list-o-auth-2-providers.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/list-platforms.md b/examples/1.9.x/server-kotlin/kotlin/project/list-platforms.md index 04f5cbf86..2e353bd77 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/list-platforms.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/list-platforms.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/list-policies.md b/examples/1.9.x/server-kotlin/kotlin/project/list-policies.md index bfad4f513..c1cd5e9a8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/list-policies.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/list-policies.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/list-variables.md b/examples/1.9.x/server-kotlin/kotlin/project/list-variables.md index d455a1536..5fee79cb7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/list-variables.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/list-variables.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-android-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/update-android-platform.md index ae25a8c5e..a091c64d0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-android-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-android-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-apple-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/update-apple-platform.md index c299acb9f..744f79337 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-apple-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-apple-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-auth-method.md b/examples/1.9.x/server-kotlin/kotlin/project/update-auth-method.md index 0761cf5a6..8128fad1a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-auth-method.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-auth-method.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectAuthMethodId val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-deny-aliased-email-policy.md index 93cc56667..13c92ce56 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-deny-aliased-email-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-deny-disposable-email-policy.md index 34f84c0e1..2a78c082d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-deny-disposable-email-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-deny-free-email-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-deny-free-email-policy.md index 9c9cbc5b6..0aafa03f6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-deny-free-email-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-email-template.md b/examples/1.9.x/server-kotlin/kotlin/project/update-email-template.md index 211ac14c2..5ce6dc326 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-email-template.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-email-template.md @@ -6,7 +6,7 @@ import io.appwrite.enums.ProjectEmailTemplateId import io.appwrite.enums.ProjectEmailTemplateLocale val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-key.md b/examples/1.9.x/server-kotlin/kotlin/project/update-key.md index 714a20e20..4687e1fae 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-key.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-key.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectKeyScopes val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-labels.md b/examples/1.9.x/server-kotlin/kotlin/project/update-labels.md index fd68ba524..720ff79fd 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-labels.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-labels.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-linux-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/update-linux-platform.md index 8ddd08496..2afeba5e2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-linux-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-linux-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-membership-privacy-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-membership-privacy-policy.md index 5d177b328..4c59cd763 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-membership-privacy-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-mock-phone.md b/examples/1.9.x/server-kotlin/kotlin/project/update-mock-phone.md index 54b132a33..66b64cc74 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-mock-phone.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-mock-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-amazon.md index 552ac2a0b..912d7ef22 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-amazon.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-apple.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-apple.md index 9739c0bfe..75bffac52 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-apple.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-auth-0.md index da0419765..30b41b375 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-auth-0.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-authentik.md index 8c3b47d37..fe813c8e5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-authentik.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-autodesk.md index 7e0b6dfa3..a1b6bb3e5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-autodesk.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-bitbucket.md index 6a38d096f..1fd2b7500 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-bitbucket.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-bitly.md index eb6e346ad..6b60581dc 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-bitly.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-box.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-box.md index b77a82cd5..e3f1f7ac8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-box.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-dailymotion.md index d45444122..efa955243 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-dailymotion.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-discord.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-discord.md index a4d506b3f..e81941382 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-discord.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-disqus.md index 83f0d6904..bec08d301 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-disqus.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-dropbox.md index 0b36434ab..55b9f7703 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-dropbox.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-etsy.md index edec5b5e3..67edaf7b6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-etsy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-facebook.md index 952151f25..9cfa94a84 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-facebook.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-figma.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-figma.md index fb305af6a..9945ac57c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-figma.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-fusion-auth.md index 0db1694e2..3f709c7be 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-fusion-auth.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-git-hub.md index e4070b396..476b226f3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-git-hub.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-gitlab.md index b7779c832..d2e872594 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-gitlab.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-google.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-google.md index d083b2987..3e67025bf 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-google.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectOAuth2GooglePrompt val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-keycloak.md index ac4012d7b..a064e07dc 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-keycloak.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-kick.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-kick.md index 1da5c8a09..49f0936c2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-kick.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-linkedin.md index 99e404f4d..071d3d972 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-linkedin.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-microsoft.md index c44372a88..b17c3dd8c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-microsoft.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-notion.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-notion.md index 05dc95023..84dca8100 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-notion.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-oidc.md index 476b26e28..76f83d928 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-oidc.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-okta.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-okta.md index 6bf4aeeca..6a2a832e4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-okta.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-paypal-sandbox.md index bec13bde6..e00f60b22 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-paypal-sandbox.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-paypal.md index 7ceeaa6b4..32c33259b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-paypal.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-podio.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-podio.md index 9cc859732..7920c6078 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-podio.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-salesforce.md index a8b1244b4..d67ec4bb4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-salesforce.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-slack.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-slack.md index 358611030..77c5f478f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-slack.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-spotify.md index c1431e483..10501f80c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-spotify.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-stripe.md index bad2cc42a..6f9d1ff92 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-stripe.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-tradeshift-sandbox.md index aec834f93..8b953bb35 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-tradeshift-sandbox.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-tradeshift.md index ac5b816a0..7c536ac63 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-tradeshift.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-twitch.md index e8c1b957e..adf7310a4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-twitch.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-word-press.md index 6fbe200d6..95e53765e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-word-press.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-yahoo.md index c96e6fd7b..2b487bb06 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-yahoo.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-yandex.md index a48d01942..7afcaca3f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-yandex.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-zoho.md index 98f72a65f..89539c385 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-zoho.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-zoom.md index c934edf05..e9dc4c3ff 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2-zoom.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2x.md b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2x.md index ebcc4543a..49699cb1d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-o-auth-2x.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-password-dictionary-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-password-dictionary-policy.md index 672a89f0e..9e6d5798d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-password-dictionary-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-password-history-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-password-history-policy.md index 6580d3e5d..f8c521d4d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-password-history-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-password-history-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-password-personal-data-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-password-personal-data-policy.md index 49b08f335..efa808c9a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-password-personal-data-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-protocol.md b/examples/1.9.x/server-kotlin/kotlin/project/update-protocol.md index fe9533b27..d61dffea1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-protocol.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-protocol.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectProtocolId val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-service.md b/examples/1.9.x/server-kotlin/kotlin/project/update-service.md index 19943d7dd..c8d470bc7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-service.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-service.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectServiceId val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-session-alert-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-session-alert-policy.md index 233999533..e681de902 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-session-alert-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-session-duration-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-session-duration-policy.md index ad8c3f762..ad0f36aab 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-session-duration-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-session-invalidation-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-session-invalidation-policy.md index c7f336e9d..e2d14b60b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-session-invalidation-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-session-limit-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-session-limit-policy.md index 56831a952..e844335e9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-session-limit-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-smtp.md b/examples/1.9.x/server-kotlin/kotlin/project/update-smtp.md index 56b1a667e..6c423a3e6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-smtp.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-smtp.md @@ -5,7 +5,7 @@ import io.appwrite.services.Project import io.appwrite.enums.ProjectSMTPSecure val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-user-limit-policy.md b/examples/1.9.x/server-kotlin/kotlin/project/update-user-limit-policy.md index b46fb16a0..790c88eaf 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-user-limit-policy.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-variable.md b/examples/1.9.x/server-kotlin/kotlin/project/update-variable.md index cc6b22e1a..0a4d9a797 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-web-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/update-web-platform.md index 923ba70e5..a41d8a81e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-web-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-web-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/project/update-windows-platform.md b/examples/1.9.x/server-kotlin/kotlin/project/update-windows-platform.md index a8e709218..9e5daf785 100644 --- a/examples/1.9.x/server-kotlin/kotlin/project/update-windows-platform.md +++ b/examples/1.9.x/server-kotlin/kotlin/project/update-windows-platform.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Project val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/proxy/create-api-rule.md b/examples/1.9.x/server-kotlin/kotlin/proxy/create-api-rule.md index 8d4e6f9d4..480b8f695 100644 --- a/examples/1.9.x/server-kotlin/kotlin/proxy/create-api-rule.md +++ b/examples/1.9.x/server-kotlin/kotlin/proxy/create-api-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Proxy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/proxy/create-function-rule.md b/examples/1.9.x/server-kotlin/kotlin/proxy/create-function-rule.md index 30d869325..1be29d691 100644 --- a/examples/1.9.x/server-kotlin/kotlin/proxy/create-function-rule.md +++ b/examples/1.9.x/server-kotlin/kotlin/proxy/create-function-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Proxy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/proxy/create-redirect-rule.md b/examples/1.9.x/server-kotlin/kotlin/proxy/create-redirect-rule.md index f98f64363..e0a4a3ec1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-kotlin/kotlin/proxy/create-redirect-rule.md @@ -2,11 +2,11 @@ import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Proxy -import io.appwrite.enums.StatusCode +import io.appwrite.enums.RedirectStatusCode import io.appwrite.enums.ProxyResourceType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -15,7 +15,7 @@ val proxy = Proxy(client) val response = proxy.createRedirectRule( domain = "", url = "https://example.com", - statusCode = StatusCode.MOVED_PERMANENTLY_301, + statusCode = RedirectStatusCode.MOVEDPERMANENTLY, resourceId = "", resourceType = ProxyResourceType.SITE ) diff --git a/examples/1.9.x/server-kotlin/kotlin/proxy/create-site-rule.md b/examples/1.9.x/server-kotlin/kotlin/proxy/create-site-rule.md index 024ae8e23..6f601ccda 100644 --- a/examples/1.9.x/server-kotlin/kotlin/proxy/create-site-rule.md +++ b/examples/1.9.x/server-kotlin/kotlin/proxy/create-site-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Proxy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/proxy/delete-rule.md b/examples/1.9.x/server-kotlin/kotlin/proxy/delete-rule.md index 79035f3d4..0f834e33f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/proxy/delete-rule.md +++ b/examples/1.9.x/server-kotlin/kotlin/proxy/delete-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Proxy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/proxy/get-rule.md b/examples/1.9.x/server-kotlin/kotlin/proxy/get-rule.md index 598bcb08c..0dbbd4604 100644 --- a/examples/1.9.x/server-kotlin/kotlin/proxy/get-rule.md +++ b/examples/1.9.x/server-kotlin/kotlin/proxy/get-rule.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Proxy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/proxy/list-rules.md b/examples/1.9.x/server-kotlin/kotlin/proxy/list-rules.md index 1c77b7545..89fd23062 100644 --- a/examples/1.9.x/server-kotlin/kotlin/proxy/list-rules.md +++ b/examples/1.9.x/server-kotlin/kotlin/proxy/list-rules.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Proxy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/proxy/update-rule-status.md b/examples/1.9.x/server-kotlin/kotlin/proxy/update-rule-status.md index df40b2012..25ae89e13 100644 --- a/examples/1.9.x/server-kotlin/kotlin/proxy/update-rule-status.md +++ b/examples/1.9.x/server-kotlin/kotlin/proxy/update-rule-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Proxy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/create-deployment.md b/examples/1.9.x/server-kotlin/kotlin/sites/create-deployment.md index f9691190f..c2a28ac64 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/create-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/create-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.models.InputFile import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/create-duplicate-deployment.md b/examples/1.9.x/server-kotlin/kotlin/sites/create-duplicate-deployment.md index 0bbc1c117..72bf5f34d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/create-duplicate-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/create-template-deployment.md b/examples/1.9.x/server-kotlin/kotlin/sites/create-template-deployment.md index 65515cc8c..fd2d5c92d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/create-template-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/create-template-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.services.Sites import io.appwrite.enums.TemplateReferenceType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/create-variable.md b/examples/1.9.x/server-kotlin/kotlin/sites/create-variable.md index f3df9cf13..77532a047 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/create-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/create-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/create-vcs-deployment.md b/examples/1.9.x/server-kotlin/kotlin/sites/create-vcs-deployment.md index 9e7cd91ee..e53576d08 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/create-vcs-deployment.md @@ -5,7 +5,7 @@ import io.appwrite.services.Sites import io.appwrite.enums.VCSReferenceType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/create.md b/examples/1.9.x/server-kotlin/kotlin/sites/create.md index 9bc8982f5..dbfc4f56c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/create.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/create.md @@ -2,12 +2,12 @@ import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites -import io.appwrite.enums.Framework -import io.appwrite.enums.BuildRuntime -import io.appwrite.enums.Adapter +import io.appwrite.enums.SiteFramework +import io.appwrite.enums.SiteBuildRuntime +import io.appwrite.enums.SiteAdapter val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -16,8 +16,8 @@ val sites = Sites(client) val response = sites.create( siteId = "", name = "", - framework = Framework.ANALOG, - buildRuntime = BuildRuntime.NODE_14_5, + framework = SiteFramework.ANALOG, + buildRuntime = SiteBuildRuntime.NODE_14_5, enabled = false, // optional logging = false, // optional timeout = 1, // optional @@ -25,13 +25,15 @@ val response = sites.create( buildCommand = "", // optional startCommand = "", // optional outputDirectory = "", // optional - adapter = Adapter.STATIC, // optional + adapter = SiteAdapter.STATIC, // optional installationId = "", // optional fallbackFile = "", // optional providerRepositoryId = "", // optional providerBranch = "", // optional providerSilentMode = false, // optional providerRootDirectory = "", // optional + providerBranches = listOf(), // optional + providerPaths = listOf(), // optional buildSpecification = "", // optional runtimeSpecification = "", // optional deploymentRetention = 0 // optional diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/delete-deployment.md b/examples/1.9.x/server-kotlin/kotlin/sites/delete-deployment.md index 76400fc5d..1f7137fc6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/delete-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/delete-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/delete-log.md b/examples/1.9.x/server-kotlin/kotlin/sites/delete-log.md index 5a3714107..c3fca5aaa 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/delete-log.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/delete-log.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/delete-variable.md b/examples/1.9.x/server-kotlin/kotlin/sites/delete-variable.md index 4df5d2904..ae16df195 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/delete-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/delete-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/delete.md b/examples/1.9.x/server-kotlin/kotlin/sites/delete.md index d1c5bbe44..e64dc4cb9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/get-deployment-download.md b/examples/1.9.x/server-kotlin/kotlin/sites/get-deployment-download.md index e86ef015c..eafc1456a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/get-deployment-download.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/get-deployment-download.md @@ -5,7 +5,7 @@ import io.appwrite.services.Sites import io.appwrite.enums.DeploymentDownloadType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/get-deployment.md b/examples/1.9.x/server-kotlin/kotlin/sites/get-deployment.md index f20cd5e70..23eab097d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/get-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/get-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/get-log.md b/examples/1.9.x/server-kotlin/kotlin/sites/get-log.md index 57f352025..6365a0937 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/get-log.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/get-log.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/get-variable.md b/examples/1.9.x/server-kotlin/kotlin/sites/get-variable.md index 691e919f4..2fc2fb1f7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/get-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/get-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/get.md b/examples/1.9.x/server-kotlin/kotlin/sites/get.md index 735b51967..5e02af9c9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/list-deployments.md b/examples/1.9.x/server-kotlin/kotlin/sites/list-deployments.md index cf092dbc2..511e41988 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/list-deployments.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/list-deployments.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/list-frameworks.md b/examples/1.9.x/server-kotlin/kotlin/sites/list-frameworks.md index 6c7aa92de..51bb544ab 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/list-frameworks.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/list-frameworks.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/list-logs.md b/examples/1.9.x/server-kotlin/kotlin/sites/list-logs.md index bfb8556b9..81af284ef 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/list-logs.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/list-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/list-specifications.md b/examples/1.9.x/server-kotlin/kotlin/sites/list-specifications.md index 5ebef6014..1f3ae8cea 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/list-specifications.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/list-specifications.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/list-variables.md b/examples/1.9.x/server-kotlin/kotlin/sites/list-variables.md index 5ff7f7d95..0ba8d9ab3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/list-variables.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/list-variables.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/list.md b/examples/1.9.x/server-kotlin/kotlin/sites/list.md index 3b064979f..88351b58f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/update-deployment-status.md b/examples/1.9.x/server-kotlin/kotlin/sites/update-deployment-status.md index c9727b374..4389841c2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/update-deployment-status.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/update-deployment-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/update-site-deployment.md b/examples/1.9.x/server-kotlin/kotlin/sites/update-site-deployment.md index 7f3da4237..fae935016 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/update-site-deployment.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/update-site-deployment.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/update-variable.md b/examples/1.9.x/server-kotlin/kotlin/sites/update-variable.md index ed5e7179a..da40ec006 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/update-variable.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/update-variable.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/sites/update.md b/examples/1.9.x/server-kotlin/kotlin/sites/update.md index 63ff5b0ff..0285a30b1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/sites/update.md +++ b/examples/1.9.x/server-kotlin/kotlin/sites/update.md @@ -2,12 +2,12 @@ import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Sites -import io.appwrite.enums.Framework -import io.appwrite.enums.BuildRuntime -import io.appwrite.enums.Adapter +import io.appwrite.enums.SiteFramework +import io.appwrite.enums.SiteBuildRuntime +import io.appwrite.enums.SiteAdapter val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -16,7 +16,7 @@ val sites = Sites(client) val response = sites.update( siteId = "", name = "", - framework = Framework.ANALOG, + framework = SiteFramework.ANALOG, enabled = false, // optional logging = false, // optional timeout = 1, // optional @@ -24,14 +24,16 @@ val response = sites.update( buildCommand = "", // optional startCommand = "", // optional outputDirectory = "", // optional - buildRuntime = BuildRuntime.NODE_14_5, // optional - adapter = Adapter.STATIC, // optional + buildRuntime = SiteBuildRuntime.NODE_14_5, // optional + adapter = SiteAdapter.STATIC, // optional fallbackFile = "", // optional installationId = "", // optional providerRepositoryId = "", // optional providerBranch = "", // optional providerSilentMode = false, // optional providerRootDirectory = "", // optional + providerBranches = listOf(), // optional + providerPaths = listOf(), // optional buildSpecification = "", // optional runtimeSpecification = "", // optional deploymentRetention = 0 // optional diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/create-bucket.md b/examples/1.9.x/server-kotlin/kotlin/storage/create-bucket.md index a2f2be7af..c44c044e6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/create-bucket.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/create-bucket.md @@ -7,7 +7,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/create-file.md b/examples/1.9.x/server-kotlin/kotlin/storage/create-file.md index e17edbd89..00cd2f5d0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/create-file.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/create-file.md @@ -7,7 +7,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/delete-bucket.md b/examples/1.9.x/server-kotlin/kotlin/storage/delete-bucket.md index a5f681c67..f4c268e23 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/delete-bucket.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/delete-bucket.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/delete-file.md b/examples/1.9.x/server-kotlin/kotlin/storage/delete-file.md index 8ba5a38cb..ef3c5d7e7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/delete-file.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/delete-file.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/get-bucket.md b/examples/1.9.x/server-kotlin/kotlin/storage/get-bucket.md index b243bc3f7..5e56dbb1b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/get-bucket.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/get-bucket.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/get-file-download.md b/examples/1.9.x/server-kotlin/kotlin/storage/get-file-download.md index ed3198dde..be986916b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/get-file-download.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/get-file-download.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/get-file-preview.md b/examples/1.9.x/server-kotlin/kotlin/storage/get-file-preview.md index 9f7f29240..229efcc3e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/get-file-preview.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/get-file-preview.md @@ -6,7 +6,7 @@ import io.appwrite.enums.ImageGravity import io.appwrite.enums.ImageFormat val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/get-file-view.md b/examples/1.9.x/server-kotlin/kotlin/storage/get-file-view.md index 141a8cd4f..2df5ee8b9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/get-file-view.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/get-file-view.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/get-file.md b/examples/1.9.x/server-kotlin/kotlin/storage/get-file.md index 223075939..d51d2732e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/get-file.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/get-file.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/list-buckets.md b/examples/1.9.x/server-kotlin/kotlin/storage/list-buckets.md index 94c0bb6a1..ca4684872 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/list-buckets.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/list-buckets.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/list-files.md b/examples/1.9.x/server-kotlin/kotlin/storage/list-files.md index bc1e60aae..2a102463c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/list-files.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/list-files.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Storage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/update-bucket.md b/examples/1.9.x/server-kotlin/kotlin/storage/update-bucket.md index 99e928c6c..20ad60823 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/update-bucket.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/update-bucket.md @@ -7,7 +7,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/storage/update-file.md b/examples/1.9.x/server-kotlin/kotlin/storage/update-file.md index 8bcebadd7..93bdb3675 100644 --- a/examples/1.9.x/server-kotlin/kotlin/storage/update-file.md +++ b/examples/1.9.x/server-kotlin/kotlin/storage/update-file.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-big-int-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-big-int-column.md index 75509ce5a..cd31358f6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-big-int-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md index 1b386bcf0..29339a112 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md index 8c169bb99..9cef5adfb 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-email-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-email-column.md index 8132436ba..07d8339cf 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-email-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-enum-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-enum-column.md index 9a33d4c42..42e1ecbbf 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-enum-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-float-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-float-column.md index 26345ea98..a28bf1f7a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-float-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-index.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-index.md index 021290d41..a1cc619f6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-index.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-index.md @@ -6,7 +6,7 @@ import io.appwrite.enums.TablesDBIndexType import io.appwrite.enums.OrderBy val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-integer-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-integer-column.md index fd10f1cee..8b41c3158 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-integer-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-ip-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-ip-column.md index 8541b5849..bf0616d63 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-ip-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-line-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-line-column.md index f976c9859..cb0c06027 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-line-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-longtext-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-longtext-column.md index 3d322de98..a003cd3a3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-longtext-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-mediumtext-column.md index 70ac2f5ac..5ca550c61 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-mediumtext-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-operations.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-operations.md index d2c6f7a02..828ea1d40 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-operations.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-operations.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-point-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-point-column.md index 891f19128..3467085e4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-point-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-polygon-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-polygon-column.md index e31813fb1..cf40367f7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-polygon-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md index b9884fd68..719743fc4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md @@ -6,7 +6,7 @@ import io.appwrite.enums.RelationshipType import io.appwrite.enums.RelationMutate val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-row.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-row.md index 4cd0dd06f..6d3c9a3f3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-row.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-row.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-rows.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-rows.md index 5cb02b780..1bd706a80 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-rows.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-string-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-string-column.md index de14c3732..45c29b3fe 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-string-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-table.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-table.md index cdc00e204..e7183939f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-table.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-table.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-text-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-text-column.md index ed42a88b9..857c739f3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-text-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-transaction.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-transaction.md index c7594185b..11ef36f92 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-url-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-url-column.md index b142ae8db..4d37a727f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-url-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-varchar-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-varchar-column.md index ef4ebe215..be17e31d7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create-varchar-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create.md index 622f66e2a..2eceabfac 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/create.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md index d09bdbb10..e8f34b294 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-column.md index 738d6f785..6f3efb878 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-index.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-index.md index 139eaf36c..23293ab07 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-index.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-index.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-row.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-row.md index e332db02f..968615dc8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-row.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-row.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-rows.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-rows.md index 00cd5abe0..562e0d710 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-table.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-table.md index d83d92701..ad6bd693b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-table.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-table.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-transaction.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-transaction.md index 8e8641bf7..7e79035aa 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete.md index 15035253a..0362a8665 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-column.md index 6382da218..a17d6f9b4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-index.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-index.md index 9be2100a3..797f166f7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-index.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-index.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-row.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-row.md index 18845e2a3..86ab506b9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-row.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-row.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-table.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-table.md index 6595254a2..c679a38d6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-table.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-table.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-transaction.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-transaction.md index c478eb8e5..3f3eeccaf 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get.md index 9d9de009f..190f3cafa 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/increment-row-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/increment-row-column.md index 6c37b6b42..898ff56d7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/increment-row-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-columns.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-columns.md index 786773749..b21dc962c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-columns.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-columns.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-indexes.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-indexes.md index edd5cbd2b..68cdb137c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-indexes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-rows.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-rows.md index c8b518d5d..eabc9a38c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-rows.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-tables.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-tables.md index a60bbfe93..81add5ab9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-tables.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-tables.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-transactions.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-transactions.md index 52ebbefbb..ffca67b67 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list-transactions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list.md index a5b2d1037..4af6a9f7e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-big-int-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-big-int-column.md index dc8a43ea0..dd8eea0a8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-big-int-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md index 1e8532ac4..c76744e3a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md index 0aa2dfd65..1c73a7671 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-email-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-email-column.md index 5285000af..38ad30910 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-email-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-enum-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-enum-column.md index a1240662f..0aa72fed7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-enum-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-float-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-float-column.md index 6dc50660d..643019d47 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-float-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-integer-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-integer-column.md index 746107f0f..23e83d508 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-integer-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-ip-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-ip-column.md index 62a86fcb3..cd59f40b7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-ip-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-line-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-line-column.md index adb1de98d..f1a91156d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-line-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-longtext-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-longtext-column.md index e4f89c338..1220dd739 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-longtext-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-mediumtext-column.md index 3fb82c709..91f62eb78 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-mediumtext-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-point-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-point-column.md index 1374e0cb8..5811828ca 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-point-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-polygon-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-polygon-column.md index 534897a20..d02679c83 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-polygon-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md index 590261e3c..25283ac0c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md @@ -5,7 +5,7 @@ import io.appwrite.services.TablesDB import io.appwrite.enums.RelationMutate val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-row.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-row.md index 1ef355353..60458d786 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-row.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-row.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-rows.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-rows.md index 89eba7dfa..93cd0b249 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-rows.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-string-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-string-column.md index da44be7c1..23729bc3d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-string-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-table.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-table.md index db1db5b00..d69f9f316 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-table.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-table.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-text-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-text-column.md index 95262cadc..a12f3ae80 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-text-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-transaction.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-transaction.md index 1e452f4b3..497461cce 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-transaction.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-url-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-url-column.md index 885ef717e..9d138052c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-url-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-varchar-column.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-varchar-column.md index c190bb984..0d61376ba 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update-varchar-column.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update.md index becb2b9f6..6af9f72a6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/update.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/update.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/upsert-row.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/upsert-row.md index 7ae1397e4..a06fb7d21 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/upsert-row.md @@ -6,7 +6,7 @@ import io.appwrite.Permission import io.appwrite.Role val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tablesdb/upsert-rows.md b/examples/1.9.x/server-kotlin/kotlin/tablesdb/upsert-rows.md index 5ee9beb6c..8267128f8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-kotlin/kotlin/tablesdb/upsert-rows.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.TablesDB val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/create-membership.md b/examples/1.9.x/server-kotlin/kotlin/teams/create-membership.md index 8a27e6ea2..580d0843d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/create-membership.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/create-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/create.md b/examples/1.9.x/server-kotlin/kotlin/teams/create.md index f14fb19d4..7b2b36b18 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/create.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/delete-membership.md b/examples/1.9.x/server-kotlin/kotlin/teams/delete-membership.md index 1291b5ddc..b96bdbb27 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/delete-membership.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/delete-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/delete.md b/examples/1.9.x/server-kotlin/kotlin/teams/delete.md index d6b5389db..c1cabd8e5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/get-membership.md b/examples/1.9.x/server-kotlin/kotlin/teams/get-membership.md index e35179ee9..341f914e9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/get-membership.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/get-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/get-prefs.md b/examples/1.9.x/server-kotlin/kotlin/teams/get-prefs.md index 615a59d07..a56aca84a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/get-prefs.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/get.md b/examples/1.9.x/server-kotlin/kotlin/teams/get.md index d5dc888ae..786309db7 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/list-memberships.md b/examples/1.9.x/server-kotlin/kotlin/teams/list-memberships.md index 762336d10..82410d634 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/list-memberships.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/list-memberships.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/list.md b/examples/1.9.x/server-kotlin/kotlin/teams/list.md index bcb4c83a1..ac3787736 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/update-membership-status.md b/examples/1.9.x/server-kotlin/kotlin/teams/update-membership-status.md index 082004b8a..55fd99a84 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/update-membership-status.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/update-membership-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/update-membership.md b/examples/1.9.x/server-kotlin/kotlin/teams/update-membership.md index 51e01d69c..889d3fbc3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/update-membership.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/update-membership.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/update-name.md b/examples/1.9.x/server-kotlin/kotlin/teams/update-name.md index 229bea6c8..b2828ac6e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/update-name.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/teams/update-prefs.md b/examples/1.9.x/server-kotlin/kotlin/teams/update-prefs.md index d9e68fa2c..1f00fae98 100644 --- a/examples/1.9.x/server-kotlin/kotlin/teams/update-prefs.md +++ b/examples/1.9.x/server-kotlin/kotlin/teams/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Teams val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-kotlin/kotlin/tokens/create-file-token.md b/examples/1.9.x/server-kotlin/kotlin/tokens/create-file-token.md index 7d831ce0f..9ad6e9830 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tokens/create-file-token.md +++ b/examples/1.9.x/server-kotlin/kotlin/tokens/create-file-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tokens/delete.md b/examples/1.9.x/server-kotlin/kotlin/tokens/delete.md index 25e4b19fa..7366dd7e9 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tokens/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/tokens/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tokens/get.md b/examples/1.9.x/server-kotlin/kotlin/tokens/get.md index 803030987..3e0b4a55b 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tokens/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/tokens/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tokens/list.md b/examples/1.9.x/server-kotlin/kotlin/tokens/list.md index 39ffb7618..15527b2b4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tokens/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/tokens/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/tokens/update.md b/examples/1.9.x/server-kotlin/kotlin/tokens/update.md index 4e7de71fc..3fce5f2da 100644 --- a/examples/1.9.x/server-kotlin/kotlin/tokens/update.md +++ b/examples/1.9.x/server-kotlin/kotlin/tokens/update.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tokens val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/usage/list-events.md b/examples/1.9.x/server-kotlin/kotlin/usage/list-events.md index 055fe1f71..79055bc65 100644 --- a/examples/1.9.x/server-kotlin/kotlin/usage/list-events.md +++ b/examples/1.9.x/server-kotlin/kotlin/usage/list-events.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Usage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/usage/list-gauges.md b/examples/1.9.x/server-kotlin/kotlin/usage/list-gauges.md index 77f13483c..3b417a4ca 100644 --- a/examples/1.9.x/server-kotlin/kotlin/usage/list-gauges.md +++ b/examples/1.9.x/server-kotlin/kotlin/usage/list-gauges.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Usage val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-argon-2-user.md b/examples/1.9.x/server-kotlin/kotlin/users/create-argon-2-user.md index ba0c2d0cb..0f9b17eda 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-argon-2-user.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-argon-2-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-bcrypt-user.md b/examples/1.9.x/server-kotlin/kotlin/users/create-bcrypt-user.md index 3a563f726..47a32a5f3 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-bcrypt-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-jwt.md b/examples/1.9.x/server-kotlin/kotlin/users/create-jwt.md index 34cc8392c..1210f4784 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-jwt.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-jwt.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-md-5-user.md b/examples/1.9.x/server-kotlin/kotlin/users/create-md-5-user.md index 04e30b452..b47b169f4 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-md-5-user.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-md-5-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/kotlin/users/create-mfa-recovery-codes.md index 385bb2ca2..76c206917 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-ph-pass-user.md b/examples/1.9.x/server-kotlin/kotlin/users/create-ph-pass-user.md index a62814dbc..7184afb1d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-ph-pass-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-scrypt-modified-user.md b/examples/1.9.x/server-kotlin/kotlin/users/create-scrypt-modified-user.md index 0b5fb50d2..dced0d2fd 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-scrypt-modified-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-scrypt-user.md b/examples/1.9.x/server-kotlin/kotlin/users/create-scrypt-user.md index 191ea2682..a784c9691 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-scrypt-user.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-scrypt-user.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-session.md b/examples/1.9.x/server-kotlin/kotlin/users/create-session.md index 9379a0102..72e34e743 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-sha-user.md b/examples/1.9.x/server-kotlin/kotlin/users/create-sha-user.md index 91566c8c2..ff01e396d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-sha-user.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-sha-user.md @@ -5,7 +5,7 @@ import io.appwrite.services.Users import io.appwrite.enums.PasswordHash val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-target.md b/examples/1.9.x/server-kotlin/kotlin/users/create-target.md index 774120d55..299817e57 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-target.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-target.md @@ -5,7 +5,7 @@ import io.appwrite.services.Users import io.appwrite.enums.MessagingProviderType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create-token.md b/examples/1.9.x/server-kotlin/kotlin/users/create-token.md index fedd9392f..3a6371e01 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create-token.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create-token.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/create.md b/examples/1.9.x/server-kotlin/kotlin/users/create.md index 09d286233..9b32e6cad 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/create.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/delete-identity.md b/examples/1.9.x/server-kotlin/kotlin/users/delete-identity.md index 1953d4efb..b761fd9cc 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/delete-identity.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/delete-identity.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/delete-mfa-authenticator.md b/examples/1.9.x/server-kotlin/kotlin/users/delete-mfa-authenticator.md index a8add4152..02d21d395 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ import io.appwrite.services.Users import io.appwrite.enums.AuthenticatorType val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/delete-session.md b/examples/1.9.x/server-kotlin/kotlin/users/delete-session.md index 4d17c24ac..121dd463e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/delete-session.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/delete-session.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/delete-sessions.md b/examples/1.9.x/server-kotlin/kotlin/users/delete-sessions.md index 843285f7f..f84f84f58 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/delete-sessions.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/delete-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/delete-target.md b/examples/1.9.x/server-kotlin/kotlin/users/delete-target.md index 650678a9a..a1d7292db 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/delete-target.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/delete-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/delete.md b/examples/1.9.x/server-kotlin/kotlin/users/delete.md index 088727d03..4b370a837 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/kotlin/users/get-mfa-recovery-codes.md index 1215a91b8..580c1364c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/get-prefs.md b/examples/1.9.x/server-kotlin/kotlin/users/get-prefs.md index 896c87084..6193b7bf5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/get-prefs.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/get-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/get-target.md b/examples/1.9.x/server-kotlin/kotlin/users/get-target.md index 94e19177d..093bccee6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/get-target.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/get-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/get.md b/examples/1.9.x/server-kotlin/kotlin/users/get.md index 9d24b9834..1017b09ea 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/list-identities.md b/examples/1.9.x/server-kotlin/kotlin/users/list-identities.md index e745da3d2..8e3ff8e75 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/list-identities.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/list-identities.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/list-logs.md b/examples/1.9.x/server-kotlin/kotlin/users/list-logs.md index 070c96d07..df5f035e2 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/list-logs.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/list-logs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/list-memberships.md b/examples/1.9.x/server-kotlin/kotlin/users/list-memberships.md index 3d001fde4..b3cc4a2f6 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/list-memberships.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/list-memberships.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/list-mfa-factors.md b/examples/1.9.x/server-kotlin/kotlin/users/list-mfa-factors.md index ee17cc096..0a262e799 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/list-mfa-factors.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/list-mfa-factors.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/list-sessions.md b/examples/1.9.x/server-kotlin/kotlin/users/list-sessions.md index 05d002479..fde2dce26 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/list-sessions.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/list-sessions.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/list-targets.md b/examples/1.9.x/server-kotlin/kotlin/users/list-targets.md index bb026ed8f..4c5dba91c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/list-targets.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/list-targets.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/list.md b/examples/1.9.x/server-kotlin/kotlin/users/list.md index 4cc3195f2..f822f0987 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-email-verification.md b/examples/1.9.x/server-kotlin/kotlin/users/update-email-verification.md index f30e40159..b57f0629d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-email-verification.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-email-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-email.md b/examples/1.9.x/server-kotlin/kotlin/users/update-email.md index 7642a957d..70f7bfc0e 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-email.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-email.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-impersonator.md b/examples/1.9.x/server-kotlin/kotlin/users/update-impersonator.md index 58a8e6ef4..4769a796f 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-impersonator.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-impersonator.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-labels.md b/examples/1.9.x/server-kotlin/kotlin/users/update-labels.md index 3d88c7aff..e209fd2d8 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-labels.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-labels.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-kotlin/kotlin/users/update-mfa-recovery-codes.md index 642f1525a..c447397ca 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-mfa.md b/examples/1.9.x/server-kotlin/kotlin/users/update-mfa.md index 1cde68adc..89873b84d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-mfa.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-mfa.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-name.md b/examples/1.9.x/server-kotlin/kotlin/users/update-name.md index beb53d55d..0f285fe6d 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-name.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-name.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-password.md b/examples/1.9.x/server-kotlin/kotlin/users/update-password.md index 5930f5ebe..cde0c6f48 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-password.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-password.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-phone-verification.md b/examples/1.9.x/server-kotlin/kotlin/users/update-phone-verification.md index f574b2623..c323b97b0 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-phone-verification.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-phone-verification.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-phone.md b/examples/1.9.x/server-kotlin/kotlin/users/update-phone.md index 855a459da..e47a75c95 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-phone.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-phone.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-prefs.md b/examples/1.9.x/server-kotlin/kotlin/users/update-prefs.md index 8d610eb6e..506957a80 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-prefs.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-prefs.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-status.md b/examples/1.9.x/server-kotlin/kotlin/users/update-status.md index 600bd6faf..46e7a296c 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-status.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-status.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/users/update-target.md b/examples/1.9.x/server-kotlin/kotlin/users/update-target.md index 55f0f9732..24022165a 100644 --- a/examples/1.9.x/server-kotlin/kotlin/users/update-target.md +++ b/examples/1.9.x/server-kotlin/kotlin/users/update-target.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Users val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/webhooks/create.md b/examples/1.9.x/server-kotlin/kotlin/webhooks/create.md index 989c5c1c7..3b82699b1 100644 --- a/examples/1.9.x/server-kotlin/kotlin/webhooks/create.md +++ b/examples/1.9.x/server-kotlin/kotlin/webhooks/create.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Webhooks val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/webhooks/delete.md b/examples/1.9.x/server-kotlin/kotlin/webhooks/delete.md index 6f381c2b6..16f5d57fb 100644 --- a/examples/1.9.x/server-kotlin/kotlin/webhooks/delete.md +++ b/examples/1.9.x/server-kotlin/kotlin/webhooks/delete.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Webhooks val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/webhooks/get.md b/examples/1.9.x/server-kotlin/kotlin/webhooks/get.md index 1f82c0b2d..2fba21e45 100644 --- a/examples/1.9.x/server-kotlin/kotlin/webhooks/get.md +++ b/examples/1.9.x/server-kotlin/kotlin/webhooks/get.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Webhooks val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/webhooks/list.md b/examples/1.9.x/server-kotlin/kotlin/webhooks/list.md index f3f9f23d7..470ca8ab5 100644 --- a/examples/1.9.x/server-kotlin/kotlin/webhooks/list.md +++ b/examples/1.9.x/server-kotlin/kotlin/webhooks/list.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Webhooks val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/webhooks/update-secret.md b/examples/1.9.x/server-kotlin/kotlin/webhooks/update-secret.md index 08e58452a..5f9adfb59 100644 --- a/examples/1.9.x/server-kotlin/kotlin/webhooks/update-secret.md +++ b/examples/1.9.x/server-kotlin/kotlin/webhooks/update-secret.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Webhooks val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-kotlin/kotlin/webhooks/update.md b/examples/1.9.x/server-kotlin/kotlin/webhooks/update.md index 498cf6739..d35c7af17 100644 --- a/examples/1.9.x/server-kotlin/kotlin/webhooks/update.md +++ b/examples/1.9.x/server-kotlin/kotlin/webhooks/update.md @@ -4,7 +4,7 @@ import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Webhooks val client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/account/create-anonymous-session.md b/examples/1.9.x/server-nodejs/examples/account/create-anonymous-session.md index 036df9b94..ab05d0726 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-anonymous-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-email-password-session.md b/examples/1.9.x/server-nodejs/examples/account/create-email-password-session.md index 125d73bb9..32ee0a779 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-email-password-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-email-token.md b/examples/1.9.x/server-nodejs/examples/account/create-email-token.md index cebf1f610..70df18db8 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-email-token.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-email-token.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-email-verification.md b/examples/1.9.x/server-nodejs/examples/account/create-email-verification.md index 6c74da96b..5f8712c40 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-email-verification.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-jwt.md b/examples/1.9.x/server-nodejs/examples/account/create-jwt.md index c7204e0f4..f4e3316b1 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-jwt.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-jwt.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-magic-url-token.md b/examples/1.9.x/server-nodejs/examples/account/create-magic-url-token.md index ee5f1432a..04268f9ae 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-magic-url-token.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-nodejs/examples/account/create-mfa-authenticator.md index 25081e27a..77643942c 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-mfa-authenticator.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-nodejs/examples/account/create-mfa-challenge.md index af4e04484..92b0d490c 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-mfa-challenge.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-nodejs/examples/account/create-mfa-recovery-codes.md index 5e8e4021b..e39c93360 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-nodejs/examples/account/create-o-auth-2-token.md index 7bc8a2433..0b7812408 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-o-auth-2-token.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-phone-token.md b/examples/1.9.x/server-nodejs/examples/account/create-phone-token.md index 999f3e10e..8d0778f12 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-phone-token.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-phone-verification.md b/examples/1.9.x/server-nodejs/examples/account/create-phone-verification.md index 05708153e..eb4aa0d36 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-phone-verification.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-recovery.md b/examples/1.9.x/server-nodejs/examples/account/create-recovery.md index 4dd41d7eb..495055264 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-recovery.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-recovery.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-session.md b/examples/1.9.x/server-nodejs/examples/account/create-session.md index 3ab786f9e..e90e1a574 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-session.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create-verification.md b/examples/1.9.x/server-nodejs/examples/account/create-verification.md index 95dec7e34..41b4e3fed 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create-verification.md +++ b/examples/1.9.x/server-nodejs/examples/account/create-verification.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/create.md b/examples/1.9.x/server-nodejs/examples/account/create.md index db31f30b8..ef22340ff 100644 --- a/examples/1.9.x/server-nodejs/examples/account/create.md +++ b/examples/1.9.x/server-nodejs/examples/account/create.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/delete-identity.md b/examples/1.9.x/server-nodejs/examples/account/delete-identity.md index 53a043bf4..e18d4a58f 100644 --- a/examples/1.9.x/server-nodejs/examples/account/delete-identity.md +++ b/examples/1.9.x/server-nodejs/examples/account/delete-identity.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-nodejs/examples/account/delete-mfa-authenticator.md index 18522f2d0..67408fc6f 100644 --- a/examples/1.9.x/server-nodejs/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-nodejs/examples/account/delete-mfa-authenticator.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/delete-session.md b/examples/1.9.x/server-nodejs/examples/account/delete-session.md index 7fe49e3ff..7d196d6b9 100644 --- a/examples/1.9.x/server-nodejs/examples/account/delete-session.md +++ b/examples/1.9.x/server-nodejs/examples/account/delete-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/delete-sessions.md b/examples/1.9.x/server-nodejs/examples/account/delete-sessions.md index 912575cea..e7379f78b 100644 --- a/examples/1.9.x/server-nodejs/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-nodejs/examples/account/delete-sessions.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-nodejs/examples/account/get-mfa-recovery-codes.md index cb08fe7cd..45a74fade 100644 --- a/examples/1.9.x/server-nodejs/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-nodejs/examples/account/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/get-prefs.md b/examples/1.9.x/server-nodejs/examples/account/get-prefs.md index 67edf19fa..6da702a31 100644 --- a/examples/1.9.x/server-nodejs/examples/account/get-prefs.md +++ b/examples/1.9.x/server-nodejs/examples/account/get-prefs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/get-session.md b/examples/1.9.x/server-nodejs/examples/account/get-session.md index dab815951..1d4253586 100644 --- a/examples/1.9.x/server-nodejs/examples/account/get-session.md +++ b/examples/1.9.x/server-nodejs/examples/account/get-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/get.md b/examples/1.9.x/server-nodejs/examples/account/get.md index e755aa46f..4cdf2ec2d 100644 --- a/examples/1.9.x/server-nodejs/examples/account/get.md +++ b/examples/1.9.x/server-nodejs/examples/account/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/list-identities.md b/examples/1.9.x/server-nodejs/examples/account/list-identities.md index 00d60b9ee..1c46d5a30 100644 --- a/examples/1.9.x/server-nodejs/examples/account/list-identities.md +++ b/examples/1.9.x/server-nodejs/examples/account/list-identities.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/list-logs.md b/examples/1.9.x/server-nodejs/examples/account/list-logs.md index d7e893314..6b12ea6d9 100644 --- a/examples/1.9.x/server-nodejs/examples/account/list-logs.md +++ b/examples/1.9.x/server-nodejs/examples/account/list-logs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/list-mfa-factors.md b/examples/1.9.x/server-nodejs/examples/account/list-mfa-factors.md index 313621904..b6d3e80a0 100644 --- a/examples/1.9.x/server-nodejs/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-nodejs/examples/account/list-mfa-factors.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/list-sessions.md b/examples/1.9.x/server-nodejs/examples/account/list-sessions.md index 0bbd093e9..1c9a0d6c7 100644 --- a/examples/1.9.x/server-nodejs/examples/account/list-sessions.md +++ b/examples/1.9.x/server-nodejs/examples/account/list-sessions.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-email-verification.md b/examples/1.9.x/server-nodejs/examples/account/update-email-verification.md index 4fd5953b9..04ebedad8 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-email-verification.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-email.md b/examples/1.9.x/server-nodejs/examples/account/update-email.md index 985c189bc..2f186191c 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-email.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-email.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-magic-url-session.md b/examples/1.9.x/server-nodejs/examples/account/update-magic-url-session.md index 1811200af..f5502b60a 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-magic-url-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-nodejs/examples/account/update-mfa-authenticator.md index fa34ef459..9df93866d 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-mfa-authenticator.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-nodejs/examples/account/update-mfa-challenge.md index a584356b9..cf747cc6e 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-mfa-challenge.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-nodejs/examples/account/update-mfa-recovery-codes.md index c893c231f..98ebae60f 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-mfa.md b/examples/1.9.x/server-nodejs/examples/account/update-mfa.md index 38604a3bb..3724f80de 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-mfa.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-mfa.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-name.md b/examples/1.9.x/server-nodejs/examples/account/update-name.md index 24fb8692e..4bc42cba2 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-name.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-name.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-password.md b/examples/1.9.x/server-nodejs/examples/account/update-password.md index f6b7bb54e..628eb0645 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-password.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-password.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-phone-session.md b/examples/1.9.x/server-nodejs/examples/account/update-phone-session.md index 204c33a7c..2261b5085 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-phone-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-phone-verification.md b/examples/1.9.x/server-nodejs/examples/account/update-phone-verification.md index c5e1abd32..f637a27ac 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-phone-verification.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-phone.md b/examples/1.9.x/server-nodejs/examples/account/update-phone.md index c67630229..3a89f89cb 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-phone.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-phone.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-prefs.md b/examples/1.9.x/server-nodejs/examples/account/update-prefs.md index 65c70e0ee..bce1c7228 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-prefs.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-prefs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-recovery.md b/examples/1.9.x/server-nodejs/examples/account/update-recovery.md index 268f3e979..789c877e6 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-recovery.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-recovery.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-session.md b/examples/1.9.x/server-nodejs/examples/account/update-session.md index 9dfcbf26a..6eb82b607 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-session.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-status.md b/examples/1.9.x/server-nodejs/examples/account/update-status.md index ffb3f25e0..d6bbed30f 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-status.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-status.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/account/update-verification.md b/examples/1.9.x/server-nodejs/examples/account/update-verification.md index 0486ce395..6f293cffd 100644 --- a/examples/1.9.x/server-nodejs/examples/account/update-verification.md +++ b/examples/1.9.x/server-nodejs/examples/account/update-verification.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/activities/get-event.md b/examples/1.9.x/server-nodejs/examples/activities/get-event.md index da7c261f8..d86ff7282 100644 --- a/examples/1.9.x/server-nodejs/examples/activities/get-event.md +++ b/examples/1.9.x/server-nodejs/examples/activities/get-event.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/activities/list-events.md b/examples/1.9.x/server-nodejs/examples/activities/list-events.md index 11407e89a..17b23e858 100644 --- a/examples/1.9.x/server-nodejs/examples/activities/list-events.md +++ b/examples/1.9.x/server-nodejs/examples/activities/list-events.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/advisor/delete-report.md b/examples/1.9.x/server-nodejs/examples/advisor/delete-report.md index 8169db077..66d435af6 100644 --- a/examples/1.9.x/server-nodejs/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-nodejs/examples/advisor/delete-report.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/advisor/get-insight.md b/examples/1.9.x/server-nodejs/examples/advisor/get-insight.md index 7a625d28e..05af42f2b 100644 --- a/examples/1.9.x/server-nodejs/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-nodejs/examples/advisor/get-insight.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/advisor/get-report.md b/examples/1.9.x/server-nodejs/examples/advisor/get-report.md index abd111c0f..e59cd8607 100644 --- a/examples/1.9.x/server-nodejs/examples/advisor/get-report.md +++ b/examples/1.9.x/server-nodejs/examples/advisor/get-report.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/advisor/list-insights.md b/examples/1.9.x/server-nodejs/examples/advisor/list-insights.md index a4adefac3..8602f2485 100644 --- a/examples/1.9.x/server-nodejs/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-nodejs/examples/advisor/list-insights.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/advisor/list-reports.md b/examples/1.9.x/server-nodejs/examples/advisor/list-reports.md index 6fa66f103..a749f7cd7 100644 --- a/examples/1.9.x/server-nodejs/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-nodejs/examples/advisor/list-reports.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/avatars/get-browser.md b/examples/1.9.x/server-nodejs/examples/avatars/get-browser.md index 6ffb388d5..c4d6c7cde 100644 --- a/examples/1.9.x/server-nodejs/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-nodejs/examples/avatars/get-browser.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/avatars/get-credit-card.md b/examples/1.9.x/server-nodejs/examples/avatars/get-credit-card.md index ea806baff..462979e8d 100644 --- a/examples/1.9.x/server-nodejs/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-nodejs/examples/avatars/get-credit-card.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/avatars/get-favicon.md b/examples/1.9.x/server-nodejs/examples/avatars/get-favicon.md index bd9ae2caa..6557276af 100644 --- a/examples/1.9.x/server-nodejs/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-nodejs/examples/avatars/get-favicon.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/avatars/get-flag.md b/examples/1.9.x/server-nodejs/examples/avatars/get-flag.md index d05b666bc..1e58675b6 100644 --- a/examples/1.9.x/server-nodejs/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-nodejs/examples/avatars/get-flag.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/avatars/get-image.md b/examples/1.9.x/server-nodejs/examples/avatars/get-image.md index 6f013db19..2f9ff1603 100644 --- a/examples/1.9.x/server-nodejs/examples/avatars/get-image.md +++ b/examples/1.9.x/server-nodejs/examples/avatars/get-image.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/avatars/get-initials.md b/examples/1.9.x/server-nodejs/examples/avatars/get-initials.md index 3d35c6df9..68e4796a8 100644 --- a/examples/1.9.x/server-nodejs/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-nodejs/examples/avatars/get-initials.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/avatars/get-qr.md b/examples/1.9.x/server-nodejs/examples/avatars/get-qr.md index e4235a38e..c491e196f 100644 --- a/examples/1.9.x/server-nodejs/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-nodejs/examples/avatars/get-qr.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/avatars/get-screenshot.md b/examples/1.9.x/server-nodejs/examples/avatars/get-screenshot.md index 5e142a5c7..5a4953717 100644 --- a/examples/1.9.x/server-nodejs/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-nodejs/examples/avatars/get-screenshot.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with @@ -17,7 +17,7 @@ const result = await avatars.getScreenshot({ viewportWidth: 1920, // optional viewportHeight: 1080, // optional scale: 2, // optional - theme: sdk.Theme.Dark, // optional + theme: sdk.BrowserTheme.Dark, // optional userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', // optional fullpage: true, // optional locale: 'en-US', // optional diff --git a/examples/1.9.x/server-nodejs/examples/backups/create-archive.md b/examples/1.9.x/server-nodejs/examples/backups/create-archive.md index 1a11d4599..1af8e6460 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/create-archive.md +++ b/examples/1.9.x/server-nodejs/examples/backups/create-archive.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/create-policy.md b/examples/1.9.x/server-nodejs/examples/backups/create-policy.md index 716709293..61ddcf4a0 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/create-policy.md +++ b/examples/1.9.x/server-nodejs/examples/backups/create-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/create-restoration.md b/examples/1.9.x/server-nodejs/examples/backups/create-restoration.md index f41a2344f..85548918a 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-nodejs/examples/backups/create-restoration.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/delete-archive.md b/examples/1.9.x/server-nodejs/examples/backups/delete-archive.md index f0c5615d4..47e872721 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-nodejs/examples/backups/delete-archive.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/delete-policy.md b/examples/1.9.x/server-nodejs/examples/backups/delete-policy.md index 493e89ef5..97a0f9cf5 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-nodejs/examples/backups/delete-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/get-archive.md b/examples/1.9.x/server-nodejs/examples/backups/get-archive.md index ade4e2229..d4282a3bc 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/get-archive.md +++ b/examples/1.9.x/server-nodejs/examples/backups/get-archive.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/get-policy.md b/examples/1.9.x/server-nodejs/examples/backups/get-policy.md index 391c01960..920d10737 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/get-policy.md +++ b/examples/1.9.x/server-nodejs/examples/backups/get-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/get-restoration.md b/examples/1.9.x/server-nodejs/examples/backups/get-restoration.md index 46d18f3ab..d2966e854 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-nodejs/examples/backups/get-restoration.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/list-archives.md b/examples/1.9.x/server-nodejs/examples/backups/list-archives.md index d6f51c56a..a4640b695 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/list-archives.md +++ b/examples/1.9.x/server-nodejs/examples/backups/list-archives.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/list-policies.md b/examples/1.9.x/server-nodejs/examples/backups/list-policies.md index 7f87b1d68..90e76df00 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/list-policies.md +++ b/examples/1.9.x/server-nodejs/examples/backups/list-policies.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/list-restorations.md b/examples/1.9.x/server-nodejs/examples/backups/list-restorations.md index 4475a17d3..48a580bf2 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-nodejs/examples/backups/list-restorations.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/backups/update-policy.md b/examples/1.9.x/server-nodejs/examples/backups/update-policy.md index 5912b39f0..9229e8043 100644 --- a/examples/1.9.x/server-nodejs/examples/backups/update-policy.md +++ b/examples/1.9.x/server-nodejs/examples/backups/update-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-big-int-attribute.md index 3d40ce753..04d91a82a 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-big-int-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-boolean-attribute.md index 606ca49c0..36231b585 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-boolean-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-collection.md b/examples/1.9.x/server-nodejs/examples/databases/create-collection.md index b58e0919f..a1ab01700 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-collection.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-collection.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-datetime-attribute.md index 361ee95e7..4ad277365 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-datetime-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-document.md b/examples/1.9.x/server-nodejs/examples/databases/create-document.md index 3c38b69e8..bcd69442d 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-document.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-document.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-documents.md b/examples/1.9.x/server-nodejs/examples/databases/create-documents.md index 60f4eab87..fd635bb31 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-documents.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-documents.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-email-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-email-attribute.md index 13382c3da..ef11743e6 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-email-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-enum-attribute.md index fe7abce4b..fce1b0e30 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-enum-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-float-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-float-attribute.md index f179528f8..0d41b7444 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-float-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-index.md b/examples/1.9.x/server-nodejs/examples/databases/create-index.md index ba3bf3a65..0459ba0b0 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-index.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-index.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-integer-attribute.md index d0dbed90e..798b70e3d 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-integer-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-ip-attribute.md index c21ad5416..c133e0872 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-ip-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-line-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-line-attribute.md index 8d615095e..4e53c49d6 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-line-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-longtext-attribute.md index b49077eea..6392fe46e 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-longtext-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-mediumtext-attribute.md index 44d9199f9..f575a7f2c 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-mediumtext-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-operations.md b/examples/1.9.x/server-nodejs/examples/databases/create-operations.md index 06a3c468c..8343fcaf9 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-operations.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-operations.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-point-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-point-attribute.md index 57058752b..b534641bd 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-point-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-polygon-attribute.md index f3562ab48..59e395de9 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-polygon-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-relationship-attribute.md index 30d4dfd78..7381cc531 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-relationship-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-string-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-string-attribute.md index e0c2cdb4a..844366426 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-string-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-text-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-text-attribute.md index 48fd6ded2..809f64593 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-text-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-transaction.md b/examples/1.9.x/server-nodejs/examples/databases/create-transaction.md index 8785149a5..0833cd0cc 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-transaction.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-url-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-url-attribute.md index f0d1a29aa..5916eed3f 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-url-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/create-varchar-attribute.md index 645827475..7f1edc884 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create-varchar-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/create.md b/examples/1.9.x/server-nodejs/examples/databases/create.md index d35731b67..deec40e52 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/create.md +++ b/examples/1.9.x/server-nodejs/examples/databases/create.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/decrement-document-attribute.md index 80fe2486a..6ec0c89b5 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/decrement-document-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/databases/delete-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/delete-attribute.md index 30501051a..da113fd06 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/delete-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/delete-collection.md b/examples/1.9.x/server-nodejs/examples/databases/delete-collection.md index 2da5c2054..5acfc7af9 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-nodejs/examples/databases/delete-collection.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/delete-document.md b/examples/1.9.x/server-nodejs/examples/databases/delete-document.md index 22bc7143a..d1a7d8664 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/delete-document.md +++ b/examples/1.9.x/server-nodejs/examples/databases/delete-document.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/databases/delete-documents.md b/examples/1.9.x/server-nodejs/examples/databases/delete-documents.md index 4851243e5..f481164a6 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-nodejs/examples/databases/delete-documents.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/delete-index.md b/examples/1.9.x/server-nodejs/examples/databases/delete-index.md index b7a8f0c3a..ba79e62fd 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/delete-index.md +++ b/examples/1.9.x/server-nodejs/examples/databases/delete-index.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/delete-transaction.md b/examples/1.9.x/server-nodejs/examples/databases/delete-transaction.md index b89214ba9..65fe179c1 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-nodejs/examples/databases/delete-transaction.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/delete.md b/examples/1.9.x/server-nodejs/examples/databases/delete.md index 000094853..ac6c2ebfe 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/delete.md +++ b/examples/1.9.x/server-nodejs/examples/databases/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/get-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/get-attribute.md index eade77ddf..a6b130d98 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/get-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/get-collection.md b/examples/1.9.x/server-nodejs/examples/databases/get-collection.md index 8b96abafb..d9c2572da 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/get-collection.md +++ b/examples/1.9.x/server-nodejs/examples/databases/get-collection.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/get-document.md b/examples/1.9.x/server-nodejs/examples/databases/get-document.md index 9a66df4fa..0b0bc3f32 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/get-document.md +++ b/examples/1.9.x/server-nodejs/examples/databases/get-document.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/databases/get-index.md b/examples/1.9.x/server-nodejs/examples/databases/get-index.md index 1900b0f5a..cf789360f 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/get-index.md +++ b/examples/1.9.x/server-nodejs/examples/databases/get-index.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/get-transaction.md b/examples/1.9.x/server-nodejs/examples/databases/get-transaction.md index 09c0255a0..7135805e2 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-nodejs/examples/databases/get-transaction.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/get.md b/examples/1.9.x/server-nodejs/examples/databases/get.md index 9533a738e..993e8908d 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/get.md +++ b/examples/1.9.x/server-nodejs/examples/databases/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/increment-document-attribute.md index cb24d7049..9128f4875 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/increment-document-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/databases/list-attributes.md b/examples/1.9.x/server-nodejs/examples/databases/list-attributes.md index 635391cdd..e161801f4 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-nodejs/examples/databases/list-attributes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/list-collections.md b/examples/1.9.x/server-nodejs/examples/databases/list-collections.md index 38f1f3ebb..110ad943a 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/list-collections.md +++ b/examples/1.9.x/server-nodejs/examples/databases/list-collections.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/list-documents.md b/examples/1.9.x/server-nodejs/examples/databases/list-documents.md index 11fcec2d7..e1122d386 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/list-documents.md +++ b/examples/1.9.x/server-nodejs/examples/databases/list-documents.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/databases/list-indexes.md b/examples/1.9.x/server-nodejs/examples/databases/list-indexes.md index c64110925..732f35ee0 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-nodejs/examples/databases/list-indexes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/list-transactions.md b/examples/1.9.x/server-nodejs/examples/databases/list-transactions.md index 4707b1313..a3d7c4826 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-nodejs/examples/databases/list-transactions.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/list.md b/examples/1.9.x/server-nodejs/examples/databases/list.md index d88d05ee9..4c4dfd2ff 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/list.md +++ b/examples/1.9.x/server-nodejs/examples/databases/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-big-int-attribute.md index 1ff012a52..ec439f0dd 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-big-int-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-boolean-attribute.md index c9b165e93..59d4f3564 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-boolean-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-collection.md b/examples/1.9.x/server-nodejs/examples/databases/update-collection.md index f7f65c329..bee3a65fa 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-collection.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-collection.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-datetime-attribute.md index 6c65696b0..fc9d474fb 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-datetime-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-document.md b/examples/1.9.x/server-nodejs/examples/databases/update-document.md index cae4ccfe9..cdc633946 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-document.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-document.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-documents.md b/examples/1.9.x/server-nodejs/examples/databases/update-documents.md index 168074c14..7e9d3656b 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-documents.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-documents.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-email-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-email-attribute.md index fa6c43197..8c821090a 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-email-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-enum-attribute.md index 0fc74cdff..cb7ccc141 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-enum-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-float-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-float-attribute.md index 894ab6657..7351c36db 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-float-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-integer-attribute.md index 10ddb38f0..a0d696d7b 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-integer-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-ip-attribute.md index 5e53e5d76..b036bd439 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-ip-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-line-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-line-attribute.md index c106a0359..3999a2da7 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-line-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-longtext-attribute.md index d21f39881..d30c4c080 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-longtext-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-mediumtext-attribute.md index 25857d5df..bb70239c3 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-mediumtext-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-point-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-point-attribute.md index 96a4ae857..8f47328b1 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-point-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-polygon-attribute.md index 72828a8ab..150ca7202 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-polygon-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-relationship-attribute.md index 9dc8ebd79..db17cbd88 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-relationship-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-string-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-string-attribute.md index 1c509d28e..76bae46fe 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-string-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-text-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-text-attribute.md index 3154f5a9a..bc52e1012 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-text-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-transaction.md b/examples/1.9.x/server-nodejs/examples/databases/update-transaction.md index a83cb03ba..5da62b678 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-transaction.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-url-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-url-attribute.md index 1cebc2f46..f17859f1d 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-url-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-nodejs/examples/databases/update-varchar-attribute.md index 43a1cf038..dfa83516a 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update-varchar-attribute.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/update.md b/examples/1.9.x/server-nodejs/examples/databases/update.md index 36ff3bd1a..ad057975b 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/update.md +++ b/examples/1.9.x/server-nodejs/examples/databases/update.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/databases/upsert-document.md b/examples/1.9.x/server-nodejs/examples/databases/upsert-document.md index 13e882ad7..07882af73 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-nodejs/examples/databases/upsert-document.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/databases/upsert-documents.md b/examples/1.9.x/server-nodejs/examples/databases/upsert-documents.md index 2a3049243..195f17b09 100644 --- a/examples/1.9.x/server-nodejs/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-nodejs/examples/databases/upsert-documents.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/create-deployment.md b/examples/1.9.x/server-nodejs/examples/functions/create-deployment.md index 0cd67cbfb..a187b1fdb 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/functions/create-deployment.md @@ -3,7 +3,7 @@ const sdk = require('node-appwrite'); const fs = require('fs'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-nodejs/examples/functions/create-duplicate-deployment.md index f5abb222d..08f5eb192 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/functions/create-duplicate-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/create-execution.md b/examples/1.9.x/server-nodejs/examples/functions/create-execution.md index f93d87e42..91eb87bb5 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/create-execution.md +++ b/examples/1.9.x/server-nodejs/examples/functions/create-execution.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/functions/create-template-deployment.md b/examples/1.9.x/server-nodejs/examples/functions/create-template-deployment.md index 20977559b..d2ca7171b 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/functions/create-template-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/create-variable.md b/examples/1.9.x/server-nodejs/examples/functions/create-variable.md index 21246bbe4..d2186df5d 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/create-variable.md +++ b/examples/1.9.x/server-nodejs/examples/functions/create-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-nodejs/examples/functions/create-vcs-deployment.md index 4bf9d23ba..de1ff369d 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/functions/create-vcs-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/create.md b/examples/1.9.x/server-nodejs/examples/functions/create.md index 4e3d5e953..491fde950 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/create.md +++ b/examples/1.9.x/server-nodejs/examples/functions/create.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -11,7 +11,7 @@ const functions = new sdk.Functions(client); const result = await functions.create({ functionId: '', name: '', - runtime: sdk.Runtime.Node145, + runtime: sdk.FunctionRuntime.Node145, execute: ["any"], // optional events: [], // optional schedule: '', // optional @@ -20,12 +20,14 @@ const result = await functions.create({ logging: false, // optional entrypoint: '', // optional commands: '', // optional - scopes: [sdk.Scopes.ProjectRead], // optional + scopes: [sdk.ProjectKeyScopes.ProjectRead], // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-nodejs/examples/functions/delete-deployment.md b/examples/1.9.x/server-nodejs/examples/functions/delete-deployment.md index 20120ebd1..ae5bfcde1 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/functions/delete-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/delete-execution.md b/examples/1.9.x/server-nodejs/examples/functions/delete-execution.md index 4d78ad9c5..4cbae4ab6 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-nodejs/examples/functions/delete-execution.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/delete-variable.md b/examples/1.9.x/server-nodejs/examples/functions/delete-variable.md index b8ed9d548..6c945fef1 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-nodejs/examples/functions/delete-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/delete.md b/examples/1.9.x/server-nodejs/examples/functions/delete.md index 446ca2a5a..c461099e4 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/delete.md +++ b/examples/1.9.x/server-nodejs/examples/functions/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/get-deployment-download.md b/examples/1.9.x/server-nodejs/examples/functions/get-deployment-download.md index 5e9a956d0..a8da54424 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-nodejs/examples/functions/get-deployment-download.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/get-deployment.md b/examples/1.9.x/server-nodejs/examples/functions/get-deployment.md index 29d9b2e65..01a514e06 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/functions/get-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/get-execution.md b/examples/1.9.x/server-nodejs/examples/functions/get-execution.md index c987772de..6776f2192 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/get-execution.md +++ b/examples/1.9.x/server-nodejs/examples/functions/get-execution.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/functions/get-variable.md b/examples/1.9.x/server-nodejs/examples/functions/get-variable.md index abc2e91dd..b798265d4 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/get-variable.md +++ b/examples/1.9.x/server-nodejs/examples/functions/get-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/get.md b/examples/1.9.x/server-nodejs/examples/functions/get.md index 97050f04e..142ba3a10 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/get.md +++ b/examples/1.9.x/server-nodejs/examples/functions/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/list-deployments.md b/examples/1.9.x/server-nodejs/examples/functions/list-deployments.md index c53aaa45e..3daa7db05 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-nodejs/examples/functions/list-deployments.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/list-executions.md b/examples/1.9.x/server-nodejs/examples/functions/list-executions.md index b549100f8..abd11ee84 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/list-executions.md +++ b/examples/1.9.x/server-nodejs/examples/functions/list-executions.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/functions/list-runtimes.md b/examples/1.9.x/server-nodejs/examples/functions/list-runtimes.md index fdaefd3ae..b878a2724 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-nodejs/examples/functions/list-runtimes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/list-specifications.md b/examples/1.9.x/server-nodejs/examples/functions/list-specifications.md index 0fc8b8d75..edf09d45b 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-nodejs/examples/functions/list-specifications.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/list-variables.md b/examples/1.9.x/server-nodejs/examples/functions/list-variables.md index d09e5d050..e42b8a46c 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/list-variables.md +++ b/examples/1.9.x/server-nodejs/examples/functions/list-variables.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/list.md b/examples/1.9.x/server-nodejs/examples/functions/list.md index faeeaae7b..03575beca 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/list.md +++ b/examples/1.9.x/server-nodejs/examples/functions/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/update-deployment-status.md b/examples/1.9.x/server-nodejs/examples/functions/update-deployment-status.md index 5d45a02ab..d709cdedb 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-nodejs/examples/functions/update-deployment-status.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/update-function-deployment.md b/examples/1.9.x/server-nodejs/examples/functions/update-function-deployment.md index 0dfd06f58..a59868143 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/functions/update-function-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/update-variable.md b/examples/1.9.x/server-nodejs/examples/functions/update-variable.md index e0bdec981..f088fb516 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/update-variable.md +++ b/examples/1.9.x/server-nodejs/examples/functions/update-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/functions/update.md b/examples/1.9.x/server-nodejs/examples/functions/update.md index fe60cad38..ba3eadd4c 100644 --- a/examples/1.9.x/server-nodejs/examples/functions/update.md +++ b/examples/1.9.x/server-nodejs/examples/functions/update.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -11,7 +11,7 @@ const functions = new sdk.Functions(client); const result = await functions.update({ functionId: '', name: '', - runtime: sdk.Runtime.Node145, // optional + runtime: sdk.FunctionRuntime.Node145, // optional execute: ["any"], // optional events: [], // optional schedule: '', // optional @@ -20,12 +20,14 @@ const result = await functions.update({ logging: false, // optional entrypoint: '', // optional commands: '', // optional - scopes: [sdk.Scopes.ProjectRead], // optional + scopes: [sdk.ProjectKeyScopes.ProjectRead], // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-nodejs/examples/graphql/mutation.md b/examples/1.9.x/server-nodejs/examples/graphql/mutation.md index 31aa4bf34..26ae64f43 100644 --- a/examples/1.9.x/server-nodejs/examples/graphql/mutation.md +++ b/examples/1.9.x/server-nodejs/examples/graphql/mutation.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/graphql/query.md b/examples/1.9.x/server-nodejs/examples/graphql/query.md index 3bd436e06..9aadd1382 100644 --- a/examples/1.9.x/server-nodejs/examples/graphql/query.md +++ b/examples/1.9.x/server-nodejs/examples/graphql/query.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-antivirus.md b/examples/1.9.x/server-nodejs/examples/health/get-antivirus.md index 3f0c83457..3febdc00e 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-antivirus.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-cache.md b/examples/1.9.x/server-nodejs/examples/health/get-cache.md index a9525064d..00275fc41 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-cache.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-cache.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-certificate.md b/examples/1.9.x/server-nodejs/examples/health/get-certificate.md index 571b3cdcd..943d6eaad 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-certificate.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-certificate.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-console-pausing.md b/examples/1.9.x/server-nodejs/examples/health/get-console-pausing.md index a3dfca6fc..dbf1630cb 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-console-pausing.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-db.md b/examples/1.9.x/server-nodejs/examples/health/get-db.md index 45a840c99..c91e42325 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-db.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-db.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-failed-jobs.md b/examples/1.9.x/server-nodejs/examples/health/get-failed-jobs.md index e495453ce..2aa7b83be 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-failed-jobs.md @@ -2,14 +2,14 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key const health = new sdk.Health(client); const result = await health.getFailedJobs({ - name: sdk.Name.V1Database, + name: sdk.HealthQueueName.V1Database, threshold: null // optional }); ``` diff --git a/examples/1.9.x/server-nodejs/examples/health/get-pub-sub.md b/examples/1.9.x/server-nodejs/examples/health/get-pub-sub.md index c03bb59ed..e72cfca6e 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-pub-sub.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-audits.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-audits.md index dcc7c6ce8..e8744266f 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-audits.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-builds.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-builds.md index da49e0201..eb9b315b9 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-builds.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-certificates.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-certificates.md index ef065d597..d74818b71 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-certificates.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-databases.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-databases.md index 181621ec5..c345e3520 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-databases.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-deletes.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-deletes.md index e1b5bc008..876f5044c 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-deletes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-functions.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-functions.md index f40904a2d..bbafdbc85 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-functions.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-logs.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-logs.md index 437a86b01..91f0934d5 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-logs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-mails.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-mails.md index 3da627b86..e205cd6df 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-mails.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-messaging.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-messaging.md index 504ad1de4..5be92b045 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-messaging.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-migrations.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-migrations.md index 59e45509e..7c6c47945 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-migrations.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-stats-resources.md index 542d11e04..4300bfb34 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-stats-resources.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-usage.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-usage.md index 86dbfb83b..6c238ae1a 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-usage.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-nodejs/examples/health/get-queue-webhooks.md index 36c3037a1..d2f153e66 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-queue-webhooks.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-storage-local.md b/examples/1.9.x/server-nodejs/examples/health/get-storage-local.md index 159333949..d144989ec 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-storage-local.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-storage.md b/examples/1.9.x/server-nodejs/examples/health/get-storage.md index 75ec5cb8b..3569f7cb7 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-storage.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-storage.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get-time.md b/examples/1.9.x/server-nodejs/examples/health/get-time.md index 86d861741..825e1266d 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get-time.md +++ b/examples/1.9.x/server-nodejs/examples/health/get-time.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/health/get.md b/examples/1.9.x/server-nodejs/examples/health/get.md index bfb883b6e..15c1c6740 100644 --- a/examples/1.9.x/server-nodejs/examples/health/get.md +++ b/examples/1.9.x/server-nodejs/examples/health/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/locale/get.md b/examples/1.9.x/server-nodejs/examples/locale/get.md index 004a93257..106a6c5be 100644 --- a/examples/1.9.x/server-nodejs/examples/locale/get.md +++ b/examples/1.9.x/server-nodejs/examples/locale/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/locale/list-codes.md b/examples/1.9.x/server-nodejs/examples/locale/list-codes.md index 136992f40..a0eb93b32 100644 --- a/examples/1.9.x/server-nodejs/examples/locale/list-codes.md +++ b/examples/1.9.x/server-nodejs/examples/locale/list-codes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/locale/list-continents.md b/examples/1.9.x/server-nodejs/examples/locale/list-continents.md index aa58ec572..39d2db699 100644 --- a/examples/1.9.x/server-nodejs/examples/locale/list-continents.md +++ b/examples/1.9.x/server-nodejs/examples/locale/list-continents.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/locale/list-countries-eu.md b/examples/1.9.x/server-nodejs/examples/locale/list-countries-eu.md index 538b49271..1be2a4426 100644 --- a/examples/1.9.x/server-nodejs/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-nodejs/examples/locale/list-countries-eu.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/locale/list-countries-phones.md b/examples/1.9.x/server-nodejs/examples/locale/list-countries-phones.md index c27014185..5af211366 100644 --- a/examples/1.9.x/server-nodejs/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-nodejs/examples/locale/list-countries-phones.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/locale/list-countries.md b/examples/1.9.x/server-nodejs/examples/locale/list-countries.md index 99ee2d350..184067c80 100644 --- a/examples/1.9.x/server-nodejs/examples/locale/list-countries.md +++ b/examples/1.9.x/server-nodejs/examples/locale/list-countries.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/locale/list-currencies.md b/examples/1.9.x/server-nodejs/examples/locale/list-currencies.md index c381774d2..75e271f81 100644 --- a/examples/1.9.x/server-nodejs/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-nodejs/examples/locale/list-currencies.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/locale/list-languages.md b/examples/1.9.x/server-nodejs/examples/locale/list-languages.md index cfd522c6f..f9fff13ba 100644 --- a/examples/1.9.x/server-nodejs/examples/locale/list-languages.md +++ b/examples/1.9.x/server-nodejs/examples/locale/list-languages.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-apns-provider.md index dc203a393..d355546e0 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-apns-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-email.md b/examples/1.9.x/server-nodejs/examples/messaging/create-email.md index 1662aae12..f442f42f5 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-email.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-email.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-fcm-provider.md index 78b6d06c0..b41b75c7e 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-fcm-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-mailgun-provider.md index f2961b6d7..a26ca6003 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-mailgun-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-msg-91-provider.md index ba6829a67..29cf7b9a5 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-msg-91-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-push.md b/examples/1.9.x/server-nodejs/examples/messaging/create-push.md index 467cde4a8..dc494045b 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-push.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-push.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-resend-provider.md index d1c391d0a..47f750d76 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-resend-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-sendgrid-provider.md index 9c3be00c7..9b0326130 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-sendgrid-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-sms.md b/examples/1.9.x/server-nodejs/examples/messaging/create-sms.md index 31d75c00a..9653dd230 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-sms.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-smtp-provider.md index e17fdc193..75f373e6c 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-smtp-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-subscriber.md b/examples/1.9.x/server-nodejs/examples/messaging/create-subscriber.md index 51410af72..2383fe3c4 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-subscriber.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setJWT(''); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-telesign-provider.md index baf83a6c7..f30ac7741 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-telesign-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-textmagic-provider.md index 655a22482..48633530e 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-textmagic-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-topic.md b/examples/1.9.x/server-nodejs/examples/messaging/create-topic.md index 4625517a2..aaa73fa47 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-topic.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-twilio-provider.md index 0db55435e..5ea29ca6b 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-twilio-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/create-vonage-provider.md index cf8cd38ac..71cc0e453 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/create-vonage-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/delete-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/delete-provider.md index 53fc2aeaa..6d61554f8 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/delete-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-nodejs/examples/messaging/delete-subscriber.md index 99c61d7ab..eabee060c 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/delete-subscriber.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setJWT(''); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-nodejs/examples/messaging/delete-topic.md b/examples/1.9.x/server-nodejs/examples/messaging/delete-topic.md index 3ffa99f91..9fa9b7cbd 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/delete-topic.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/delete.md b/examples/1.9.x/server-nodejs/examples/messaging/delete.md index 62e7d61a2..756bcda1b 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/delete.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/get-message.md b/examples/1.9.x/server-nodejs/examples/messaging/get-message.md index 894a74ac8..ed660f84e 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/get-message.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/get-message.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/get-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/get-provider.md index c7e91ff00..2958c28a4 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/get-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/get-subscriber.md b/examples/1.9.x/server-nodejs/examples/messaging/get-subscriber.md index 8a9153415..8f76fa46a 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/get-subscriber.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/get-topic.md b/examples/1.9.x/server-nodejs/examples/messaging/get-topic.md index f352c9d7b..dd39e5db7 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/get-topic.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-message-logs.md b/examples/1.9.x/server-nodejs/examples/messaging/list-message-logs.md index c9c8a4719..54ee85edf 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-message-logs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-messages.md b/examples/1.9.x/server-nodejs/examples/messaging/list-messages.md index 053adc9fa..c3ba4a612 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-messages.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-nodejs/examples/messaging/list-provider-logs.md index 92b4c2f45..960f31906 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-provider-logs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-providers.md b/examples/1.9.x/server-nodejs/examples/messaging/list-providers.md index 603ff0bd9..bcf9bdc56 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-providers.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-nodejs/examples/messaging/list-subscriber-logs.md index 2f892254b..5a9616efd 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-subscriber-logs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-subscribers.md b/examples/1.9.x/server-nodejs/examples/messaging/list-subscribers.md index bba6aae4a..069cca5b3 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-subscribers.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-targets.md b/examples/1.9.x/server-nodejs/examples/messaging/list-targets.md index dc053961e..11022a735 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-targets.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-nodejs/examples/messaging/list-topic-logs.md index ee76366ce..e93a6eeda 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-topic-logs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/list-topics.md b/examples/1.9.x/server-nodejs/examples/messaging/list-topics.md index 62fecb618..b7652bbfb 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/list-topics.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-apns-provider.md index 6cd012d9b..c7db9c703 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-apns-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-email.md b/examples/1.9.x/server-nodejs/examples/messaging/update-email.md index f4e27865c..81710ddae 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-email.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-email.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-fcm-provider.md index 4d76843ef..66e150bce 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-fcm-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-mailgun-provider.md index 5725f1ebf..977c3435f 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-mailgun-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-msg-91-provider.md index d66ba73fc..e24a7b01f 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-msg-91-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-push.md b/examples/1.9.x/server-nodejs/examples/messaging/update-push.md index f0e5e324f..e47aadb10 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-push.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-push.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-resend-provider.md index 563c907f8..167482ec0 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-resend-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-sendgrid-provider.md index ece8ae7c8..6e4c18556 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-sendgrid-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-sms.md b/examples/1.9.x/server-nodejs/examples/messaging/update-sms.md index 074cab2ef..321f61aa0 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-sms.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-smtp-provider.md index d860736f5..df974a679 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-smtp-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-telesign-provider.md index b8b7ea088..565de93be 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-telesign-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-textmagic-provider.md index bf35cef82..7a0403cbe 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-textmagic-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-topic.md b/examples/1.9.x/server-nodejs/examples/messaging/update-topic.md index 8ec307391..61804943a 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-topic.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-twilio-provider.md index da83c43ce..b31028096 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-twilio-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-nodejs/examples/messaging/update-vonage-provider.md index caefea0d6..70a7ec99a 100644 --- a/examples/1.9.x/server-nodejs/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-nodejs/examples/messaging/update-vonage-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/organization/create-key.md b/examples/1.9.x/server-nodejs/examples/organization/create-key.md new file mode 100644 index 000000000..6f8a6ffd6 --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/create-key.md @@ -0,0 +1,17 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.createKey({ + keyId: '', + name: '', + scopes: [sdk.OrganizationKeyScopes.ProjectsRead], + expire: '2020-10-15T06:38:00.000+00:00' // optional +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/create-project.md b/examples/1.9.x/server-nodejs/examples/organization/create-project.md new file mode 100644 index 000000000..5958da7d3 --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/create-project.md @@ -0,0 +1,16 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.createProject({ + projectId: '', + name: '', + region: sdk.Region.Fra // optional +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/delete-key.md b/examples/1.9.x/server-nodejs/examples/organization/delete-key.md new file mode 100644 index 000000000..510622f3a --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/delete-key.md @@ -0,0 +1,14 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.deleteKey({ + keyId: '' +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/delete-project.md b/examples/1.9.x/server-nodejs/examples/organization/delete-project.md new file mode 100644 index 000000000..f7da0b73c --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/delete-project.md @@ -0,0 +1,14 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.deleteProject({ + projectId: '' +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/get-key.md b/examples/1.9.x/server-nodejs/examples/organization/get-key.md new file mode 100644 index 000000000..9c8ccdb96 --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/get-key.md @@ -0,0 +1,14 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.getKey({ + keyId: '' +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/get-project.md b/examples/1.9.x/server-nodejs/examples/organization/get-project.md new file mode 100644 index 000000000..58da5caac --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/get-project.md @@ -0,0 +1,14 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.getProject({ + projectId: '' +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/list-keys.md b/examples/1.9.x/server-nodejs/examples/organization/list-keys.md new file mode 100644 index 000000000..af658c70e --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/list-keys.md @@ -0,0 +1,15 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.listKeys({ + queries: [], // optional + total: false // optional +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/list-projects.md b/examples/1.9.x/server-nodejs/examples/organization/list-projects.md new file mode 100644 index 000000000..d4397cfa5 --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/list-projects.md @@ -0,0 +1,16 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.listProjects({ + queries: [], // optional + search: '', // optional + total: false // optional +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/update-key.md b/examples/1.9.x/server-nodejs/examples/organization/update-key.md new file mode 100644 index 000000000..8b070e913 --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/update-key.md @@ -0,0 +1,17 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.updateKey({ + keyId: '', + name: '', + scopes: [sdk.OrganizationKeyScopes.ProjectsRead], + expire: '2020-10-15T06:38:00.000+00:00' // optional +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/organization/update-project.md b/examples/1.9.x/server-nodejs/examples/organization/update-project.md new file mode 100644 index 000000000..c2be6a10b --- /dev/null +++ b/examples/1.9.x/server-nodejs/examples/organization/update-project.md @@ -0,0 +1,15 @@ +```javascript +const sdk = require('node-appwrite'); + +const client = new sdk.Client() + .setEndpoint('') // Your API Endpoint + .setProject('') // Your project ID + .setKey(''); // Your secret API key + +const organization = new sdk.Organization(client); + +const result = await organization.updateProject({ + projectId: '', + name: '' +}); +``` diff --git a/examples/1.9.x/server-nodejs/examples/presences/delete.md b/examples/1.9.x/server-nodejs/examples/presences/delete.md index 4c1cfc248..572da25cc 100644 --- a/examples/1.9.x/server-nodejs/examples/presences/delete.md +++ b/examples/1.9.x/server-nodejs/examples/presences/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/presences/get.md b/examples/1.9.x/server-nodejs/examples/presences/get.md index 1e8a332d5..b8aaa565d 100644 --- a/examples/1.9.x/server-nodejs/examples/presences/get.md +++ b/examples/1.9.x/server-nodejs/examples/presences/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/presences/list.md b/examples/1.9.x/server-nodejs/examples/presences/list.md index fbb18d4d7..acd9e4562 100644 --- a/examples/1.9.x/server-nodejs/examples/presences/list.md +++ b/examples/1.9.x/server-nodejs/examples/presences/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/presences/update-presence.md b/examples/1.9.x/server-nodejs/examples/presences/update-presence.md index ffb1272fd..2ec615ba0 100644 --- a/examples/1.9.x/server-nodejs/examples/presences/update-presence.md +++ b/examples/1.9.x/server-nodejs/examples/presences/update-presence.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/presences/upsert.md b/examples/1.9.x/server-nodejs/examples/presences/upsert.md index 63b9267f8..1c08df6c5 100644 --- a/examples/1.9.x/server-nodejs/examples/presences/upsert.md +++ b/examples/1.9.x/server-nodejs/examples/presences/upsert.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-android-platform.md b/examples/1.9.x/server-nodejs/examples/project/create-android-platform.md index 09a9f337b..3824f2bad 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-android-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-apple-platform.md b/examples/1.9.x/server-nodejs/examples/project/create-apple-platform.md index 6ffe87b74..43751a6f9 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-apple-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-nodejs/examples/project/create-ephemeral-key.md index e368a6051..e34a38a9b 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-ephemeral-key.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-key.md b/examples/1.9.x/server-nodejs/examples/project/create-key.md index 362821b30..5b3b779a3 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-key.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-key.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-linux-platform.md b/examples/1.9.x/server-nodejs/examples/project/create-linux-platform.md index aa51173c3..5eeda3750 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-linux-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-mock-phone.md b/examples/1.9.x/server-nodejs/examples/project/create-mock-phone.md index 6bb2962cc..b561bc086 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-mock-phone.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-smtp-test.md b/examples/1.9.x/server-nodejs/examples/project/create-smtp-test.md index 708daf85a..bbca1c340 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-smtp-test.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-variable.md b/examples/1.9.x/server-nodejs/examples/project/create-variable.md index 6333b935f..669e6c1a7 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-variable.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-web-platform.md b/examples/1.9.x/server-nodejs/examples/project/create-web-platform.md index 84e36ce12..52e2bd31c 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-web-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/create-windows-platform.md b/examples/1.9.x/server-nodejs/examples/project/create-windows-platform.md index 369f0349d..36c264f9a 100644 --- a/examples/1.9.x/server-nodejs/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/create-windows-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/delete-key.md b/examples/1.9.x/server-nodejs/examples/project/delete-key.md index bbe19c2ad..302f79aa0 100644 --- a/examples/1.9.x/server-nodejs/examples/project/delete-key.md +++ b/examples/1.9.x/server-nodejs/examples/project/delete-key.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/delete-mock-phone.md b/examples/1.9.x/server-nodejs/examples/project/delete-mock-phone.md index 94d341a70..5386a6a6c 100644 --- a/examples/1.9.x/server-nodejs/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-nodejs/examples/project/delete-mock-phone.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/delete-platform.md b/examples/1.9.x/server-nodejs/examples/project/delete-platform.md index cb7348056..a4f4e6acb 100644 --- a/examples/1.9.x/server-nodejs/examples/project/delete-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/delete-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/delete-variable.md b/examples/1.9.x/server-nodejs/examples/project/delete-variable.md index c930811b9..0625d1348 100644 --- a/examples/1.9.x/server-nodejs/examples/project/delete-variable.md +++ b/examples/1.9.x/server-nodejs/examples/project/delete-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/delete.md b/examples/1.9.x/server-nodejs/examples/project/delete.md index 150939ed3..8d2704185 100644 --- a/examples/1.9.x/server-nodejs/examples/project/delete.md +++ b/examples/1.9.x/server-nodejs/examples/project/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/get-email-template.md b/examples/1.9.x/server-nodejs/examples/project/get-email-template.md index d4683e56d..cfe1059fc 100644 --- a/examples/1.9.x/server-nodejs/examples/project/get-email-template.md +++ b/examples/1.9.x/server-nodejs/examples/project/get-email-template.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/get-key.md b/examples/1.9.x/server-nodejs/examples/project/get-key.md index 81b7e2f15..6f474cea5 100644 --- a/examples/1.9.x/server-nodejs/examples/project/get-key.md +++ b/examples/1.9.x/server-nodejs/examples/project/get-key.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/get-mock-phone.md b/examples/1.9.x/server-nodejs/examples/project/get-mock-phone.md index 73082c436..51485d47c 100644 --- a/examples/1.9.x/server-nodejs/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-nodejs/examples/project/get-mock-phone.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-nodejs/examples/project/get-o-auth-2-provider.md index 7c1d85c5e..77943bf2f 100644 --- a/examples/1.9.x/server-nodejs/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-nodejs/examples/project/get-o-auth-2-provider.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/get-platform.md b/examples/1.9.x/server-nodejs/examples/project/get-platform.md index 4f450e4bd..a5495de43 100644 --- a/examples/1.9.x/server-nodejs/examples/project/get-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/get-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/get-policy.md b/examples/1.9.x/server-nodejs/examples/project/get-policy.md index e55cb859c..066f68887 100644 --- a/examples/1.9.x/server-nodejs/examples/project/get-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/get-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/get-variable.md b/examples/1.9.x/server-nodejs/examples/project/get-variable.md index 5232de86f..f92be80ae 100644 --- a/examples/1.9.x/server-nodejs/examples/project/get-variable.md +++ b/examples/1.9.x/server-nodejs/examples/project/get-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/get.md b/examples/1.9.x/server-nodejs/examples/project/get.md index 5ee86b8a5..f84e6d845 100644 --- a/examples/1.9.x/server-nodejs/examples/project/get.md +++ b/examples/1.9.x/server-nodejs/examples/project/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/list-email-templates.md b/examples/1.9.x/server-nodejs/examples/project/list-email-templates.md index 34bc7778b..8b0ab5114 100644 --- a/examples/1.9.x/server-nodejs/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-nodejs/examples/project/list-email-templates.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/list-keys.md b/examples/1.9.x/server-nodejs/examples/project/list-keys.md index e92668222..e73bbd2cf 100644 --- a/examples/1.9.x/server-nodejs/examples/project/list-keys.md +++ b/examples/1.9.x/server-nodejs/examples/project/list-keys.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/list-mock-phones.md b/examples/1.9.x/server-nodejs/examples/project/list-mock-phones.md index 0816b18aa..5b2fef917 100644 --- a/examples/1.9.x/server-nodejs/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-nodejs/examples/project/list-mock-phones.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-nodejs/examples/project/list-o-auth-2-providers.md index 244767d3d..f3f1dde17 100644 --- a/examples/1.9.x/server-nodejs/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-nodejs/examples/project/list-o-auth-2-providers.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/list-platforms.md b/examples/1.9.x/server-nodejs/examples/project/list-platforms.md index c180b9d71..7db7a2eea 100644 --- a/examples/1.9.x/server-nodejs/examples/project/list-platforms.md +++ b/examples/1.9.x/server-nodejs/examples/project/list-platforms.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/list-policies.md b/examples/1.9.x/server-nodejs/examples/project/list-policies.md index f7b6260f0..3eb2f4d06 100644 --- a/examples/1.9.x/server-nodejs/examples/project/list-policies.md +++ b/examples/1.9.x/server-nodejs/examples/project/list-policies.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/list-variables.md b/examples/1.9.x/server-nodejs/examples/project/list-variables.md index 3ffd1b959..31a258c08 100644 --- a/examples/1.9.x/server-nodejs/examples/project/list-variables.md +++ b/examples/1.9.x/server-nodejs/examples/project/list-variables.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-android-platform.md b/examples/1.9.x/server-nodejs/examples/project/update-android-platform.md index 8164b0d01..64e5411e8 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-android-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-apple-platform.md b/examples/1.9.x/server-nodejs/examples/project/update-apple-platform.md index 93abb676b..be595e0f8 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-apple-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-auth-method.md b/examples/1.9.x/server-nodejs/examples/project/update-auth-method.md index 8e2e4bbb4..dbc4dba75 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-auth-method.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-deny-aliased-email-policy.md index 92b7e6484..463c74367 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-deny-aliased-email-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-deny-disposable-email-policy.md index e2b253160..df18e0d74 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-deny-disposable-email-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-deny-free-email-policy.md index 85799e8e7..7ec607777 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-deny-free-email-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-email-template.md b/examples/1.9.x/server-nodejs/examples/project/update-email-template.md index ddf6ca67e..0334ec36d 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-email-template.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-email-template.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-key.md b/examples/1.9.x/server-nodejs/examples/project/update-key.md index 39be329e5..3e4b8c50c 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-key.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-key.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-labels.md b/examples/1.9.x/server-nodejs/examples/project/update-labels.md index f924ec09f..0dc1f5f9d 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-labels.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-labels.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-linux-platform.md b/examples/1.9.x/server-nodejs/examples/project/update-linux-platform.md index cb483d60a..b50998a5d 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-linux-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-membership-privacy-policy.md index 66eff9f37..cf08779d2 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-membership-privacy-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-mock-phone.md b/examples/1.9.x/server-nodejs/examples/project/update-mock-phone.md index a0c70abc1..7cd06c381 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-mock-phone.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-amazon.md index 12a535fff..8c84fcc39 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-amazon.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-apple.md index ae985a4ad..4f7bada8a 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-apple.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-auth-0.md index 37bf4a56f..256747575 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-auth-0.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-authentik.md index e500466bb..4758b1533 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-authentik.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-autodesk.md index 0b8aabce3..4ca9d14bc 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-autodesk.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-bitbucket.md index d3b5dc7b7..2172b9c84 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-bitbucket.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-bitly.md index feecad272..1df70aa27 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-bitly.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-box.md index c97246387..e86d917ed 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-box.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-dailymotion.md index 8d1763394..8a016cd3e 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-dailymotion.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-discord.md index 5469509f7..bb6f9f4c4 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-discord.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-disqus.md index c71bebfe0..998f2f37a 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-disqus.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-dropbox.md index 9f2654dc6..1373c1f9b 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-dropbox.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-etsy.md index 684c4243e..66a22de5b 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-etsy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-facebook.md index 7fca48a62..0c354059a 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-facebook.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-figma.md index 3b8057382..98d056716 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-figma.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-fusion-auth.md index 654991c92..fabf59d39 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-fusion-auth.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-git-hub.md index cc2be084e..05b91f28c 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-git-hub.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-gitlab.md index 40e1943ed..5cfd19401 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-gitlab.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-google.md index 726d6059d..498bddac9 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-google.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-keycloak.md index bce76ee5c..1ec08c617 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-keycloak.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-kick.md index 1d5810522..7d751bc77 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-kick.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-linkedin.md index 02c68d99b..f17da2101 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-linkedin.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-microsoft.md index cc5a8c272..0bd9e4415 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-microsoft.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-notion.md index c32977994..3c68b3ceb 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-notion.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-oidc.md index 7f1f6eb7b..47b1f5ea3 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-oidc.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-okta.md index a85c98093..718316c9f 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-okta.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-paypal-sandbox.md index e6b8de7fa..8ea250e42 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-paypal-sandbox.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-paypal.md index 8f7162c74..9e7f6ceef 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-paypal.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-podio.md index 3d6c2c448..c25f4b4ee 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-podio.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-salesforce.md index a19376391..4d6f86283 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-salesforce.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-slack.md index 6dab9092c..eb2696a94 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-slack.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-spotify.md index 72ffa64d9..0a0279ee7 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-spotify.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-stripe.md index 1df015f1e..2111c2e0f 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-stripe.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-tradeshift-sandbox.md index df090e922..c6c74a7c9 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-tradeshift.md index afddd8c04..82011e5ec 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-tradeshift.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-twitch.md index ad096ea9e..3361d9c33 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-twitch.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-word-press.md index 597ccd5bc..d6f03ebb6 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-word-press.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-yahoo.md index 79b3b021a..47d227b68 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-yahoo.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-yandex.md index 2f79c4484..50ba2ec91 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-yandex.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-zoho.md index 031a28168..672124c69 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-zoho.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-zoom.md index 985400b10..bc348e758 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2-zoom.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2x.md index 183e22570..db822341a 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-o-auth-2x.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-password-dictionary-policy.md index 8b8bdd024..12a6c2e89 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-password-dictionary-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-password-history-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-password-history-policy.md index b8ab9d038..4f1f88c7d 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-password-history-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-password-personal-data-policy.md index df490a4a4..2a5a57706 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-password-personal-data-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-protocol.md b/examples/1.9.x/server-nodejs/examples/project/update-protocol.md index 373e91784..f441dd842 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-protocol.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-protocol.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-service.md b/examples/1.9.x/server-nodejs/examples/project/update-service.md index ded8eb761..c6f924e7f 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-service.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-service.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-session-alert-policy.md index 545460841..c4e24e10b 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-session-alert-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-session-duration-policy.md index 2a4873be8..564fcde06 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-session-duration-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-session-invalidation-policy.md index a5840bc29..a3a0f30c7 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-session-invalidation-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-session-limit-policy.md index 514d77aa9..969a12736 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-session-limit-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-smtp.md b/examples/1.9.x/server-nodejs/examples/project/update-smtp.md index fe7258a53..6aa9b8117 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-smtp.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-smtp.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-nodejs/examples/project/update-user-limit-policy.md index bb3720423..08a566a28 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-user-limit-policy.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-variable.md b/examples/1.9.x/server-nodejs/examples/project/update-variable.md index 58e738ed3..801a9503f 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-variable.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-web-platform.md b/examples/1.9.x/server-nodejs/examples/project/update-web-platform.md index 9c4f9bd1d..35cfddb84 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-web-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/project/update-windows-platform.md b/examples/1.9.x/server-nodejs/examples/project/update-windows-platform.md index 3fd19d7dc..92f2490c2 100644 --- a/examples/1.9.x/server-nodejs/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-nodejs/examples/project/update-windows-platform.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/proxy/create-api-rule.md b/examples/1.9.x/server-nodejs/examples/proxy/create-api-rule.md index 25fcf6911..33b4ff24b 100644 --- a/examples/1.9.x/server-nodejs/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-nodejs/examples/proxy/create-api-rule.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/proxy/create-function-rule.md b/examples/1.9.x/server-nodejs/examples/proxy/create-function-rule.md index cf225f67f..519ed0e21 100644 --- a/examples/1.9.x/server-nodejs/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-nodejs/examples/proxy/create-function-rule.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-nodejs/examples/proxy/create-redirect-rule.md index 0f33abd6f..dd50bd19a 100644 --- a/examples/1.9.x/server-nodejs/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-nodejs/examples/proxy/create-redirect-rule.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -11,7 +11,7 @@ const proxy = new sdk.Proxy(client); const result = await proxy.createRedirectRule({ domain: '', url: 'https://example.com', - statusCode: sdk.StatusCode.MovedPermanently301, + statusCode: sdk.RedirectStatusCode.MovedPermanently, resourceId: '', resourceType: sdk.ProxyResourceType.Site }); diff --git a/examples/1.9.x/server-nodejs/examples/proxy/create-site-rule.md b/examples/1.9.x/server-nodejs/examples/proxy/create-site-rule.md index bafbee3d5..5470c1f63 100644 --- a/examples/1.9.x/server-nodejs/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-nodejs/examples/proxy/create-site-rule.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/proxy/delete-rule.md b/examples/1.9.x/server-nodejs/examples/proxy/delete-rule.md index 2d07a110c..1508d326d 100644 --- a/examples/1.9.x/server-nodejs/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-nodejs/examples/proxy/delete-rule.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/proxy/get-rule.md b/examples/1.9.x/server-nodejs/examples/proxy/get-rule.md index e89612dcc..04369179a 100644 --- a/examples/1.9.x/server-nodejs/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-nodejs/examples/proxy/get-rule.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/proxy/list-rules.md b/examples/1.9.x/server-nodejs/examples/proxy/list-rules.md index b161a0855..a21d52b84 100644 --- a/examples/1.9.x/server-nodejs/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-nodejs/examples/proxy/list-rules.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/proxy/update-rule-status.md b/examples/1.9.x/server-nodejs/examples/proxy/update-rule-status.md index 9e050fc7e..0c752b46b 100644 --- a/examples/1.9.x/server-nodejs/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-nodejs/examples/proxy/update-rule-status.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/create-deployment.md b/examples/1.9.x/server-nodejs/examples/sites/create-deployment.md index 2603dda9d..9cee07ac7 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/sites/create-deployment.md @@ -3,7 +3,7 @@ const sdk = require('node-appwrite'); const fs = require('fs'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-nodejs/examples/sites/create-duplicate-deployment.md index e14d85858..24c6f4292 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/sites/create-duplicate-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/create-template-deployment.md b/examples/1.9.x/server-nodejs/examples/sites/create-template-deployment.md index b08d94ab2..d864addec 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/sites/create-template-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/create-variable.md b/examples/1.9.x/server-nodejs/examples/sites/create-variable.md index cad7be761..8cef0e75c 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/create-variable.md +++ b/examples/1.9.x/server-nodejs/examples/sites/create-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-nodejs/examples/sites/create-vcs-deployment.md index 6d28546e3..c34cfd8e6 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/sites/create-vcs-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/create.md b/examples/1.9.x/server-nodejs/examples/sites/create.md index 65e5c64cc..72af85c66 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/create.md +++ b/examples/1.9.x/server-nodejs/examples/sites/create.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -11,8 +11,8 @@ const sites = new sdk.Sites(client); const result = await sites.create({ siteId: '', name: '', - framework: sdk.Framework.Analog, - buildRuntime: sdk.BuildRuntime.Node145, + framework: sdk.SiteFramework.Analog, + buildRuntime: sdk.SiteBuildRuntime.Node145, enabled: false, // optional logging: false, // optional timeout: 1, // optional @@ -20,13 +20,15 @@ const result = await sites.create({ buildCommand: '', // optional startCommand: '', // optional outputDirectory: '', // optional - adapter: sdk.Adapter.Static, // optional + adapter: sdk.SiteAdapter.Static, // optional installationId: '', // optional fallbackFile: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-nodejs/examples/sites/delete-deployment.md b/examples/1.9.x/server-nodejs/examples/sites/delete-deployment.md index 533f29850..bbf65963c 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/sites/delete-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/delete-log.md b/examples/1.9.x/server-nodejs/examples/sites/delete-log.md index 38f7c3a33..727839156 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/delete-log.md +++ b/examples/1.9.x/server-nodejs/examples/sites/delete-log.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/delete-variable.md b/examples/1.9.x/server-nodejs/examples/sites/delete-variable.md index 11ebaca9b..47dad3d16 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-nodejs/examples/sites/delete-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/delete.md b/examples/1.9.x/server-nodejs/examples/sites/delete.md index 03bd1a57b..bd47adacd 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/delete.md +++ b/examples/1.9.x/server-nodejs/examples/sites/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/get-deployment-download.md b/examples/1.9.x/server-nodejs/examples/sites/get-deployment-download.md index 6e7ee4aa0..4b2264943 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-nodejs/examples/sites/get-deployment-download.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/get-deployment.md b/examples/1.9.x/server-nodejs/examples/sites/get-deployment.md index 1f1430ca6..fa928a9f4 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/sites/get-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/get-log.md b/examples/1.9.x/server-nodejs/examples/sites/get-log.md index f8190b4a9..fb8b565fe 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/get-log.md +++ b/examples/1.9.x/server-nodejs/examples/sites/get-log.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/get-variable.md b/examples/1.9.x/server-nodejs/examples/sites/get-variable.md index cafb71b10..397386a24 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/get-variable.md +++ b/examples/1.9.x/server-nodejs/examples/sites/get-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/get.md b/examples/1.9.x/server-nodejs/examples/sites/get.md index 0b21b2bbc..9b2562184 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/get.md +++ b/examples/1.9.x/server-nodejs/examples/sites/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/list-deployments.md b/examples/1.9.x/server-nodejs/examples/sites/list-deployments.md index 1b544a0a0..87a148c84 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-nodejs/examples/sites/list-deployments.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/list-frameworks.md b/examples/1.9.x/server-nodejs/examples/sites/list-frameworks.md index 9a417bfd0..ee3e94059 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-nodejs/examples/sites/list-frameworks.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/list-logs.md b/examples/1.9.x/server-nodejs/examples/sites/list-logs.md index 62b16945b..eb67c3e4c 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/list-logs.md +++ b/examples/1.9.x/server-nodejs/examples/sites/list-logs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/list-specifications.md b/examples/1.9.x/server-nodejs/examples/sites/list-specifications.md index 6e882891c..f38273570 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-nodejs/examples/sites/list-specifications.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/list-variables.md b/examples/1.9.x/server-nodejs/examples/sites/list-variables.md index 26ae32124..41342fc6b 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/list-variables.md +++ b/examples/1.9.x/server-nodejs/examples/sites/list-variables.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/list.md b/examples/1.9.x/server-nodejs/examples/sites/list.md index 518aa7096..f2697b3fe 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/list.md +++ b/examples/1.9.x/server-nodejs/examples/sites/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/update-deployment-status.md b/examples/1.9.x/server-nodejs/examples/sites/update-deployment-status.md index 73a747581..e8f0a9d1d 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-nodejs/examples/sites/update-deployment-status.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/update-site-deployment.md b/examples/1.9.x/server-nodejs/examples/sites/update-site-deployment.md index 1221d3704..c71051fe0 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-nodejs/examples/sites/update-site-deployment.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/update-variable.md b/examples/1.9.x/server-nodejs/examples/sites/update-variable.md index 2853a180b..6c3fa3b97 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/update-variable.md +++ b/examples/1.9.x/server-nodejs/examples/sites/update-variable.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/sites/update.md b/examples/1.9.x/server-nodejs/examples/sites/update.md index 0411752f2..9558b7a55 100644 --- a/examples/1.9.x/server-nodejs/examples/sites/update.md +++ b/examples/1.9.x/server-nodejs/examples/sites/update.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key @@ -11,7 +11,7 @@ const sites = new sdk.Sites(client); const result = await sites.update({ siteId: '', name: '', - framework: sdk.Framework.Analog, + framework: sdk.SiteFramework.Analog, enabled: false, // optional logging: false, // optional timeout: 1, // optional @@ -19,14 +19,16 @@ const result = await sites.update({ buildCommand: '', // optional startCommand: '', // optional outputDirectory: '', // optional - buildRuntime: sdk.BuildRuntime.Node145, // optional - adapter: sdk.Adapter.Static, // optional + buildRuntime: sdk.SiteBuildRuntime.Node145, // optional + adapter: sdk.SiteAdapter.Static, // optional fallbackFile: '', // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-nodejs/examples/storage/create-bucket.md b/examples/1.9.x/server-nodejs/examples/storage/create-bucket.md index 47dc8b31c..6c444e34e 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-nodejs/examples/storage/create-bucket.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/storage/create-file.md b/examples/1.9.x/server-nodejs/examples/storage/create-file.md index 055e5ab53..3970ec9f1 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/create-file.md +++ b/examples/1.9.x/server-nodejs/examples/storage/create-file.md @@ -3,7 +3,7 @@ const sdk = require('node-appwrite'); const fs = require('fs'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/storage/delete-bucket.md b/examples/1.9.x/server-nodejs/examples/storage/delete-bucket.md index bf6fa1b6e..c37c3bf1f 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-nodejs/examples/storage/delete-bucket.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/storage/delete-file.md b/examples/1.9.x/server-nodejs/examples/storage/delete-file.md index d49838e12..eaa751054 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/delete-file.md +++ b/examples/1.9.x/server-nodejs/examples/storage/delete-file.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/storage/get-bucket.md b/examples/1.9.x/server-nodejs/examples/storage/get-bucket.md index 380db5356..8e43f2df0 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-nodejs/examples/storage/get-bucket.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/storage/get-file-download.md b/examples/1.9.x/server-nodejs/examples/storage/get-file-download.md index c0a10d967..9b998da2a 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-nodejs/examples/storage/get-file-download.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/storage/get-file-preview.md b/examples/1.9.x/server-nodejs/examples/storage/get-file-preview.md index 984333db6..45e16868c 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-nodejs/examples/storage/get-file-preview.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/storage/get-file-view.md b/examples/1.9.x/server-nodejs/examples/storage/get-file-view.md index a20c4ac2b..9c687068e 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-nodejs/examples/storage/get-file-view.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/storage/get-file.md b/examples/1.9.x/server-nodejs/examples/storage/get-file.md index d8bdf4dd4..af2e9188f 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/get-file.md +++ b/examples/1.9.x/server-nodejs/examples/storage/get-file.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/storage/list-buckets.md b/examples/1.9.x/server-nodejs/examples/storage/list-buckets.md index c17389e50..b0901ad09 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-nodejs/examples/storage/list-buckets.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/storage/list-files.md b/examples/1.9.x/server-nodejs/examples/storage/list-files.md index f51fad9de..547e7e1b7 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/list-files.md +++ b/examples/1.9.x/server-nodejs/examples/storage/list-files.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/storage/update-bucket.md b/examples/1.9.x/server-nodejs/examples/storage/update-bucket.md index c17c96911..3b5e42df5 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-nodejs/examples/storage/update-bucket.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/storage/update-file.md b/examples/1.9.x/server-nodejs/examples/storage/update-file.md index 8d2294ffe..b896d68e0 100644 --- a/examples/1.9.x/server-nodejs/examples/storage/update-file.md +++ b/examples/1.9.x/server-nodejs/examples/storage/update-file.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-big-int-column.md index 21ca0bfd1..1a29d2b7f 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-big-int-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-boolean-column.md index b9df8ba87..33323f18a 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-boolean-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-datetime-column.md index 602c2a1ad..00a502070 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-datetime-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-email-column.md index bdd59341b..4340e7970 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-email-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-enum-column.md index 4016ce713..920f5e0a9 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-enum-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-float-column.md index b533f38aa..52587d01c 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-float-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-index.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-index.md index 6a7523bab..08fd87a66 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-index.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-integer-column.md index 6e99e93e6..b2f790cbf 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-integer-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-ip-column.md index 7d176b6a5..4fd43651f 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-ip-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-line-column.md index f99194c6b..54ad0fac6 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-line-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-longtext-column.md index 89d37c47a..b5d1b9b91 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-longtext-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-mediumtext-column.md index daa59589b..20f9c6a08 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-mediumtext-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-operations.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-operations.md index d1823aa8f..b5426240c 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-operations.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-point-column.md index a68d1e43d..3409bea8b 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-point-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-polygon-column.md index 0f4631bc4..e795e35a0 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-polygon-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-relationship-column.md index 6f2c0fa99..39f41a686 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-relationship-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-row.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-row.md index 485afcdeb..890b3c604 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-row.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-rows.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-rows.md index 05364214d..dbf544ebb 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-rows.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-string-column.md index 255701ce1..2cf6dbb09 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-string-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-table.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-table.md index b429f7976..1480a67ea 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-table.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-text-column.md index e7b9a4797..8b075ee51 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-text-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-transaction.md index c737347fe..29a4dc87f 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-transaction.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-url-column.md index 01e27e7d3..8b352b8ca 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-url-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create-varchar-column.md index 9cfc6fa6b..d51b90bd3 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create-varchar-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/create.md b/examples/1.9.x/server-nodejs/examples/tablesdb/create.md index 0571906c5..cc65706f8 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/create.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/create.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/decrement-row-column.md index 2fafbbbfa..1560607c5 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/decrement-row-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-column.md index 51fd96e32..4c464577d 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-index.md b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-index.md index 4c7ad1ee6..c57e6f2e8 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-index.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-row.md b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-row.md index 20d4e95b8..6858a990b 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-row.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-rows.md index 3dd8f1e03..9c33424c4 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-rows.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-table.md b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-table.md index f3071a455..762341aec 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-table.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-transaction.md index 3daa0bd64..3ae628e33 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/delete-transaction.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/delete.md b/examples/1.9.x/server-nodejs/examples/tablesdb/delete.md index 018b3a9c8..22405f7e3 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/get-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/get-column.md index 8daf93d43..8d3d31843 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/get-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/get-index.md b/examples/1.9.x/server-nodejs/examples/tablesdb/get-index.md index 164f833ea..a5c5c89d0 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/get-index.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/get-row.md b/examples/1.9.x/server-nodejs/examples/tablesdb/get-row.md index 6cbf26f0a..fafeb41f7 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/get-row.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/get-table.md b/examples/1.9.x/server-nodejs/examples/tablesdb/get-table.md index e82543568..f6b61df3f 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/get-table.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-nodejs/examples/tablesdb/get-transaction.md index c39cfe11b..db0ae091f 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/get-transaction.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/get.md b/examples/1.9.x/server-nodejs/examples/tablesdb/get.md index 38d5ce7a2..2be8f597c 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/get.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/increment-row-column.md index 1388043a3..43cb48a52 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/increment-row-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/list-columns.md b/examples/1.9.x/server-nodejs/examples/tablesdb/list-columns.md index 59b2bfbf9..e37910735 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/list-columns.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-nodejs/examples/tablesdb/list-indexes.md index 7ff6df55d..25dcf0d02 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/list-indexes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/list-rows.md b/examples/1.9.x/server-nodejs/examples/tablesdb/list-rows.md index 2777730b0..57bbee488 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/list-rows.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/list-tables.md b/examples/1.9.x/server-nodejs/examples/tablesdb/list-tables.md index 82779015b..b67d003de 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/list-tables.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-nodejs/examples/tablesdb/list-transactions.md index 892bd2886..34ad53e91 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/list-transactions.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/list.md b/examples/1.9.x/server-nodejs/examples/tablesdb/list.md index 3514e2dcb..454cbe9f5 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/list.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-big-int-column.md index 4defcb4c8..e494d1dcf 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-big-int-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-boolean-column.md index 6ad626916..d5c9bebd4 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-boolean-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-datetime-column.md index ff93b1400..cf82abe23 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-datetime-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-email-column.md index fc6c764be..16345535f 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-email-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-enum-column.md index b97a4c585..89d702a97 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-enum-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-float-column.md index d332d81f0..e0b504108 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-float-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-integer-column.md index 4a49705d0..9744e91da 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-integer-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-ip-column.md index 00dfce17a..ccfbbf0b1 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-ip-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-line-column.md index 0a6bd2555..2fc298f98 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-line-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-longtext-column.md index cdb20747f..dfc51854b 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-longtext-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-mediumtext-column.md index 7c84b920e..861f93cdf 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-mediumtext-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-point-column.md index c2e105062..2e137eabd 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-point-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-polygon-column.md index 0a38cd0ab..f0cb7692f 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-polygon-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-relationship-column.md index 86f935a5e..adb7cbaf1 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-relationship-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-row.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-row.md index bac92af21..385d6d64c 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-row.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-rows.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-rows.md index 09ab8601b..bf3f3ad3e 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-rows.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-string-column.md index 757aa6cf4..e5d79c5cd 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-string-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-table.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-table.md index 6aa65c2eb..912497560 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-table.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-text-column.md index 69970d63b..bec92840e 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-text-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-transaction.md index d06074787..fd9b0817d 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-transaction.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-url-column.md index 08392f5de..b06437021 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-url-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update-varchar-column.md index 58f94220c..82add034b 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update-varchar-column.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/update.md b/examples/1.9.x/server-nodejs/examples/tablesdb/update.md index 7cbf6f58a..9b374998a 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/update.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/update.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-nodejs/examples/tablesdb/upsert-row.md index f544bc067..b13b4caf7 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/upsert-row.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-nodejs/examples/tablesdb/upsert-rows.md index 7bbf2ed3b..f4c7cfffc 100644 --- a/examples/1.9.x/server-nodejs/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-nodejs/examples/tablesdb/upsert-rows.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/teams/create-membership.md b/examples/1.9.x/server-nodejs/examples/teams/create-membership.md index 910bb757e..8db998bdf 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/create-membership.md +++ b/examples/1.9.x/server-nodejs/examples/teams/create-membership.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/create.md b/examples/1.9.x/server-nodejs/examples/teams/create.md index 8e5702b26..7e602e8cf 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/create.md +++ b/examples/1.9.x/server-nodejs/examples/teams/create.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/delete-membership.md b/examples/1.9.x/server-nodejs/examples/teams/delete-membership.md index 7dd116031..0fa0d932d 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-nodejs/examples/teams/delete-membership.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/delete.md b/examples/1.9.x/server-nodejs/examples/teams/delete.md index 8593956fe..02c00b81c 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/delete.md +++ b/examples/1.9.x/server-nodejs/examples/teams/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/get-membership.md b/examples/1.9.x/server-nodejs/examples/teams/get-membership.md index 4ecf078de..9876006cb 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/get-membership.md +++ b/examples/1.9.x/server-nodejs/examples/teams/get-membership.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/get-prefs.md b/examples/1.9.x/server-nodejs/examples/teams/get-prefs.md index 0238bdbab..bc41bf919 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-nodejs/examples/teams/get-prefs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/get.md b/examples/1.9.x/server-nodejs/examples/teams/get.md index bd01c5c5b..6f3cde646 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/get.md +++ b/examples/1.9.x/server-nodejs/examples/teams/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/list-memberships.md b/examples/1.9.x/server-nodejs/examples/teams/list-memberships.md index 1185380b3..52505371f 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-nodejs/examples/teams/list-memberships.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/list.md b/examples/1.9.x/server-nodejs/examples/teams/list.md index b4525fbae..2b3082ba3 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/list.md +++ b/examples/1.9.x/server-nodejs/examples/teams/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/update-membership-status.md b/examples/1.9.x/server-nodejs/examples/teams/update-membership-status.md index 614737ec8..0262f826c 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-nodejs/examples/teams/update-membership-status.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/update-membership.md b/examples/1.9.x/server-nodejs/examples/teams/update-membership.md index 95a5c375e..5d0b476f2 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/update-membership.md +++ b/examples/1.9.x/server-nodejs/examples/teams/update-membership.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/update-name.md b/examples/1.9.x/server-nodejs/examples/teams/update-name.md index 0c64d2ba2..5a71aebae 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/update-name.md +++ b/examples/1.9.x/server-nodejs/examples/teams/update-name.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/teams/update-prefs.md b/examples/1.9.x/server-nodejs/examples/teams/update-prefs.md index 180e32248..a6fee5ffa 100644 --- a/examples/1.9.x/server-nodejs/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-nodejs/examples/teams/update-prefs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-nodejs/examples/tokens/create-file-token.md b/examples/1.9.x/server-nodejs/examples/tokens/create-file-token.md index bfb5d8d04..e22d575f1 100644 --- a/examples/1.9.x/server-nodejs/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-nodejs/examples/tokens/create-file-token.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tokens/delete.md b/examples/1.9.x/server-nodejs/examples/tokens/delete.md index f3b408947..80f36e670 100644 --- a/examples/1.9.x/server-nodejs/examples/tokens/delete.md +++ b/examples/1.9.x/server-nodejs/examples/tokens/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tokens/get.md b/examples/1.9.x/server-nodejs/examples/tokens/get.md index 383ea5f3b..8f301dfd3 100644 --- a/examples/1.9.x/server-nodejs/examples/tokens/get.md +++ b/examples/1.9.x/server-nodejs/examples/tokens/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tokens/list.md b/examples/1.9.x/server-nodejs/examples/tokens/list.md index 13e484801..3ac9fe13b 100644 --- a/examples/1.9.x/server-nodejs/examples/tokens/list.md +++ b/examples/1.9.x/server-nodejs/examples/tokens/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/tokens/update.md b/examples/1.9.x/server-nodejs/examples/tokens/update.md index 0ab3b1683..b3c380786 100644 --- a/examples/1.9.x/server-nodejs/examples/tokens/update.md +++ b/examples/1.9.x/server-nodejs/examples/tokens/update.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/usage/list-events.md b/examples/1.9.x/server-nodejs/examples/usage/list-events.md index 887f98fec..382c94bc2 100644 --- a/examples/1.9.x/server-nodejs/examples/usage/list-events.md +++ b/examples/1.9.x/server-nodejs/examples/usage/list-events.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/usage/list-gauges.md b/examples/1.9.x/server-nodejs/examples/usage/list-gauges.md index aa5ba1d8a..e11673e34 100644 --- a/examples/1.9.x/server-nodejs/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-nodejs/examples/usage/list-gauges.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-argon-2-user.md b/examples/1.9.x/server-nodejs/examples/users/create-argon-2-user.md index 4f45f7fdb..8db167fe1 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-argon-2-user.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-nodejs/examples/users/create-bcrypt-user.md index 55100412e..5dfac3079 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-bcrypt-user.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-jwt.md b/examples/1.9.x/server-nodejs/examples/users/create-jwt.md index c2e6eaa48..405b993b8 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-jwt.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-jwt.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-md-5-user.md b/examples/1.9.x/server-nodejs/examples/users/create-md-5-user.md index 004c3b742..e07828fab 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-md-5-user.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-nodejs/examples/users/create-mfa-recovery-codes.md index 2f7120225..b311e1894 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-nodejs/examples/users/create-ph-pass-user.md index 945f74768..cb233c1b7 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-ph-pass-user.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-nodejs/examples/users/create-scrypt-modified-user.md index fc8a5e001..46ddb8052 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-scrypt-modified-user.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-scrypt-user.md b/examples/1.9.x/server-nodejs/examples/users/create-scrypt-user.md index e9a353588..d43b987e9 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-scrypt-user.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-session.md b/examples/1.9.x/server-nodejs/examples/users/create-session.md index 04e37680e..fa97ebd78 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-session.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-sha-user.md b/examples/1.9.x/server-nodejs/examples/users/create-sha-user.md index 47c0d74b1..886e9fb19 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-sha-user.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-target.md b/examples/1.9.x/server-nodejs/examples/users/create-target.md index bc19f2bfd..57d1c6fc6 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-target.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-target.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create-token.md b/examples/1.9.x/server-nodejs/examples/users/create-token.md index 5978df65f..e8b66de77 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create-token.md +++ b/examples/1.9.x/server-nodejs/examples/users/create-token.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/create.md b/examples/1.9.x/server-nodejs/examples/users/create.md index 5610f0621..fdfebcee2 100644 --- a/examples/1.9.x/server-nodejs/examples/users/create.md +++ b/examples/1.9.x/server-nodejs/examples/users/create.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/delete-identity.md b/examples/1.9.x/server-nodejs/examples/users/delete-identity.md index 1a730d8d2..37b4edad5 100644 --- a/examples/1.9.x/server-nodejs/examples/users/delete-identity.md +++ b/examples/1.9.x/server-nodejs/examples/users/delete-identity.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-nodejs/examples/users/delete-mfa-authenticator.md index a5d4e3d0b..5aa9a67a4 100644 --- a/examples/1.9.x/server-nodejs/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-nodejs/examples/users/delete-mfa-authenticator.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/delete-session.md b/examples/1.9.x/server-nodejs/examples/users/delete-session.md index d39eccd08..1bad3988a 100644 --- a/examples/1.9.x/server-nodejs/examples/users/delete-session.md +++ b/examples/1.9.x/server-nodejs/examples/users/delete-session.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/delete-sessions.md b/examples/1.9.x/server-nodejs/examples/users/delete-sessions.md index 9331435b1..4b3b37a3a 100644 --- a/examples/1.9.x/server-nodejs/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-nodejs/examples/users/delete-sessions.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/delete-target.md b/examples/1.9.x/server-nodejs/examples/users/delete-target.md index 3f5793028..4f130b98f 100644 --- a/examples/1.9.x/server-nodejs/examples/users/delete-target.md +++ b/examples/1.9.x/server-nodejs/examples/users/delete-target.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/delete.md b/examples/1.9.x/server-nodejs/examples/users/delete.md index 8714dc595..8d43c10c5 100644 --- a/examples/1.9.x/server-nodejs/examples/users/delete.md +++ b/examples/1.9.x/server-nodejs/examples/users/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-nodejs/examples/users/get-mfa-recovery-codes.md index 3e3799264..bfbee36b7 100644 --- a/examples/1.9.x/server-nodejs/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-nodejs/examples/users/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/get-prefs.md b/examples/1.9.x/server-nodejs/examples/users/get-prefs.md index d81539e97..5300b29cd 100644 --- a/examples/1.9.x/server-nodejs/examples/users/get-prefs.md +++ b/examples/1.9.x/server-nodejs/examples/users/get-prefs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/get-target.md b/examples/1.9.x/server-nodejs/examples/users/get-target.md index 97ee96470..d7820c768 100644 --- a/examples/1.9.x/server-nodejs/examples/users/get-target.md +++ b/examples/1.9.x/server-nodejs/examples/users/get-target.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/get.md b/examples/1.9.x/server-nodejs/examples/users/get.md index 3f86f8c96..f3ad4ee02 100644 --- a/examples/1.9.x/server-nodejs/examples/users/get.md +++ b/examples/1.9.x/server-nodejs/examples/users/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/list-identities.md b/examples/1.9.x/server-nodejs/examples/users/list-identities.md index e25c26f44..8ded15215 100644 --- a/examples/1.9.x/server-nodejs/examples/users/list-identities.md +++ b/examples/1.9.x/server-nodejs/examples/users/list-identities.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/list-logs.md b/examples/1.9.x/server-nodejs/examples/users/list-logs.md index 7cb97e270..0fce80a32 100644 --- a/examples/1.9.x/server-nodejs/examples/users/list-logs.md +++ b/examples/1.9.x/server-nodejs/examples/users/list-logs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/list-memberships.md b/examples/1.9.x/server-nodejs/examples/users/list-memberships.md index 0a758c004..cb5e6c2d1 100644 --- a/examples/1.9.x/server-nodejs/examples/users/list-memberships.md +++ b/examples/1.9.x/server-nodejs/examples/users/list-memberships.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/list-mfa-factors.md b/examples/1.9.x/server-nodejs/examples/users/list-mfa-factors.md index 9272a20c9..c0ae4c297 100644 --- a/examples/1.9.x/server-nodejs/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-nodejs/examples/users/list-mfa-factors.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/list-sessions.md b/examples/1.9.x/server-nodejs/examples/users/list-sessions.md index d941dcfb2..9f42c0655 100644 --- a/examples/1.9.x/server-nodejs/examples/users/list-sessions.md +++ b/examples/1.9.x/server-nodejs/examples/users/list-sessions.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/list-targets.md b/examples/1.9.x/server-nodejs/examples/users/list-targets.md index aa7be7484..e0bb7b60b 100644 --- a/examples/1.9.x/server-nodejs/examples/users/list-targets.md +++ b/examples/1.9.x/server-nodejs/examples/users/list-targets.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/list.md b/examples/1.9.x/server-nodejs/examples/users/list.md index 916dabc07..7211bdc6f 100644 --- a/examples/1.9.x/server-nodejs/examples/users/list.md +++ b/examples/1.9.x/server-nodejs/examples/users/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-email-verification.md b/examples/1.9.x/server-nodejs/examples/users/update-email-verification.md index 7a43202d3..c80b47d2b 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-email-verification.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-email.md b/examples/1.9.x/server-nodejs/examples/users/update-email.md index 10cf0027a..dd091467e 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-email.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-email.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-impersonator.md b/examples/1.9.x/server-nodejs/examples/users/update-impersonator.md index a41d11dc7..5e906a042 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-impersonator.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-labels.md b/examples/1.9.x/server-nodejs/examples/users/update-labels.md index 28f28931a..e2b81ef57 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-labels.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-labels.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-nodejs/examples/users/update-mfa-recovery-codes.md index 41fa921e6..0fb0e1709 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-mfa.md b/examples/1.9.x/server-nodejs/examples/users/update-mfa.md index c62e10fc6..5ac73e484 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-mfa.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-mfa.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-name.md b/examples/1.9.x/server-nodejs/examples/users/update-name.md index 03369c9ca..cd9ea8f21 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-name.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-name.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-password.md b/examples/1.9.x/server-nodejs/examples/users/update-password.md index ab572ca01..0d549bb59 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-password.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-password.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-phone-verification.md b/examples/1.9.x/server-nodejs/examples/users/update-phone-verification.md index 4489902d9..a59de2ec5 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-phone-verification.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-phone.md b/examples/1.9.x/server-nodejs/examples/users/update-phone.md index d45d5ed07..9193261e6 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-phone.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-phone.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-prefs.md b/examples/1.9.x/server-nodejs/examples/users/update-prefs.md index 3bb011ae4..5d7829a09 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-prefs.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-prefs.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-status.md b/examples/1.9.x/server-nodejs/examples/users/update-status.md index ec7d5bdbc..f1d5219a5 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-status.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-status.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/users/update-target.md b/examples/1.9.x/server-nodejs/examples/users/update-target.md index d1dcf74a7..6e62f1c32 100644 --- a/examples/1.9.x/server-nodejs/examples/users/update-target.md +++ b/examples/1.9.x/server-nodejs/examples/users/update-target.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/webhooks/create.md b/examples/1.9.x/server-nodejs/examples/webhooks/create.md index c8603872a..952153e24 100644 --- a/examples/1.9.x/server-nodejs/examples/webhooks/create.md +++ b/examples/1.9.x/server-nodejs/examples/webhooks/create.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/webhooks/delete.md b/examples/1.9.x/server-nodejs/examples/webhooks/delete.md index 51639e226..e6e83ab84 100644 --- a/examples/1.9.x/server-nodejs/examples/webhooks/delete.md +++ b/examples/1.9.x/server-nodejs/examples/webhooks/delete.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/webhooks/get.md b/examples/1.9.x/server-nodejs/examples/webhooks/get.md index 07d1ecda4..7ea2f2a72 100644 --- a/examples/1.9.x/server-nodejs/examples/webhooks/get.md +++ b/examples/1.9.x/server-nodejs/examples/webhooks/get.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/webhooks/list.md b/examples/1.9.x/server-nodejs/examples/webhooks/list.md index f509df714..6eb65fb7e 100644 --- a/examples/1.9.x/server-nodejs/examples/webhooks/list.md +++ b/examples/1.9.x/server-nodejs/examples/webhooks/list.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/webhooks/update-secret.md b/examples/1.9.x/server-nodejs/examples/webhooks/update-secret.md index 7c0e504c2..56ae678a7 100644 --- a/examples/1.9.x/server-nodejs/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-nodejs/examples/webhooks/update-secret.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-nodejs/examples/webhooks/update.md b/examples/1.9.x/server-nodejs/examples/webhooks/update.md index 6596e900f..63a6b1b98 100644 --- a/examples/1.9.x/server-nodejs/examples/webhooks/update.md +++ b/examples/1.9.x/server-nodejs/examples/webhooks/update.md @@ -2,7 +2,7 @@ const sdk = require('node-appwrite'); const client = new sdk.Client() - .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + .setEndpoint('') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/account/create-anonymous-session.md b/examples/1.9.x/server-php/examples/account/create-anonymous-session.md index 90283cf33..a5729a862 100644 --- a/examples/1.9.x/server-php/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-php/examples/account/create-anonymous-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-email-password-session.md b/examples/1.9.x/server-php/examples/account/create-email-password-session.md index 2a80ab617..3ee8b04e8 100644 --- a/examples/1.9.x/server-php/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-php/examples/account/create-email-password-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-email-token.md b/examples/1.9.x/server-php/examples/account/create-email-token.md index 9c20e746d..6093aa24b 100644 --- a/examples/1.9.x/server-php/examples/account/create-email-token.md +++ b/examples/1.9.x/server-php/examples/account/create-email-token.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-email-verification.md b/examples/1.9.x/server-php/examples/account/create-email-verification.md index 650f57773..55c2fdc88 100644 --- a/examples/1.9.x/server-php/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-php/examples/account/create-email-verification.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-jwt.md b/examples/1.9.x/server-php/examples/account/create-jwt.md index 3314407a0..07919b646 100644 --- a/examples/1.9.x/server-php/examples/account/create-jwt.md +++ b/examples/1.9.x/server-php/examples/account/create-jwt.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-magic-url-token.md b/examples/1.9.x/server-php/examples/account/create-magic-url-token.md index a4dde3d78..bb94138c4 100644 --- a/examples/1.9.x/server-php/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-php/examples/account/create-magic-url-token.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-php/examples/account/create-mfa-authenticator.md index fbbc193fd..593bcc61d 100644 --- a/examples/1.9.x/server-php/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-php/examples/account/create-mfa-authenticator.md @@ -6,7 +6,7 @@ use Appwrite\Services\Account; use Appwrite\Enums\AuthenticatorType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-php/examples/account/create-mfa-challenge.md index 08bf57d87..56099ced0 100644 --- a/examples/1.9.x/server-php/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-php/examples/account/create-mfa-challenge.md @@ -6,7 +6,7 @@ use Appwrite\Services\Account; use Appwrite\Enums\AuthenticationFactor; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-php/examples/account/create-mfa-recovery-codes.md index 655663f7f..af1d990b9 100644 --- a/examples/1.9.x/server-php/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-php/examples/account/create-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-php/examples/account/create-o-auth-2-token.md index 170192d67..ba52ebfe5 100644 --- a/examples/1.9.x/server-php/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-php/examples/account/create-o-auth-2-token.md @@ -6,7 +6,7 @@ use Appwrite\Services\Account; use Appwrite\Enums\OAuthProvider; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-phone-token.md b/examples/1.9.x/server-php/examples/account/create-phone-token.md index f48754f50..19a15ffd2 100644 --- a/examples/1.9.x/server-php/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-php/examples/account/create-phone-token.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-phone-verification.md b/examples/1.9.x/server-php/examples/account/create-phone-verification.md index 4cedfba48..5f64e40c1 100644 --- a/examples/1.9.x/server-php/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-php/examples/account/create-phone-verification.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-recovery.md b/examples/1.9.x/server-php/examples/account/create-recovery.md index c6eaadaf9..17be1b2ce 100644 --- a/examples/1.9.x/server-php/examples/account/create-recovery.md +++ b/examples/1.9.x/server-php/examples/account/create-recovery.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-session.md b/examples/1.9.x/server-php/examples/account/create-session.md index 6e339b09f..b0b175e5a 100644 --- a/examples/1.9.x/server-php/examples/account/create-session.md +++ b/examples/1.9.x/server-php/examples/account/create-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create-verification.md b/examples/1.9.x/server-php/examples/account/create-verification.md index 2266a0f1f..3715ba96f 100644 --- a/examples/1.9.x/server-php/examples/account/create-verification.md +++ b/examples/1.9.x/server-php/examples/account/create-verification.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/create.md b/examples/1.9.x/server-php/examples/account/create.md index 8975698b2..68d4a9fb5 100644 --- a/examples/1.9.x/server-php/examples/account/create.md +++ b/examples/1.9.x/server-php/examples/account/create.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/delete-identity.md b/examples/1.9.x/server-php/examples/account/delete-identity.md index 56db56fd8..13b2e62dd 100644 --- a/examples/1.9.x/server-php/examples/account/delete-identity.md +++ b/examples/1.9.x/server-php/examples/account/delete-identity.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-php/examples/account/delete-mfa-authenticator.md index c171381d5..b5fb6584a 100644 --- a/examples/1.9.x/server-php/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-php/examples/account/delete-mfa-authenticator.md @@ -6,7 +6,7 @@ use Appwrite\Services\Account; use Appwrite\Enums\AuthenticatorType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/delete-session.md b/examples/1.9.x/server-php/examples/account/delete-session.md index b200785f4..9a3ad278f 100644 --- a/examples/1.9.x/server-php/examples/account/delete-session.md +++ b/examples/1.9.x/server-php/examples/account/delete-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/delete-sessions.md b/examples/1.9.x/server-php/examples/account/delete-sessions.md index 7886fabf7..cb99d9de6 100644 --- a/examples/1.9.x/server-php/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-php/examples/account/delete-sessions.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-php/examples/account/get-mfa-recovery-codes.md index 9a99dac2c..9776ef4f1 100644 --- a/examples/1.9.x/server-php/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-php/examples/account/get-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/get-prefs.md b/examples/1.9.x/server-php/examples/account/get-prefs.md index e1259176d..b25943fd6 100644 --- a/examples/1.9.x/server-php/examples/account/get-prefs.md +++ b/examples/1.9.x/server-php/examples/account/get-prefs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/get-session.md b/examples/1.9.x/server-php/examples/account/get-session.md index 7e79a07f7..72f153ba3 100644 --- a/examples/1.9.x/server-php/examples/account/get-session.md +++ b/examples/1.9.x/server-php/examples/account/get-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/get.md b/examples/1.9.x/server-php/examples/account/get.md index d1fb255bc..d1675b228 100644 --- a/examples/1.9.x/server-php/examples/account/get.md +++ b/examples/1.9.x/server-php/examples/account/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/list-identities.md b/examples/1.9.x/server-php/examples/account/list-identities.md index 1bd2ef026..07b66f20a 100644 --- a/examples/1.9.x/server-php/examples/account/list-identities.md +++ b/examples/1.9.x/server-php/examples/account/list-identities.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/list-logs.md b/examples/1.9.x/server-php/examples/account/list-logs.md index 763b7727c..fca4f0dd3 100644 --- a/examples/1.9.x/server-php/examples/account/list-logs.md +++ b/examples/1.9.x/server-php/examples/account/list-logs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/list-mfa-factors.md b/examples/1.9.x/server-php/examples/account/list-mfa-factors.md index 96b6021bf..c615666e3 100644 --- a/examples/1.9.x/server-php/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-php/examples/account/list-mfa-factors.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/list-sessions.md b/examples/1.9.x/server-php/examples/account/list-sessions.md index 9c42f8ca8..206f9070a 100644 --- a/examples/1.9.x/server-php/examples/account/list-sessions.md +++ b/examples/1.9.x/server-php/examples/account/list-sessions.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-email-verification.md b/examples/1.9.x/server-php/examples/account/update-email-verification.md index 2fa17a543..0806d2740 100644 --- a/examples/1.9.x/server-php/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-php/examples/account/update-email-verification.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-email.md b/examples/1.9.x/server-php/examples/account/update-email.md index 8cdfc5f1f..2d82cb8f5 100644 --- a/examples/1.9.x/server-php/examples/account/update-email.md +++ b/examples/1.9.x/server-php/examples/account/update-email.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-magic-url-session.md b/examples/1.9.x/server-php/examples/account/update-magic-url-session.md index 055f0664c..18ae15efe 100644 --- a/examples/1.9.x/server-php/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-php/examples/account/update-magic-url-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-php/examples/account/update-mfa-authenticator.md index c2f9dd667..e9040f964 100644 --- a/examples/1.9.x/server-php/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-php/examples/account/update-mfa-authenticator.md @@ -6,7 +6,7 @@ use Appwrite\Services\Account; use Appwrite\Enums\AuthenticatorType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-php/examples/account/update-mfa-challenge.md index effbb172f..235b17e8f 100644 --- a/examples/1.9.x/server-php/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-php/examples/account/update-mfa-challenge.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-php/examples/account/update-mfa-recovery-codes.md index ee16a9c9d..38376fe5d 100644 --- a/examples/1.9.x/server-php/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-php/examples/account/update-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-mfa.md b/examples/1.9.x/server-php/examples/account/update-mfa.md index 3d2f9b625..1759fa75d 100644 --- a/examples/1.9.x/server-php/examples/account/update-mfa.md +++ b/examples/1.9.x/server-php/examples/account/update-mfa.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-name.md b/examples/1.9.x/server-php/examples/account/update-name.md index 4a34bc328..00091f226 100644 --- a/examples/1.9.x/server-php/examples/account/update-name.md +++ b/examples/1.9.x/server-php/examples/account/update-name.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-password.md b/examples/1.9.x/server-php/examples/account/update-password.md index ea1996a6f..6328c2944 100644 --- a/examples/1.9.x/server-php/examples/account/update-password.md +++ b/examples/1.9.x/server-php/examples/account/update-password.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-phone-session.md b/examples/1.9.x/server-php/examples/account/update-phone-session.md index 67b5816dc..6435d2583 100644 --- a/examples/1.9.x/server-php/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-php/examples/account/update-phone-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-phone-verification.md b/examples/1.9.x/server-php/examples/account/update-phone-verification.md index 877a0346e..62342aa33 100644 --- a/examples/1.9.x/server-php/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-php/examples/account/update-phone-verification.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-phone.md b/examples/1.9.x/server-php/examples/account/update-phone.md index 6b5e9cad6..b43ece49b 100644 --- a/examples/1.9.x/server-php/examples/account/update-phone.md +++ b/examples/1.9.x/server-php/examples/account/update-phone.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-prefs.md b/examples/1.9.x/server-php/examples/account/update-prefs.md index 4709edd24..839b4dd3e 100644 --- a/examples/1.9.x/server-php/examples/account/update-prefs.md +++ b/examples/1.9.x/server-php/examples/account/update-prefs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-recovery.md b/examples/1.9.x/server-php/examples/account/update-recovery.md index 7b5c1d0b1..bb502b7cb 100644 --- a/examples/1.9.x/server-php/examples/account/update-recovery.md +++ b/examples/1.9.x/server-php/examples/account/update-recovery.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-session.md b/examples/1.9.x/server-php/examples/account/update-session.md index aecf2fe87..f402e1ea5 100644 --- a/examples/1.9.x/server-php/examples/account/update-session.md +++ b/examples/1.9.x/server-php/examples/account/update-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-status.md b/examples/1.9.x/server-php/examples/account/update-status.md index 7f0088a63..7418e4fdb 100644 --- a/examples/1.9.x/server-php/examples/account/update-status.md +++ b/examples/1.9.x/server-php/examples/account/update-status.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/account/update-verification.md b/examples/1.9.x/server-php/examples/account/update-verification.md index 24bb3ff0d..e6d46e87e 100644 --- a/examples/1.9.x/server-php/examples/account/update-verification.md +++ b/examples/1.9.x/server-php/examples/account/update-verification.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Account; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/activities/get-event.md b/examples/1.9.x/server-php/examples/activities/get-event.md index 6b8f5421b..4648be269 100644 --- a/examples/1.9.x/server-php/examples/activities/get-event.md +++ b/examples/1.9.x/server-php/examples/activities/get-event.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Activities; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/activities/list-events.md b/examples/1.9.x/server-php/examples/activities/list-events.md index ef9a9d701..e76a6e86c 100644 --- a/examples/1.9.x/server-php/examples/activities/list-events.md +++ b/examples/1.9.x/server-php/examples/activities/list-events.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Activities; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/advisor/delete-report.md b/examples/1.9.x/server-php/examples/advisor/delete-report.md index 997fd5e90..45f51a009 100644 --- a/examples/1.9.x/server-php/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-php/examples/advisor/delete-report.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Advisor; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/advisor/get-insight.md b/examples/1.9.x/server-php/examples/advisor/get-insight.md index 421a84764..cc3f9aaf8 100644 --- a/examples/1.9.x/server-php/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-php/examples/advisor/get-insight.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Advisor; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/advisor/get-report.md b/examples/1.9.x/server-php/examples/advisor/get-report.md index 8baacab7d..922640b32 100644 --- a/examples/1.9.x/server-php/examples/advisor/get-report.md +++ b/examples/1.9.x/server-php/examples/advisor/get-report.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Advisor; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/advisor/list-insights.md b/examples/1.9.x/server-php/examples/advisor/list-insights.md index 10cf4fd94..6d811b0c0 100644 --- a/examples/1.9.x/server-php/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-php/examples/advisor/list-insights.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Advisor; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/advisor/list-reports.md b/examples/1.9.x/server-php/examples/advisor/list-reports.md index 29c422066..04f92abec 100644 --- a/examples/1.9.x/server-php/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-php/examples/advisor/list-reports.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Advisor; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/avatars/get-browser.md b/examples/1.9.x/server-php/examples/avatars/get-browser.md index ec2a7599f..fc345d875 100644 --- a/examples/1.9.x/server-php/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-php/examples/avatars/get-browser.md @@ -6,7 +6,7 @@ use Appwrite\Services\Avatars; use Appwrite\Enums\Browser; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/avatars/get-credit-card.md b/examples/1.9.x/server-php/examples/avatars/get-credit-card.md index 05ddc2478..b109bf985 100644 --- a/examples/1.9.x/server-php/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-php/examples/avatars/get-credit-card.md @@ -6,7 +6,7 @@ use Appwrite\Services\Avatars; use Appwrite\Enums\CreditCard; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/avatars/get-favicon.md b/examples/1.9.x/server-php/examples/avatars/get-favicon.md index 424cea84b..b38224987 100644 --- a/examples/1.9.x/server-php/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-php/examples/avatars/get-favicon.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Avatars; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/avatars/get-flag.md b/examples/1.9.x/server-php/examples/avatars/get-flag.md index 1a4ef37af..7484a60cd 100644 --- a/examples/1.9.x/server-php/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-php/examples/avatars/get-flag.md @@ -6,7 +6,7 @@ use Appwrite\Services\Avatars; use Appwrite\Enums\Flag; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/avatars/get-image.md b/examples/1.9.x/server-php/examples/avatars/get-image.md index 4ceb8d380..91578558d 100644 --- a/examples/1.9.x/server-php/examples/avatars/get-image.md +++ b/examples/1.9.x/server-php/examples/avatars/get-image.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Avatars; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/avatars/get-initials.md b/examples/1.9.x/server-php/examples/avatars/get-initials.md index 2bd523b51..757568b61 100644 --- a/examples/1.9.x/server-php/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-php/examples/avatars/get-initials.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Avatars; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/avatars/get-qr.md b/examples/1.9.x/server-php/examples/avatars/get-qr.md index ad49bf9e6..b0963ae63 100644 --- a/examples/1.9.x/server-php/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-php/examples/avatars/get-qr.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Avatars; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/avatars/get-screenshot.md b/examples/1.9.x/server-php/examples/avatars/get-screenshot.md index 8d9f9575e..3c6c57d34 100644 --- a/examples/1.9.x/server-php/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-php/examples/avatars/get-screenshot.md @@ -3,13 +3,13 @@ use Appwrite\Client; use Appwrite\Services\Avatars; -use Appwrite\Enums\Theme; +use Appwrite\Enums\BrowserTheme; use Appwrite\Enums\Timezone; use Appwrite\Enums\BrowserPermission; use Appwrite\Enums\ImageFormat; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with @@ -24,7 +24,7 @@ $result = $avatars->getScreenshot( viewportWidth: 1920, // optional viewportHeight: 1080, // optional scale: 2, // optional - theme: Theme::DARK(), // optional + theme: BrowserTheme::DARK(), // optional userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', // optional fullpage: true, // optional locale: 'en-US', // optional diff --git a/examples/1.9.x/server-php/examples/backups/create-archive.md b/examples/1.9.x/server-php/examples/backups/create-archive.md index d73db2e25..c7ab38144 100644 --- a/examples/1.9.x/server-php/examples/backups/create-archive.md +++ b/examples/1.9.x/server-php/examples/backups/create-archive.md @@ -6,7 +6,7 @@ use Appwrite\Services\Backups; use Appwrite\Enums\BackupServices; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/create-policy.md b/examples/1.9.x/server-php/examples/backups/create-policy.md index ea87f2802..f9e38d6cf 100644 --- a/examples/1.9.x/server-php/examples/backups/create-policy.md +++ b/examples/1.9.x/server-php/examples/backups/create-policy.md @@ -6,7 +6,7 @@ use Appwrite\Services\Backups; use Appwrite\Enums\BackupServices; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/create-restoration.md b/examples/1.9.x/server-php/examples/backups/create-restoration.md index 61d9e0b23..9c21ff464 100644 --- a/examples/1.9.x/server-php/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-php/examples/backups/create-restoration.md @@ -6,7 +6,7 @@ use Appwrite\Services\Backups; use Appwrite\Enums\BackupServices; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/delete-archive.md b/examples/1.9.x/server-php/examples/backups/delete-archive.md index a6c3d3325..2b3842b5f 100644 --- a/examples/1.9.x/server-php/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-php/examples/backups/delete-archive.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/delete-policy.md b/examples/1.9.x/server-php/examples/backups/delete-policy.md index 3c6df8f4d..5e19a303f 100644 --- a/examples/1.9.x/server-php/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-php/examples/backups/delete-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/get-archive.md b/examples/1.9.x/server-php/examples/backups/get-archive.md index 6fa9ea930..8f4d7ea1f 100644 --- a/examples/1.9.x/server-php/examples/backups/get-archive.md +++ b/examples/1.9.x/server-php/examples/backups/get-archive.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/get-policy.md b/examples/1.9.x/server-php/examples/backups/get-policy.md index e8ce5c8f8..876842f00 100644 --- a/examples/1.9.x/server-php/examples/backups/get-policy.md +++ b/examples/1.9.x/server-php/examples/backups/get-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/get-restoration.md b/examples/1.9.x/server-php/examples/backups/get-restoration.md index ed3e94ab9..f1ded08dd 100644 --- a/examples/1.9.x/server-php/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-php/examples/backups/get-restoration.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/list-archives.md b/examples/1.9.x/server-php/examples/backups/list-archives.md index 4060e3c08..a0db60074 100644 --- a/examples/1.9.x/server-php/examples/backups/list-archives.md +++ b/examples/1.9.x/server-php/examples/backups/list-archives.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/list-policies.md b/examples/1.9.x/server-php/examples/backups/list-policies.md index a8b03316f..ec0db7462 100644 --- a/examples/1.9.x/server-php/examples/backups/list-policies.md +++ b/examples/1.9.x/server-php/examples/backups/list-policies.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/list-restorations.md b/examples/1.9.x/server-php/examples/backups/list-restorations.md index 2c7132b2a..2dbfa1197 100644 --- a/examples/1.9.x/server-php/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-php/examples/backups/list-restorations.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/backups/update-policy.md b/examples/1.9.x/server-php/examples/backups/update-policy.md index fe53fa2be..898f2ace6 100644 --- a/examples/1.9.x/server-php/examples/backups/update-policy.md +++ b/examples/1.9.x/server-php/examples/backups/update-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Backups; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-php/examples/databases/create-big-int-attribute.md index eea06b58a..af751c4fc 100644 --- a/examples/1.9.x/server-php/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-big-int-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-php/examples/databases/create-boolean-attribute.md index 746db6be0..285fe3a4d 100644 --- a/examples/1.9.x/server-php/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-boolean-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-collection.md b/examples/1.9.x/server-php/examples/databases/create-collection.md index a90e579be..2da737480 100644 --- a/examples/1.9.x/server-php/examples/databases/create-collection.md +++ b/examples/1.9.x/server-php/examples/databases/create-collection.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-php/examples/databases/create-datetime-attribute.md index 862ed260b..28b3838cb 100644 --- a/examples/1.9.x/server-php/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-datetime-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-document.md b/examples/1.9.x/server-php/examples/databases/create-document.md index f8e7e9432..ac5055c70 100644 --- a/examples/1.9.x/server-php/examples/databases/create-document.md +++ b/examples/1.9.x/server-php/examples/databases/create-document.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/databases/create-documents.md b/examples/1.9.x/server-php/examples/databases/create-documents.md index f4f153ae8..2a0c30dd3 100644 --- a/examples/1.9.x/server-php/examples/databases/create-documents.md +++ b/examples/1.9.x/server-php/examples/databases/create-documents.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-email-attribute.md b/examples/1.9.x/server-php/examples/databases/create-email-attribute.md index 4f53b8acb..56a4660f0 100644 --- a/examples/1.9.x/server-php/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-email-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-php/examples/databases/create-enum-attribute.md index 49eb90a5d..1706436b3 100644 --- a/examples/1.9.x/server-php/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-enum-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-float-attribute.md b/examples/1.9.x/server-php/examples/databases/create-float-attribute.md index 60486bbbd..acd7e5ea0 100644 --- a/examples/1.9.x/server-php/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-float-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-index.md b/examples/1.9.x/server-php/examples/databases/create-index.md index 9ecf25ab7..4b140b6eb 100644 --- a/examples/1.9.x/server-php/examples/databases/create-index.md +++ b/examples/1.9.x/server-php/examples/databases/create-index.md @@ -7,7 +7,7 @@ use Appwrite\Enums\DatabasesIndexType; use Appwrite\Enums\OrderBy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-php/examples/databases/create-integer-attribute.md index e1c771fe8..affe97df5 100644 --- a/examples/1.9.x/server-php/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-integer-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-php/examples/databases/create-ip-attribute.md index b15fc3867..7ec8b1d55 100644 --- a/examples/1.9.x/server-php/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-ip-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-line-attribute.md b/examples/1.9.x/server-php/examples/databases/create-line-attribute.md index dd59e00b1..82c1ae7ce 100644 --- a/examples/1.9.x/server-php/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-line-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-php/examples/databases/create-longtext-attribute.md index cc597b5af..6ae87acbf 100644 --- a/examples/1.9.x/server-php/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-longtext-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-php/examples/databases/create-mediumtext-attribute.md index 16fbe8091..8a8e96c2c 100644 --- a/examples/1.9.x/server-php/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-mediumtext-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-operations.md b/examples/1.9.x/server-php/examples/databases/create-operations.md index 10b2e6c5e..75f0e8ddf 100644 --- a/examples/1.9.x/server-php/examples/databases/create-operations.md +++ b/examples/1.9.x/server-php/examples/databases/create-operations.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-point-attribute.md b/examples/1.9.x/server-php/examples/databases/create-point-attribute.md index 14ced405b..a56c90e43 100644 --- a/examples/1.9.x/server-php/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-point-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-php/examples/databases/create-polygon-attribute.md index 5886cf2cb..92cfc54c9 100644 --- a/examples/1.9.x/server-php/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-polygon-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-php/examples/databases/create-relationship-attribute.md index 739b27e20..241710eae 100644 --- a/examples/1.9.x/server-php/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-relationship-attribute.md @@ -7,7 +7,7 @@ use Appwrite\Enums\RelationshipType; use Appwrite\Enums\RelationMutate; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-string-attribute.md b/examples/1.9.x/server-php/examples/databases/create-string-attribute.md index e6da9507d..bfae2d5d3 100644 --- a/examples/1.9.x/server-php/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-string-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-text-attribute.md b/examples/1.9.x/server-php/examples/databases/create-text-attribute.md index 30067dcef..bae35b40b 100644 --- a/examples/1.9.x/server-php/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-text-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-transaction.md b/examples/1.9.x/server-php/examples/databases/create-transaction.md index 9ca80288f..35addfc36 100644 --- a/examples/1.9.x/server-php/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-php/examples/databases/create-transaction.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-url-attribute.md b/examples/1.9.x/server-php/examples/databases/create-url-attribute.md index c1b432dfe..c37783675 100644 --- a/examples/1.9.x/server-php/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-url-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-php/examples/databases/create-varchar-attribute.md index 1ebbff5ff..68d5efd3b 100644 --- a/examples/1.9.x/server-php/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/create-varchar-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/create.md b/examples/1.9.x/server-php/examples/databases/create.md index 867c31c23..e988a268c 100644 --- a/examples/1.9.x/server-php/examples/databases/create.md +++ b/examples/1.9.x/server-php/examples/databases/create.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-php/examples/databases/decrement-document-attribute.md index 2c00e7874..3c6679b87 100644 --- a/examples/1.9.x/server-php/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/decrement-document-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/databases/delete-attribute.md b/examples/1.9.x/server-php/examples/databases/delete-attribute.md index cc7774366..d2db29a47 100644 --- a/examples/1.9.x/server-php/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/delete-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/delete-collection.md b/examples/1.9.x/server-php/examples/databases/delete-collection.md index 8419bc415..34b6defee 100644 --- a/examples/1.9.x/server-php/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-php/examples/databases/delete-collection.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/delete-document.md b/examples/1.9.x/server-php/examples/databases/delete-document.md index c0c620bcf..e18517f45 100644 --- a/examples/1.9.x/server-php/examples/databases/delete-document.md +++ b/examples/1.9.x/server-php/examples/databases/delete-document.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/databases/delete-documents.md b/examples/1.9.x/server-php/examples/databases/delete-documents.md index 124294dc2..b3aecf016 100644 --- a/examples/1.9.x/server-php/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-php/examples/databases/delete-documents.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/delete-index.md b/examples/1.9.x/server-php/examples/databases/delete-index.md index d81060996..b1d011de3 100644 --- a/examples/1.9.x/server-php/examples/databases/delete-index.md +++ b/examples/1.9.x/server-php/examples/databases/delete-index.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/delete-transaction.md b/examples/1.9.x/server-php/examples/databases/delete-transaction.md index 3e2db81e7..3129e35df 100644 --- a/examples/1.9.x/server-php/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-php/examples/databases/delete-transaction.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/delete.md b/examples/1.9.x/server-php/examples/databases/delete.md index 9d89cfbc8..0e4284c7a 100644 --- a/examples/1.9.x/server-php/examples/databases/delete.md +++ b/examples/1.9.x/server-php/examples/databases/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/get-attribute.md b/examples/1.9.x/server-php/examples/databases/get-attribute.md index 4f3f7f77d..4e081deeb 100644 --- a/examples/1.9.x/server-php/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/get-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/get-collection.md b/examples/1.9.x/server-php/examples/databases/get-collection.md index e3cccdf32..7dc970a10 100644 --- a/examples/1.9.x/server-php/examples/databases/get-collection.md +++ b/examples/1.9.x/server-php/examples/databases/get-collection.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/get-document.md b/examples/1.9.x/server-php/examples/databases/get-document.md index 90f8760e7..b755920c8 100644 --- a/examples/1.9.x/server-php/examples/databases/get-document.md +++ b/examples/1.9.x/server-php/examples/databases/get-document.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/databases/get-index.md b/examples/1.9.x/server-php/examples/databases/get-index.md index 001fc6eda..d41fba301 100644 --- a/examples/1.9.x/server-php/examples/databases/get-index.md +++ b/examples/1.9.x/server-php/examples/databases/get-index.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/get-transaction.md b/examples/1.9.x/server-php/examples/databases/get-transaction.md index 82b34ae60..92faa96da 100644 --- a/examples/1.9.x/server-php/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-php/examples/databases/get-transaction.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/get.md b/examples/1.9.x/server-php/examples/databases/get.md index 59a83bf9f..d5ceec25d 100644 --- a/examples/1.9.x/server-php/examples/databases/get.md +++ b/examples/1.9.x/server-php/examples/databases/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-php/examples/databases/increment-document-attribute.md index 8782cf7dc..da949ad68 100644 --- a/examples/1.9.x/server-php/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/increment-document-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/databases/list-attributes.md b/examples/1.9.x/server-php/examples/databases/list-attributes.md index dac753dbe..195525d10 100644 --- a/examples/1.9.x/server-php/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-php/examples/databases/list-attributes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/list-collections.md b/examples/1.9.x/server-php/examples/databases/list-collections.md index 7f994e1da..2931828fd 100644 --- a/examples/1.9.x/server-php/examples/databases/list-collections.md +++ b/examples/1.9.x/server-php/examples/databases/list-collections.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/list-documents.md b/examples/1.9.x/server-php/examples/databases/list-documents.md index 8e3185806..02b52bf71 100644 --- a/examples/1.9.x/server-php/examples/databases/list-documents.md +++ b/examples/1.9.x/server-php/examples/databases/list-documents.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/databases/list-indexes.md b/examples/1.9.x/server-php/examples/databases/list-indexes.md index 1ebd26927..d4e067413 100644 --- a/examples/1.9.x/server-php/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-php/examples/databases/list-indexes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/list-transactions.md b/examples/1.9.x/server-php/examples/databases/list-transactions.md index 8990c74e6..6a997896a 100644 --- a/examples/1.9.x/server-php/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-php/examples/databases/list-transactions.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/list.md b/examples/1.9.x/server-php/examples/databases/list.md index d439184a4..97dc1bb65 100644 --- a/examples/1.9.x/server-php/examples/databases/list.md +++ b/examples/1.9.x/server-php/examples/databases/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-php/examples/databases/update-big-int-attribute.md index 5d0eb63e4..1a7c6bfcb 100644 --- a/examples/1.9.x/server-php/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-big-int-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-php/examples/databases/update-boolean-attribute.md index f63e5f3fc..f4041c43c 100644 --- a/examples/1.9.x/server-php/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-boolean-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-collection.md b/examples/1.9.x/server-php/examples/databases/update-collection.md index ddd369b1e..930ddfdd0 100644 --- a/examples/1.9.x/server-php/examples/databases/update-collection.md +++ b/examples/1.9.x/server-php/examples/databases/update-collection.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-php/examples/databases/update-datetime-attribute.md index 9bff9317c..fd7f424e2 100644 --- a/examples/1.9.x/server-php/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-datetime-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-document.md b/examples/1.9.x/server-php/examples/databases/update-document.md index 7a1854513..d75e411e3 100644 --- a/examples/1.9.x/server-php/examples/databases/update-document.md +++ b/examples/1.9.x/server-php/examples/databases/update-document.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/databases/update-documents.md b/examples/1.9.x/server-php/examples/databases/update-documents.md index c29a467df..5c98e5d9b 100644 --- a/examples/1.9.x/server-php/examples/databases/update-documents.md +++ b/examples/1.9.x/server-php/examples/databases/update-documents.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-email-attribute.md b/examples/1.9.x/server-php/examples/databases/update-email-attribute.md index b4421d5ec..497cfc3a2 100644 --- a/examples/1.9.x/server-php/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-email-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-php/examples/databases/update-enum-attribute.md index c2880f29d..3ec0aa5d4 100644 --- a/examples/1.9.x/server-php/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-enum-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-float-attribute.md b/examples/1.9.x/server-php/examples/databases/update-float-attribute.md index 3ea481889..aa5a83da8 100644 --- a/examples/1.9.x/server-php/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-float-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-php/examples/databases/update-integer-attribute.md index 29b7ac6b3..34a8e8cb0 100644 --- a/examples/1.9.x/server-php/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-integer-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-php/examples/databases/update-ip-attribute.md index c7490c5f6..922a66dbd 100644 --- a/examples/1.9.x/server-php/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-ip-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-line-attribute.md b/examples/1.9.x/server-php/examples/databases/update-line-attribute.md index 7cb7dabb8..2123d187d 100644 --- a/examples/1.9.x/server-php/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-line-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-php/examples/databases/update-longtext-attribute.md index d9a217d29..99656d3dc 100644 --- a/examples/1.9.x/server-php/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-longtext-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-php/examples/databases/update-mediumtext-attribute.md index bae03412e..4a901038a 100644 --- a/examples/1.9.x/server-php/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-mediumtext-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-point-attribute.md b/examples/1.9.x/server-php/examples/databases/update-point-attribute.md index 1359ec90a..37eee9af0 100644 --- a/examples/1.9.x/server-php/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-point-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-php/examples/databases/update-polygon-attribute.md index cf7999699..eccd9dd37 100644 --- a/examples/1.9.x/server-php/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-polygon-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-php/examples/databases/update-relationship-attribute.md index 824f1f717..e34525104 100644 --- a/examples/1.9.x/server-php/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-relationship-attribute.md @@ -6,7 +6,7 @@ use Appwrite\Services\Databases; use Appwrite\Enums\RelationMutate; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-string-attribute.md b/examples/1.9.x/server-php/examples/databases/update-string-attribute.md index 828dda47e..c09a30ec1 100644 --- a/examples/1.9.x/server-php/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-string-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-text-attribute.md b/examples/1.9.x/server-php/examples/databases/update-text-attribute.md index 8de8c78cd..bd85cd348 100644 --- a/examples/1.9.x/server-php/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-text-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-transaction.md b/examples/1.9.x/server-php/examples/databases/update-transaction.md index 13137b6b5..402f20f4f 100644 --- a/examples/1.9.x/server-php/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-php/examples/databases/update-transaction.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-url-attribute.md b/examples/1.9.x/server-php/examples/databases/update-url-attribute.md index 461abf559..d09777817 100644 --- a/examples/1.9.x/server-php/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-url-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-php/examples/databases/update-varchar-attribute.md index 0c5dbbe8e..e1a272cc8 100644 --- a/examples/1.9.x/server-php/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-php/examples/databases/update-varchar-attribute.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/update.md b/examples/1.9.x/server-php/examples/databases/update.md index 67af71aa2..3c2ef27f5 100644 --- a/examples/1.9.x/server-php/examples/databases/update.md +++ b/examples/1.9.x/server-php/examples/databases/update.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/databases/upsert-document.md b/examples/1.9.x/server-php/examples/databases/upsert-document.md index 9b01b8c26..0ccc8a6f0 100644 --- a/examples/1.9.x/server-php/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-php/examples/databases/upsert-document.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/databases/upsert-documents.md b/examples/1.9.x/server-php/examples/databases/upsert-documents.md index 5bc04d781..76351a759 100644 --- a/examples/1.9.x/server-php/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-php/examples/databases/upsert-documents.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Databases; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/create-deployment.md b/examples/1.9.x/server-php/examples/functions/create-deployment.md index cdee0ff90..6190cad18 100644 --- a/examples/1.9.x/server-php/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-php/examples/functions/create-deployment.md @@ -6,7 +6,7 @@ use Appwrite\InputFile; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-php/examples/functions/create-duplicate-deployment.md index 0cf3a8319..83b1ebf49 100644 --- a/examples/1.9.x/server-php/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-php/examples/functions/create-duplicate-deployment.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/create-execution.md b/examples/1.9.x/server-php/examples/functions/create-execution.md index 70a8fc06d..645d5f8e6 100644 --- a/examples/1.9.x/server-php/examples/functions/create-execution.md +++ b/examples/1.9.x/server-php/examples/functions/create-execution.md @@ -6,7 +6,7 @@ use Appwrite\Services\Functions; use Appwrite\Enums\ExecutionMethod; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/functions/create-template-deployment.md b/examples/1.9.x/server-php/examples/functions/create-template-deployment.md index c6dae9a92..e39713f2e 100644 --- a/examples/1.9.x/server-php/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-php/examples/functions/create-template-deployment.md @@ -6,7 +6,7 @@ use Appwrite\Services\Functions; use Appwrite\Enums\TemplateReferenceType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/create-variable.md b/examples/1.9.x/server-php/examples/functions/create-variable.md index 685a21aaf..4e7379800 100644 --- a/examples/1.9.x/server-php/examples/functions/create-variable.md +++ b/examples/1.9.x/server-php/examples/functions/create-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-php/examples/functions/create-vcs-deployment.md index 5ccab9503..7722fcaa8 100644 --- a/examples/1.9.x/server-php/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-php/examples/functions/create-vcs-deployment.md @@ -6,7 +6,7 @@ use Appwrite\Services\Functions; use Appwrite\Enums\VCSReferenceType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/create.md b/examples/1.9.x/server-php/examples/functions/create.md index 8f387dcba..45071335a 100644 --- a/examples/1.9.x/server-php/examples/functions/create.md +++ b/examples/1.9.x/server-php/examples/functions/create.md @@ -3,11 +3,11 @@ use Appwrite\Client; use Appwrite\Services\Functions; -use Appwrite\Enums\Runtime; -use Appwrite\Enums\Scopes; +use Appwrite\Enums\FunctionRuntime; +use Appwrite\Enums\ProjectKeyScopes; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key @@ -16,7 +16,7 @@ $functions = new Functions($client); $result = $functions->create( functionId: '', name: '', - runtime: Runtime::NODE145(), + runtime: FunctionRuntime::NODE145(), execute: ["any"], // optional events: [], // optional schedule: '', // optional @@ -25,12 +25,14 @@ $result = $functions->create( logging: false, // optional entrypoint: '', // optional commands: '', // optional - scopes: [Scopes::PROJECTREAD()], // optional + scopes: [ProjectKeyScopes::PROJECTREAD()], // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-php/examples/functions/delete-deployment.md b/examples/1.9.x/server-php/examples/functions/delete-deployment.md index 96e78e3b0..d7e0ab86d 100644 --- a/examples/1.9.x/server-php/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-php/examples/functions/delete-deployment.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/delete-execution.md b/examples/1.9.x/server-php/examples/functions/delete-execution.md index e95d2f70b..ca8505ce2 100644 --- a/examples/1.9.x/server-php/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-php/examples/functions/delete-execution.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/delete-variable.md b/examples/1.9.x/server-php/examples/functions/delete-variable.md index 9be2e1749..c5026e0eb 100644 --- a/examples/1.9.x/server-php/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-php/examples/functions/delete-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/delete.md b/examples/1.9.x/server-php/examples/functions/delete.md index d718bfbf6..26987e4fa 100644 --- a/examples/1.9.x/server-php/examples/functions/delete.md +++ b/examples/1.9.x/server-php/examples/functions/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/get-deployment-download.md b/examples/1.9.x/server-php/examples/functions/get-deployment-download.md index 73842f546..96090eba2 100644 --- a/examples/1.9.x/server-php/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-php/examples/functions/get-deployment-download.md @@ -6,7 +6,7 @@ use Appwrite\Services\Functions; use Appwrite\Enums\DeploymentDownloadType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/get-deployment.md b/examples/1.9.x/server-php/examples/functions/get-deployment.md index f8d4a26eb..4e620cc47 100644 --- a/examples/1.9.x/server-php/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-php/examples/functions/get-deployment.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/get-execution.md b/examples/1.9.x/server-php/examples/functions/get-execution.md index f647a7fdd..b9744e74f 100644 --- a/examples/1.9.x/server-php/examples/functions/get-execution.md +++ b/examples/1.9.x/server-php/examples/functions/get-execution.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/functions/get-variable.md b/examples/1.9.x/server-php/examples/functions/get-variable.md index 8d4086438..664685409 100644 --- a/examples/1.9.x/server-php/examples/functions/get-variable.md +++ b/examples/1.9.x/server-php/examples/functions/get-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/get.md b/examples/1.9.x/server-php/examples/functions/get.md index e5997ee2e..465601aa1 100644 --- a/examples/1.9.x/server-php/examples/functions/get.md +++ b/examples/1.9.x/server-php/examples/functions/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/list-deployments.md b/examples/1.9.x/server-php/examples/functions/list-deployments.md index bc46662ae..7347d6562 100644 --- a/examples/1.9.x/server-php/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-php/examples/functions/list-deployments.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/list-executions.md b/examples/1.9.x/server-php/examples/functions/list-executions.md index 9948e8621..fed97b067 100644 --- a/examples/1.9.x/server-php/examples/functions/list-executions.md +++ b/examples/1.9.x/server-php/examples/functions/list-executions.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/functions/list-runtimes.md b/examples/1.9.x/server-php/examples/functions/list-runtimes.md index 320a9dc6c..717949351 100644 --- a/examples/1.9.x/server-php/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-php/examples/functions/list-runtimes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/list-specifications.md b/examples/1.9.x/server-php/examples/functions/list-specifications.md index f5afe80b2..caefde803 100644 --- a/examples/1.9.x/server-php/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-php/examples/functions/list-specifications.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/list-variables.md b/examples/1.9.x/server-php/examples/functions/list-variables.md index 33d09ddf2..ffa54f8ab 100644 --- a/examples/1.9.x/server-php/examples/functions/list-variables.md +++ b/examples/1.9.x/server-php/examples/functions/list-variables.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/list.md b/examples/1.9.x/server-php/examples/functions/list.md index 2dc45db09..febc6a340 100644 --- a/examples/1.9.x/server-php/examples/functions/list.md +++ b/examples/1.9.x/server-php/examples/functions/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/update-deployment-status.md b/examples/1.9.x/server-php/examples/functions/update-deployment-status.md index 311645e52..f7494129a 100644 --- a/examples/1.9.x/server-php/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-php/examples/functions/update-deployment-status.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/update-function-deployment.md b/examples/1.9.x/server-php/examples/functions/update-function-deployment.md index b1c0edb7a..8c77f83f1 100644 --- a/examples/1.9.x/server-php/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-php/examples/functions/update-function-deployment.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/update-variable.md b/examples/1.9.x/server-php/examples/functions/update-variable.md index c4b9a4c30..8e5e42ae6 100644 --- a/examples/1.9.x/server-php/examples/functions/update-variable.md +++ b/examples/1.9.x/server-php/examples/functions/update-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Functions; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/functions/update.md b/examples/1.9.x/server-php/examples/functions/update.md index 564428c93..d7676704a 100644 --- a/examples/1.9.x/server-php/examples/functions/update.md +++ b/examples/1.9.x/server-php/examples/functions/update.md @@ -3,11 +3,11 @@ use Appwrite\Client; use Appwrite\Services\Functions; -use Appwrite\Enums\Runtime; -use Appwrite\Enums\Scopes; +use Appwrite\Enums\FunctionRuntime; +use Appwrite\Enums\ProjectKeyScopes; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key @@ -16,7 +16,7 @@ $functions = new Functions($client); $result = $functions->update( functionId: '', name: '', - runtime: Runtime::NODE145(), // optional + runtime: FunctionRuntime::NODE145(), // optional execute: ["any"], // optional events: [], // optional schedule: '', // optional @@ -25,12 +25,14 @@ $result = $functions->update( logging: false, // optional entrypoint: '', // optional commands: '', // optional - scopes: [Scopes::PROJECTREAD()], // optional + scopes: [ProjectKeyScopes::PROJECTREAD()], // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-php/examples/graphql/mutation.md b/examples/1.9.x/server-php/examples/graphql/mutation.md index 1e25bf739..d98ef953e 100644 --- a/examples/1.9.x/server-php/examples/graphql/mutation.md +++ b/examples/1.9.x/server-php/examples/graphql/mutation.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Graphql; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/graphql/query.md b/examples/1.9.x/server-php/examples/graphql/query.md index 90979942d..ff554ec1f 100644 --- a/examples/1.9.x/server-php/examples/graphql/query.md +++ b/examples/1.9.x/server-php/examples/graphql/query.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Graphql; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-antivirus.md b/examples/1.9.x/server-php/examples/health/get-antivirus.md index 7f57d8aa1..40645e488 100644 --- a/examples/1.9.x/server-php/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-php/examples/health/get-antivirus.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-cache.md b/examples/1.9.x/server-php/examples/health/get-cache.md index 8443c64f3..483c2c3c2 100644 --- a/examples/1.9.x/server-php/examples/health/get-cache.md +++ b/examples/1.9.x/server-php/examples/health/get-cache.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-certificate.md b/examples/1.9.x/server-php/examples/health/get-certificate.md index d1d1fd1e7..06e1964b9 100644 --- a/examples/1.9.x/server-php/examples/health/get-certificate.md +++ b/examples/1.9.x/server-php/examples/health/get-certificate.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-console-pausing.md b/examples/1.9.x/server-php/examples/health/get-console-pausing.md index 06a434d8f..f7704caf1 100644 --- a/examples/1.9.x/server-php/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-php/examples/health/get-console-pausing.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-db.md b/examples/1.9.x/server-php/examples/health/get-db.md index 1682bcf32..bba2e9f94 100644 --- a/examples/1.9.x/server-php/examples/health/get-db.md +++ b/examples/1.9.x/server-php/examples/health/get-db.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-failed-jobs.md b/examples/1.9.x/server-php/examples/health/get-failed-jobs.md index 858676352..1e6921d54 100644 --- a/examples/1.9.x/server-php/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-php/examples/health/get-failed-jobs.md @@ -3,16 +3,16 @@ use Appwrite\Client; use Appwrite\Services\Health; -use Appwrite\Enums\Name; +use Appwrite\Enums\HealthQueueName; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key $health = new Health($client); $result = $health->getFailedJobs( - name: Name::V1DATABASE(), + name: HealthQueueName::V1DATABASE(), threshold: null // optional );``` diff --git a/examples/1.9.x/server-php/examples/health/get-pub-sub.md b/examples/1.9.x/server-php/examples/health/get-pub-sub.md index 97dc4b6f7..d8c28b59e 100644 --- a/examples/1.9.x/server-php/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-php/examples/health/get-pub-sub.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-audits.md b/examples/1.9.x/server-php/examples/health/get-queue-audits.md index 2bfc32e84..ba975d4f8 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-audits.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-builds.md b/examples/1.9.x/server-php/examples/health/get-queue-builds.md index 607acb203..fbffc14c0 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-builds.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-certificates.md b/examples/1.9.x/server-php/examples/health/get-queue-certificates.md index d70b65749..394f48975 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-certificates.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-databases.md b/examples/1.9.x/server-php/examples/health/get-queue-databases.md index 96bfb6fd1..21b4f9a42 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-databases.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-deletes.md b/examples/1.9.x/server-php/examples/health/get-queue-deletes.md index 2b147f42d..89f06c92a 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-deletes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-functions.md b/examples/1.9.x/server-php/examples/health/get-queue-functions.md index d5b584420..ac2310c38 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-functions.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-logs.md b/examples/1.9.x/server-php/examples/health/get-queue-logs.md index cb0125cbf..7473970a8 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-logs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-mails.md b/examples/1.9.x/server-php/examples/health/get-queue-mails.md index 56babd6c6..f00c31210 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-mails.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-messaging.md b/examples/1.9.x/server-php/examples/health/get-queue-messaging.md index 4539c5d91..73add9e6c 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-messaging.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-migrations.md b/examples/1.9.x/server-php/examples/health/get-queue-migrations.md index 36b8d4b4c..94d3aae4f 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-migrations.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-php/examples/health/get-queue-stats-resources.md index da4cee7a2..993fb8df5 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-stats-resources.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-usage.md b/examples/1.9.x/server-php/examples/health/get-queue-usage.md index dd35802b7..46a42af04 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-usage.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-php/examples/health/get-queue-webhooks.md index d2877ce6a..d37b9ba77 100644 --- a/examples/1.9.x/server-php/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-php/examples/health/get-queue-webhooks.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-storage-local.md b/examples/1.9.x/server-php/examples/health/get-storage-local.md index d7524bad0..8d42c7b71 100644 --- a/examples/1.9.x/server-php/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-php/examples/health/get-storage-local.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-storage.md b/examples/1.9.x/server-php/examples/health/get-storage.md index 2a109decf..f50cc24d4 100644 --- a/examples/1.9.x/server-php/examples/health/get-storage.md +++ b/examples/1.9.x/server-php/examples/health/get-storage.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get-time.md b/examples/1.9.x/server-php/examples/health/get-time.md index 559b17975..637c9c604 100644 --- a/examples/1.9.x/server-php/examples/health/get-time.md +++ b/examples/1.9.x/server-php/examples/health/get-time.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/health/get.md b/examples/1.9.x/server-php/examples/health/get.md index 4b46ac2c2..b2cb04611 100644 --- a/examples/1.9.x/server-php/examples/health/get.md +++ b/examples/1.9.x/server-php/examples/health/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Health; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/locale/get.md b/examples/1.9.x/server-php/examples/locale/get.md index 8b204573d..f2ba6f4c3 100644 --- a/examples/1.9.x/server-php/examples/locale/get.md +++ b/examples/1.9.x/server-php/examples/locale/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Locale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/locale/list-codes.md b/examples/1.9.x/server-php/examples/locale/list-codes.md index 5c99bbf2d..bd0bec13d 100644 --- a/examples/1.9.x/server-php/examples/locale/list-codes.md +++ b/examples/1.9.x/server-php/examples/locale/list-codes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Locale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/locale/list-continents.md b/examples/1.9.x/server-php/examples/locale/list-continents.md index 1245b2ecf..f49a73d0c 100644 --- a/examples/1.9.x/server-php/examples/locale/list-continents.md +++ b/examples/1.9.x/server-php/examples/locale/list-continents.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Locale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/locale/list-countries-eu.md b/examples/1.9.x/server-php/examples/locale/list-countries-eu.md index 9744c8ea6..1273b7595 100644 --- a/examples/1.9.x/server-php/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-php/examples/locale/list-countries-eu.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Locale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/locale/list-countries-phones.md b/examples/1.9.x/server-php/examples/locale/list-countries-phones.md index df66061f6..8524a8d55 100644 --- a/examples/1.9.x/server-php/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-php/examples/locale/list-countries-phones.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Locale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/locale/list-countries.md b/examples/1.9.x/server-php/examples/locale/list-countries.md index f4f962622..5fde82e3a 100644 --- a/examples/1.9.x/server-php/examples/locale/list-countries.md +++ b/examples/1.9.x/server-php/examples/locale/list-countries.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Locale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/locale/list-currencies.md b/examples/1.9.x/server-php/examples/locale/list-currencies.md index f4f1125a9..a234d5f68 100644 --- a/examples/1.9.x/server-php/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-php/examples/locale/list-currencies.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Locale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/locale/list-languages.md b/examples/1.9.x/server-php/examples/locale/list-languages.md index b25fab642..fe646ce9b 100644 --- a/examples/1.9.x/server-php/examples/locale/list-languages.md +++ b/examples/1.9.x/server-php/examples/locale/list-languages.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Locale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-php/examples/messaging/create-apns-provider.md index 768878ac0..f74d42fd6 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-apns-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-email.md b/examples/1.9.x/server-php/examples/messaging/create-email.md index bde1bb59b..7775fd82f 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-email.md +++ b/examples/1.9.x/server-php/examples/messaging/create-email.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-php/examples/messaging/create-fcm-provider.md index 1ab3e9830..66eed1063 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-fcm-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-php/examples/messaging/create-mailgun-provider.md index ca0a3cb1b..038404539 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-mailgun-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-php/examples/messaging/create-msg-91-provider.md index 78998cf51..5c9af841d 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-msg-91-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-push.md b/examples/1.9.x/server-php/examples/messaging/create-push.md index 7efef5324..ebf879777 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-push.md +++ b/examples/1.9.x/server-php/examples/messaging/create-push.md @@ -6,7 +6,7 @@ use Appwrite\Services\Messaging; use Appwrite\Enums\MessagePriority; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-php/examples/messaging/create-resend-provider.md index e32ad9fc1..3a588c1d3 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-resend-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-php/examples/messaging/create-sendgrid-provider.md index 38f213c41..acb3e20ae 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-sendgrid-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-sms.md b/examples/1.9.x/server-php/examples/messaging/create-sms.md index 1f45876ba..493561554 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-php/examples/messaging/create-sms.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-php/examples/messaging/create-smtp-provider.md index 053861250..bb69e7a08 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-smtp-provider.md @@ -6,7 +6,7 @@ use Appwrite\Services\Messaging; use Appwrite\Enums\SmtpEncryption; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-subscriber.md b/examples/1.9.x/server-php/examples/messaging/create-subscriber.md index f0d278313..73e82c116 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-php/examples/messaging/create-subscriber.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setJWT(''); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-php/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-php/examples/messaging/create-telesign-provider.md index 005e6d034..35da02c73 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-telesign-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-php/examples/messaging/create-textmagic-provider.md index 262a9e2a6..f923e1636 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-textmagic-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-topic.md b/examples/1.9.x/server-php/examples/messaging/create-topic.md index 460168e49..70bd0b81f 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-php/examples/messaging/create-topic.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-php/examples/messaging/create-twilio-provider.md index f8ee41756..2d96638e1 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-twilio-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-php/examples/messaging/create-vonage-provider.md index 450cf9c50..eb986a32f 100644 --- a/examples/1.9.x/server-php/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/create-vonage-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/delete-provider.md b/examples/1.9.x/server-php/examples/messaging/delete-provider.md index e0a63c15c..94e340aad 100644 --- a/examples/1.9.x/server-php/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/delete-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-php/examples/messaging/delete-subscriber.md index 9720ad07c..ea00800d2 100644 --- a/examples/1.9.x/server-php/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-php/examples/messaging/delete-subscriber.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setJWT(''); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-php/examples/messaging/delete-topic.md b/examples/1.9.x/server-php/examples/messaging/delete-topic.md index 906145153..69b8634c7 100644 --- a/examples/1.9.x/server-php/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-php/examples/messaging/delete-topic.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/delete.md b/examples/1.9.x/server-php/examples/messaging/delete.md index 154890587..f23d919d3 100644 --- a/examples/1.9.x/server-php/examples/messaging/delete.md +++ b/examples/1.9.x/server-php/examples/messaging/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/get-message.md b/examples/1.9.x/server-php/examples/messaging/get-message.md index a1d2f0264..87f44e67a 100644 --- a/examples/1.9.x/server-php/examples/messaging/get-message.md +++ b/examples/1.9.x/server-php/examples/messaging/get-message.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/get-provider.md b/examples/1.9.x/server-php/examples/messaging/get-provider.md index 6353e54f5..425f2dd11 100644 --- a/examples/1.9.x/server-php/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/get-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/get-subscriber.md b/examples/1.9.x/server-php/examples/messaging/get-subscriber.md index d3a20e955..90eecb72d 100644 --- a/examples/1.9.x/server-php/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-php/examples/messaging/get-subscriber.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/get-topic.md b/examples/1.9.x/server-php/examples/messaging/get-topic.md index 95ff3ff75..de88b9507 100644 --- a/examples/1.9.x/server-php/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-php/examples/messaging/get-topic.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-message-logs.md b/examples/1.9.x/server-php/examples/messaging/list-message-logs.md index 8bc5631c7..85f125e1d 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-php/examples/messaging/list-message-logs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-messages.md b/examples/1.9.x/server-php/examples/messaging/list-messages.md index fa6d57c3b..28914587a 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-php/examples/messaging/list-messages.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-php/examples/messaging/list-provider-logs.md index afc3df91a..15660d0dd 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-php/examples/messaging/list-provider-logs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-providers.md b/examples/1.9.x/server-php/examples/messaging/list-providers.md index 281a5220e..c9e251d01 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-php/examples/messaging/list-providers.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-php/examples/messaging/list-subscriber-logs.md index 7a0e5ad73..8231bb214 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-php/examples/messaging/list-subscriber-logs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-subscribers.md b/examples/1.9.x/server-php/examples/messaging/list-subscribers.md index 096a8f2e7..69b66b87b 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-php/examples/messaging/list-subscribers.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-targets.md b/examples/1.9.x/server-php/examples/messaging/list-targets.md index 0615d8201..502c4852d 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-php/examples/messaging/list-targets.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-php/examples/messaging/list-topic-logs.md index d32d27ae0..11be2ec85 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-php/examples/messaging/list-topic-logs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/list-topics.md b/examples/1.9.x/server-php/examples/messaging/list-topics.md index 6386df172..be91693b7 100644 --- a/examples/1.9.x/server-php/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-php/examples/messaging/list-topics.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-php/examples/messaging/update-apns-provider.md index aa0e78f05..20011ddb1 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-apns-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-email.md b/examples/1.9.x/server-php/examples/messaging/update-email.md index 80918b1c3..ad3da4af7 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-email.md +++ b/examples/1.9.x/server-php/examples/messaging/update-email.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-php/examples/messaging/update-fcm-provider.md index a9a54d1ce..198ec155f 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-fcm-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-php/examples/messaging/update-mailgun-provider.md index 6392e78b6..0f6753030 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-mailgun-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-php/examples/messaging/update-msg-91-provider.md index 67b689c94..09bdcaec4 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-msg-91-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-push.md b/examples/1.9.x/server-php/examples/messaging/update-push.md index 32cb1205a..7c69cd20f 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-push.md +++ b/examples/1.9.x/server-php/examples/messaging/update-push.md @@ -6,7 +6,7 @@ use Appwrite\Services\Messaging; use Appwrite\Enums\MessagePriority; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-php/examples/messaging/update-resend-provider.md index ab60aaf3f..408e1c377 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-resend-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-php/examples/messaging/update-sendgrid-provider.md index e6e0391aa..5c910ffc8 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-sendgrid-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-sms.md b/examples/1.9.x/server-php/examples/messaging/update-sms.md index e59af27c5..420c29a94 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-php/examples/messaging/update-sms.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-php/examples/messaging/update-smtp-provider.md index 5701b3c25..2b1181166 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-smtp-provider.md @@ -6,7 +6,7 @@ use Appwrite\Services\Messaging; use Appwrite\Enums\SmtpEncryption; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-php/examples/messaging/update-telesign-provider.md index 33fcbb301..00f0c8923 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-telesign-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-php/examples/messaging/update-textmagic-provider.md index 96564c707..787f37b7e 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-textmagic-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-topic.md b/examples/1.9.x/server-php/examples/messaging/update-topic.md index 257e75442..3fd0919f4 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-php/examples/messaging/update-topic.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-php/examples/messaging/update-twilio-provider.md index c9bcfa9b4..f097fcf14 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-twilio-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-php/examples/messaging/update-vonage-provider.md index 112745e74..0fbbac5d6 100644 --- a/examples/1.9.x/server-php/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-php/examples/messaging/update-vonage-provider.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Messaging; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/organization/create-key.md b/examples/1.9.x/server-php/examples/organization/create-key.md new file mode 100644 index 000000000..4d67543b2 --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/create-key.md @@ -0,0 +1,20 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->createKey( + keyId: '', + name: '', + scopes: [OrganizationKeyScopes::PROJECTSREAD()], + expire: '2020-10-15T06:38:00.000+00:00' // optional +);``` diff --git a/examples/1.9.x/server-php/examples/organization/create-project.md b/examples/1.9.x/server-php/examples/organization/create-project.md new file mode 100644 index 000000000..855624930 --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/create-project.md @@ -0,0 +1,19 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->createProject( + projectId: '', + name: '', + region: Region::FRA() // optional +);``` diff --git a/examples/1.9.x/server-php/examples/organization/delete-key.md b/examples/1.9.x/server-php/examples/organization/delete-key.md new file mode 100644 index 000000000..431893c31 --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/delete-key.md @@ -0,0 +1,16 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->deleteKey( + keyId: '' +);``` diff --git a/examples/1.9.x/server-php/examples/organization/delete-project.md b/examples/1.9.x/server-php/examples/organization/delete-project.md new file mode 100644 index 000000000..7b657743f --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/delete-project.md @@ -0,0 +1,16 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->deleteProject( + projectId: '' +);``` diff --git a/examples/1.9.x/server-php/examples/organization/get-key.md b/examples/1.9.x/server-php/examples/organization/get-key.md new file mode 100644 index 000000000..0601e92c4 --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/get-key.md @@ -0,0 +1,16 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->getKey( + keyId: '' +);``` diff --git a/examples/1.9.x/server-php/examples/organization/get-project.md b/examples/1.9.x/server-php/examples/organization/get-project.md new file mode 100644 index 000000000..a1ee6480c --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/get-project.md @@ -0,0 +1,16 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->getProject( + projectId: '' +);``` diff --git a/examples/1.9.x/server-php/examples/organization/list-keys.md b/examples/1.9.x/server-php/examples/organization/list-keys.md new file mode 100644 index 000000000..546a41c3a --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/list-keys.md @@ -0,0 +1,17 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->listKeys( + queries: [], // optional + total: false // optional +);``` diff --git a/examples/1.9.x/server-php/examples/organization/list-projects.md b/examples/1.9.x/server-php/examples/organization/list-projects.md new file mode 100644 index 000000000..fbbdc3fe3 --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/list-projects.md @@ -0,0 +1,18 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->listProjects( + queries: [], // optional + search: '', // optional + total: false // optional +);``` diff --git a/examples/1.9.x/server-php/examples/organization/update-key.md b/examples/1.9.x/server-php/examples/organization/update-key.md new file mode 100644 index 000000000..b493f9a45 --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/update-key.md @@ -0,0 +1,20 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->updateKey( + keyId: '', + name: '', + scopes: [OrganizationKeyScopes::PROJECTSREAD()], + expire: '2020-10-15T06:38:00.000+00:00' // optional +);``` diff --git a/examples/1.9.x/server-php/examples/organization/update-project.md b/examples/1.9.x/server-php/examples/organization/update-project.md new file mode 100644 index 000000000..04aca2f24 --- /dev/null +++ b/examples/1.9.x/server-php/examples/organization/update-project.md @@ -0,0 +1,17 @@ +```php +setEndpoint('') // Your API Endpoint + ->setProject('') // Your project ID + ->setKey(''); // Your secret API key + +$organization = new Organization($client); + +$result = $organization->updateProject( + projectId: '', + name: '' +);``` diff --git a/examples/1.9.x/server-php/examples/presences/delete.md b/examples/1.9.x/server-php/examples/presences/delete.md index 225ee6caf..3181d3a9f 100644 --- a/examples/1.9.x/server-php/examples/presences/delete.md +++ b/examples/1.9.x/server-php/examples/presences/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Presences; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/presences/get.md b/examples/1.9.x/server-php/examples/presences/get.md index c0196986c..c108fc6eb 100644 --- a/examples/1.9.x/server-php/examples/presences/get.md +++ b/examples/1.9.x/server-php/examples/presences/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Presences; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/presences/list.md b/examples/1.9.x/server-php/examples/presences/list.md index 61620297f..34aa4f418 100644 --- a/examples/1.9.x/server-php/examples/presences/list.md +++ b/examples/1.9.x/server-php/examples/presences/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Presences; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/presences/update-presence.md b/examples/1.9.x/server-php/examples/presences/update-presence.md index d017a1365..b35f7ab41 100644 --- a/examples/1.9.x/server-php/examples/presences/update-presence.md +++ b/examples/1.9.x/server-php/examples/presences/update-presence.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/presences/upsert.md b/examples/1.9.x/server-php/examples/presences/upsert.md index f6d34e2e5..4cb113767 100644 --- a/examples/1.9.x/server-php/examples/presences/upsert.md +++ b/examples/1.9.x/server-php/examples/presences/upsert.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-android-platform.md b/examples/1.9.x/server-php/examples/project/create-android-platform.md index 491a36f30..e75da6efc 100644 --- a/examples/1.9.x/server-php/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-php/examples/project/create-android-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-apple-platform.md b/examples/1.9.x/server-php/examples/project/create-apple-platform.md index 38487ce9f..1344b09dd 100644 --- a/examples/1.9.x/server-php/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-php/examples/project/create-apple-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-php/examples/project/create-ephemeral-key.md index 29a813a78..1ce3800f0 100644 --- a/examples/1.9.x/server-php/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-php/examples/project/create-ephemeral-key.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectKeyScopes; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-key.md b/examples/1.9.x/server-php/examples/project/create-key.md index cd3dbfd96..54e7aa388 100644 --- a/examples/1.9.x/server-php/examples/project/create-key.md +++ b/examples/1.9.x/server-php/examples/project/create-key.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectKeyScopes; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-linux-platform.md b/examples/1.9.x/server-php/examples/project/create-linux-platform.md index ff21b34de..3b82b3c13 100644 --- a/examples/1.9.x/server-php/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-php/examples/project/create-linux-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-mock-phone.md b/examples/1.9.x/server-php/examples/project/create-mock-phone.md index 6d73a0b4a..d3b755ebf 100644 --- a/examples/1.9.x/server-php/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-php/examples/project/create-mock-phone.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-smtp-test.md b/examples/1.9.x/server-php/examples/project/create-smtp-test.md index 98cb7edd1..437d5bfa7 100644 --- a/examples/1.9.x/server-php/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-php/examples/project/create-smtp-test.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-variable.md b/examples/1.9.x/server-php/examples/project/create-variable.md index 9f6d65e04..a7e518a2d 100644 --- a/examples/1.9.x/server-php/examples/project/create-variable.md +++ b/examples/1.9.x/server-php/examples/project/create-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-web-platform.md b/examples/1.9.x/server-php/examples/project/create-web-platform.md index 932e10e9a..cb36c9f78 100644 --- a/examples/1.9.x/server-php/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-php/examples/project/create-web-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/create-windows-platform.md b/examples/1.9.x/server-php/examples/project/create-windows-platform.md index 9a6f17576..90c68dd23 100644 --- a/examples/1.9.x/server-php/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-php/examples/project/create-windows-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/delete-key.md b/examples/1.9.x/server-php/examples/project/delete-key.md index 5e90c2e95..2b1c0277a 100644 --- a/examples/1.9.x/server-php/examples/project/delete-key.md +++ b/examples/1.9.x/server-php/examples/project/delete-key.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/delete-mock-phone.md b/examples/1.9.x/server-php/examples/project/delete-mock-phone.md index 6cdfcc1cc..7d9bd80bf 100644 --- a/examples/1.9.x/server-php/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-php/examples/project/delete-mock-phone.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/delete-platform.md b/examples/1.9.x/server-php/examples/project/delete-platform.md index ca537aa2b..21e13758e 100644 --- a/examples/1.9.x/server-php/examples/project/delete-platform.md +++ b/examples/1.9.x/server-php/examples/project/delete-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/delete-variable.md b/examples/1.9.x/server-php/examples/project/delete-variable.md index a6fb65a49..0a6e187ab 100644 --- a/examples/1.9.x/server-php/examples/project/delete-variable.md +++ b/examples/1.9.x/server-php/examples/project/delete-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/delete.md b/examples/1.9.x/server-php/examples/project/delete.md index adb632418..07c1e6bb9 100644 --- a/examples/1.9.x/server-php/examples/project/delete.md +++ b/examples/1.9.x/server-php/examples/project/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/get-email-template.md b/examples/1.9.x/server-php/examples/project/get-email-template.md index f06e1c3bc..f290db960 100644 --- a/examples/1.9.x/server-php/examples/project/get-email-template.md +++ b/examples/1.9.x/server-php/examples/project/get-email-template.md @@ -7,7 +7,7 @@ use Appwrite\Enums\ProjectEmailTemplateId; use Appwrite\Enums\ProjectEmailTemplateLocale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/get-key.md b/examples/1.9.x/server-php/examples/project/get-key.md index 8e8ba5e5d..db3253ffd 100644 --- a/examples/1.9.x/server-php/examples/project/get-key.md +++ b/examples/1.9.x/server-php/examples/project/get-key.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/get-mock-phone.md b/examples/1.9.x/server-php/examples/project/get-mock-phone.md index 512d64c48..debf72f38 100644 --- a/examples/1.9.x/server-php/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-php/examples/project/get-mock-phone.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-php/examples/project/get-o-auth-2-provider.md index ded92e19d..59b12bdfb 100644 --- a/examples/1.9.x/server-php/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-php/examples/project/get-o-auth-2-provider.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectOAuthProviderId; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/get-platform.md b/examples/1.9.x/server-php/examples/project/get-platform.md index 3e783acb0..24b83dd76 100644 --- a/examples/1.9.x/server-php/examples/project/get-platform.md +++ b/examples/1.9.x/server-php/examples/project/get-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/get-policy.md b/examples/1.9.x/server-php/examples/project/get-policy.md index 5f60c8124..985749a96 100644 --- a/examples/1.9.x/server-php/examples/project/get-policy.md +++ b/examples/1.9.x/server-php/examples/project/get-policy.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectPolicyId; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/get-variable.md b/examples/1.9.x/server-php/examples/project/get-variable.md index f80cd3bae..b89b5bf1b 100644 --- a/examples/1.9.x/server-php/examples/project/get-variable.md +++ b/examples/1.9.x/server-php/examples/project/get-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/get.md b/examples/1.9.x/server-php/examples/project/get.md index 4e90450b2..249457c9d 100644 --- a/examples/1.9.x/server-php/examples/project/get.md +++ b/examples/1.9.x/server-php/examples/project/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/list-email-templates.md b/examples/1.9.x/server-php/examples/project/list-email-templates.md index 47c65c4d4..f0062062a 100644 --- a/examples/1.9.x/server-php/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-php/examples/project/list-email-templates.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/list-keys.md b/examples/1.9.x/server-php/examples/project/list-keys.md index 0d1dbffdc..214879165 100644 --- a/examples/1.9.x/server-php/examples/project/list-keys.md +++ b/examples/1.9.x/server-php/examples/project/list-keys.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/list-mock-phones.md b/examples/1.9.x/server-php/examples/project/list-mock-phones.md index 5ca11c281..fe0a8e820 100644 --- a/examples/1.9.x/server-php/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-php/examples/project/list-mock-phones.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-php/examples/project/list-o-auth-2-providers.md index 5f661d4bf..274ac5231 100644 --- a/examples/1.9.x/server-php/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-php/examples/project/list-o-auth-2-providers.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/list-platforms.md b/examples/1.9.x/server-php/examples/project/list-platforms.md index 596d62801..991566f1c 100644 --- a/examples/1.9.x/server-php/examples/project/list-platforms.md +++ b/examples/1.9.x/server-php/examples/project/list-platforms.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/list-policies.md b/examples/1.9.x/server-php/examples/project/list-policies.md index 59d49f3ee..9128b13c3 100644 --- a/examples/1.9.x/server-php/examples/project/list-policies.md +++ b/examples/1.9.x/server-php/examples/project/list-policies.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/list-variables.md b/examples/1.9.x/server-php/examples/project/list-variables.md index f6a9bb4f9..7e91ce2e2 100644 --- a/examples/1.9.x/server-php/examples/project/list-variables.md +++ b/examples/1.9.x/server-php/examples/project/list-variables.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-android-platform.md b/examples/1.9.x/server-php/examples/project/update-android-platform.md index 43df50753..ca59ce432 100644 --- a/examples/1.9.x/server-php/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-php/examples/project/update-android-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-apple-platform.md b/examples/1.9.x/server-php/examples/project/update-apple-platform.md index 2aa4f2941..601a82a7b 100644 --- a/examples/1.9.x/server-php/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-php/examples/project/update-apple-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-auth-method.md b/examples/1.9.x/server-php/examples/project/update-auth-method.md index 3633f132f..7a7991b09 100644 --- a/examples/1.9.x/server-php/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-php/examples/project/update-auth-method.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectAuthMethodId; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-php/examples/project/update-deny-aliased-email-policy.md index 3ddc159e7..09e5ebce0 100644 --- a/examples/1.9.x/server-php/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-deny-aliased-email-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-php/examples/project/update-deny-disposable-email-policy.md index 6733b205a..999a2aa94 100644 --- a/examples/1.9.x/server-php/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-deny-disposable-email-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-php/examples/project/update-deny-free-email-policy.md index 1b8d30f0e..5f21ff3aa 100644 --- a/examples/1.9.x/server-php/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-deny-free-email-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-email-template.md b/examples/1.9.x/server-php/examples/project/update-email-template.md index ac927772a..e5a179da3 100644 --- a/examples/1.9.x/server-php/examples/project/update-email-template.md +++ b/examples/1.9.x/server-php/examples/project/update-email-template.md @@ -7,7 +7,7 @@ use Appwrite\Enums\ProjectEmailTemplateId; use Appwrite\Enums\ProjectEmailTemplateLocale; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-key.md b/examples/1.9.x/server-php/examples/project/update-key.md index 1a1e1002d..bc71438d5 100644 --- a/examples/1.9.x/server-php/examples/project/update-key.md +++ b/examples/1.9.x/server-php/examples/project/update-key.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectKeyScopes; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-labels.md b/examples/1.9.x/server-php/examples/project/update-labels.md index 1c2897ede..d6c61ce63 100644 --- a/examples/1.9.x/server-php/examples/project/update-labels.md +++ b/examples/1.9.x/server-php/examples/project/update-labels.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-linux-platform.md b/examples/1.9.x/server-php/examples/project/update-linux-platform.md index b05cbfaa1..9f66c06f3 100644 --- a/examples/1.9.x/server-php/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-php/examples/project/update-linux-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-php/examples/project/update-membership-privacy-policy.md index a62ace785..0dd14cf23 100644 --- a/examples/1.9.x/server-php/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-membership-privacy-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-mock-phone.md b/examples/1.9.x/server-php/examples/project/update-mock-phone.md index f157343f0..e11bab0f4 100644 --- a/examples/1.9.x/server-php/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-php/examples/project/update-mock-phone.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-amazon.md index 8a473860f..b9485b40a 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-amazon.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-apple.md index 3f4516c30..99a11c15c 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-apple.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-auth-0.md index d9f17f78d..6b359c6d1 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-auth-0.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-authentik.md index b5c7e27e7..d95d97944 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-authentik.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-autodesk.md index e85b9bb92..1fafa9898 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-autodesk.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-bitbucket.md index 4985215c5..b8127fb3b 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-bitbucket.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-bitly.md index b8c00ecdd..18656032f 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-bitly.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-box.md index ba88f5613..582b8c1c1 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-box.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-dailymotion.md index 44634caad..bbc047f69 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-dailymotion.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-discord.md index d323c92d6..55ef534f8 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-discord.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-disqus.md index 302818624..88793e59b 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-disqus.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-dropbox.md index 59575cdc8..299364547 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-dropbox.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-etsy.md index 19aab9617..4c8135a26 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-etsy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-facebook.md index 8f76d065b..3760f13c4 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-facebook.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-figma.md index 71d36ebfa..8ee3eb4e5 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-figma.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-fusion-auth.md index 0b3709b22..c335a967d 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-fusion-auth.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-git-hub.md index 62871aa6a..a18b3779c 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-git-hub.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-gitlab.md index 2532af0c7..4eb1a3fab 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-gitlab.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-google.md index 63466c43e..76834d2b4 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-google.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectOAuth2GooglePrompt; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-keycloak.md index 3604e4b61..ff35ef8ce 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-keycloak.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-kick.md index 02c876fcd..4700edcf5 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-kick.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-linkedin.md index 06451e149..553a0f323 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-linkedin.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-microsoft.md index f5a0af73d..537a15df7 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-microsoft.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-notion.md index abf0b430d..8295f8e61 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-notion.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-oidc.md index 1b9d9b86a..e1d601959 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-oidc.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-okta.md index 4de41d226..c8b2eb483 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-okta.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-paypal-sandbox.md index 5cb43b6d5..d1798d4b5 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-paypal-sandbox.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-paypal.md index 51e8935f3..db4c9a85e 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-paypal.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-podio.md index 1c6076607..64f0ac84a 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-podio.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-salesforce.md index 8e0ab0444..89e7d102e 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-salesforce.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-slack.md index 858113c88..69ae3e7ba 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-slack.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-spotify.md index 44f22c334..57c228cd7 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-spotify.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-stripe.md index 9b2276c68..cd201050a 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-stripe.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-tradeshift-sandbox.md index 247777041..b069213f3 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-tradeshift.md index 72177e623..355782a48 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-tradeshift.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-twitch.md index a3cf258dc..0087e281f 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-twitch.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-word-press.md index 3380007c1..3d5a60d12 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-word-press.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-yahoo.md index 588c9926f..3c098c246 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-yahoo.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-yandex.md index c1e5b24d8..563347e9f 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-yandex.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-zoho.md index 08a9b1e18..29da2e0ad 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-zoho.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2-zoom.md index e30af5ba3..b52b0807c 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2-zoom.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-php/examples/project/update-o-auth-2x.md index 86ee07f1c..ebdd09013 100644 --- a/examples/1.9.x/server-php/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-php/examples/project/update-o-auth-2x.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-php/examples/project/update-password-dictionary-policy.md index 680edb5ff..82d65dca9 100644 --- a/examples/1.9.x/server-php/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-password-dictionary-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-password-history-policy.md b/examples/1.9.x/server-php/examples/project/update-password-history-policy.md index 2fac6d7d9..544740444 100644 --- a/examples/1.9.x/server-php/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-password-history-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-php/examples/project/update-password-personal-data-policy.md index 6cce48c7b..f088e3910 100644 --- a/examples/1.9.x/server-php/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-password-personal-data-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-protocol.md b/examples/1.9.x/server-php/examples/project/update-protocol.md index e87fc30de..3b91a539a 100644 --- a/examples/1.9.x/server-php/examples/project/update-protocol.md +++ b/examples/1.9.x/server-php/examples/project/update-protocol.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectProtocolId; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-service.md b/examples/1.9.x/server-php/examples/project/update-service.md index 88e90eab9..22457cd86 100644 --- a/examples/1.9.x/server-php/examples/project/update-service.md +++ b/examples/1.9.x/server-php/examples/project/update-service.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectServiceId; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-php/examples/project/update-session-alert-policy.md index ac10696c7..6d5466414 100644 --- a/examples/1.9.x/server-php/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-session-alert-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-php/examples/project/update-session-duration-policy.md index 89526e79f..815b1ae79 100644 --- a/examples/1.9.x/server-php/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-session-duration-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-php/examples/project/update-session-invalidation-policy.md index fa744e570..d98399d28 100644 --- a/examples/1.9.x/server-php/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-session-invalidation-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-php/examples/project/update-session-limit-policy.md index f1bb2e20f..40087db36 100644 --- a/examples/1.9.x/server-php/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-session-limit-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-smtp.md b/examples/1.9.x/server-php/examples/project/update-smtp.md index 452a3d863..9c8b884d8 100644 --- a/examples/1.9.x/server-php/examples/project/update-smtp.md +++ b/examples/1.9.x/server-php/examples/project/update-smtp.md @@ -6,7 +6,7 @@ use Appwrite\Services\Project; use Appwrite\Enums\ProjectSMTPSecure; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-php/examples/project/update-user-limit-policy.md index bb787e9ea..1a3d1b6e0 100644 --- a/examples/1.9.x/server-php/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-php/examples/project/update-user-limit-policy.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-variable.md b/examples/1.9.x/server-php/examples/project/update-variable.md index 3e44129c5..8a8159acb 100644 --- a/examples/1.9.x/server-php/examples/project/update-variable.md +++ b/examples/1.9.x/server-php/examples/project/update-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-web-platform.md b/examples/1.9.x/server-php/examples/project/update-web-platform.md index 213e96f74..d88996a1b 100644 --- a/examples/1.9.x/server-php/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-php/examples/project/update-web-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/project/update-windows-platform.md b/examples/1.9.x/server-php/examples/project/update-windows-platform.md index 40c881dda..4da6af5d5 100644 --- a/examples/1.9.x/server-php/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-php/examples/project/update-windows-platform.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Project; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/proxy/create-api-rule.md b/examples/1.9.x/server-php/examples/proxy/create-api-rule.md index 81d7813da..4812bea65 100644 --- a/examples/1.9.x/server-php/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-php/examples/proxy/create-api-rule.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Proxy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/proxy/create-function-rule.md b/examples/1.9.x/server-php/examples/proxy/create-function-rule.md index 0bd403fa5..9a986f86b 100644 --- a/examples/1.9.x/server-php/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-php/examples/proxy/create-function-rule.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Proxy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-php/examples/proxy/create-redirect-rule.md index abef3f992..9802505f3 100644 --- a/examples/1.9.x/server-php/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-php/examples/proxy/create-redirect-rule.md @@ -3,11 +3,11 @@ use Appwrite\Client; use Appwrite\Services\Proxy; -use Appwrite\Enums\StatusCode; +use Appwrite\Enums\RedirectStatusCode; use Appwrite\Enums\ProxyResourceType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key @@ -16,7 +16,7 @@ $proxy = new Proxy($client); $result = $proxy->createRedirectRule( domain: '', url: 'https://example.com', - statusCode: StatusCode::MOVEDPERMANENTLY301(), + statusCode: RedirectStatusCode::MOVEDPERMANENTLY(), resourceId: '', resourceType: ProxyResourceType::SITE() );``` diff --git a/examples/1.9.x/server-php/examples/proxy/create-site-rule.md b/examples/1.9.x/server-php/examples/proxy/create-site-rule.md index e1f0f2da8..11099f9ad 100644 --- a/examples/1.9.x/server-php/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-php/examples/proxy/create-site-rule.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Proxy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/proxy/delete-rule.md b/examples/1.9.x/server-php/examples/proxy/delete-rule.md index 45c6c35df..e3a681a37 100644 --- a/examples/1.9.x/server-php/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-php/examples/proxy/delete-rule.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Proxy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/proxy/get-rule.md b/examples/1.9.x/server-php/examples/proxy/get-rule.md index c6f4c6939..34738c2ad 100644 --- a/examples/1.9.x/server-php/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-php/examples/proxy/get-rule.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Proxy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/proxy/list-rules.md b/examples/1.9.x/server-php/examples/proxy/list-rules.md index 53c1e1a06..85539a590 100644 --- a/examples/1.9.x/server-php/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-php/examples/proxy/list-rules.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Proxy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/proxy/update-rule-status.md b/examples/1.9.x/server-php/examples/proxy/update-rule-status.md index 0640da6de..14c592621 100644 --- a/examples/1.9.x/server-php/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-php/examples/proxy/update-rule-status.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Proxy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/create-deployment.md b/examples/1.9.x/server-php/examples/sites/create-deployment.md index 536300d56..b0558544a 100644 --- a/examples/1.9.x/server-php/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-php/examples/sites/create-deployment.md @@ -6,7 +6,7 @@ use Appwrite\InputFile; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-php/examples/sites/create-duplicate-deployment.md index 97fb1f5d9..eee201513 100644 --- a/examples/1.9.x/server-php/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-php/examples/sites/create-duplicate-deployment.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/create-template-deployment.md b/examples/1.9.x/server-php/examples/sites/create-template-deployment.md index 05f039e78..8e91cb49e 100644 --- a/examples/1.9.x/server-php/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-php/examples/sites/create-template-deployment.md @@ -6,7 +6,7 @@ use Appwrite\Services\Sites; use Appwrite\Enums\TemplateReferenceType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/create-variable.md b/examples/1.9.x/server-php/examples/sites/create-variable.md index 5cc10bf0a..504bc285c 100644 --- a/examples/1.9.x/server-php/examples/sites/create-variable.md +++ b/examples/1.9.x/server-php/examples/sites/create-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-php/examples/sites/create-vcs-deployment.md index d01747bc4..3446f15b1 100644 --- a/examples/1.9.x/server-php/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-php/examples/sites/create-vcs-deployment.md @@ -6,7 +6,7 @@ use Appwrite\Services\Sites; use Appwrite\Enums\VCSReferenceType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/create.md b/examples/1.9.x/server-php/examples/sites/create.md index 866a89cb1..03b01ea62 100644 --- a/examples/1.9.x/server-php/examples/sites/create.md +++ b/examples/1.9.x/server-php/examples/sites/create.md @@ -3,12 +3,12 @@ use Appwrite\Client; use Appwrite\Services\Sites; -use Appwrite\Enums\Framework; -use Appwrite\Enums\BuildRuntime; -use Appwrite\Enums\Adapter; +use Appwrite\Enums\SiteFramework; +use Appwrite\Enums\SiteBuildRuntime; +use Appwrite\Enums\SiteAdapter; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key @@ -17,8 +17,8 @@ $sites = new Sites($client); $result = $sites->create( siteId: '', name: '', - framework: Framework::ANALOG(), - buildRuntime: BuildRuntime::NODE145(), + framework: SiteFramework::ANALOG(), + buildRuntime: SiteBuildRuntime::NODE145(), enabled: false, // optional logging: false, // optional timeout: 1, // optional @@ -26,13 +26,15 @@ $result = $sites->create( buildCommand: '', // optional startCommand: '', // optional outputDirectory: '', // optional - adapter: Adapter::STATIC(), // optional + adapter: SiteAdapter::STATIC(), // optional installationId: '', // optional fallbackFile: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-php/examples/sites/delete-deployment.md b/examples/1.9.x/server-php/examples/sites/delete-deployment.md index 97bb976e9..d262bee86 100644 --- a/examples/1.9.x/server-php/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-php/examples/sites/delete-deployment.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/delete-log.md b/examples/1.9.x/server-php/examples/sites/delete-log.md index ed5b3c5b8..0489a6e3b 100644 --- a/examples/1.9.x/server-php/examples/sites/delete-log.md +++ b/examples/1.9.x/server-php/examples/sites/delete-log.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/delete-variable.md b/examples/1.9.x/server-php/examples/sites/delete-variable.md index bdb2fbf5e..d47da474a 100644 --- a/examples/1.9.x/server-php/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-php/examples/sites/delete-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/delete.md b/examples/1.9.x/server-php/examples/sites/delete.md index c2965d4e2..f0516fe06 100644 --- a/examples/1.9.x/server-php/examples/sites/delete.md +++ b/examples/1.9.x/server-php/examples/sites/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/get-deployment-download.md b/examples/1.9.x/server-php/examples/sites/get-deployment-download.md index 5582e9642..c49f0eddc 100644 --- a/examples/1.9.x/server-php/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-php/examples/sites/get-deployment-download.md @@ -6,7 +6,7 @@ use Appwrite\Services\Sites; use Appwrite\Enums\DeploymentDownloadType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/get-deployment.md b/examples/1.9.x/server-php/examples/sites/get-deployment.md index 91f836785..bca83d194 100644 --- a/examples/1.9.x/server-php/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-php/examples/sites/get-deployment.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/get-log.md b/examples/1.9.x/server-php/examples/sites/get-log.md index a781d20f3..0ada333f0 100644 --- a/examples/1.9.x/server-php/examples/sites/get-log.md +++ b/examples/1.9.x/server-php/examples/sites/get-log.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/get-variable.md b/examples/1.9.x/server-php/examples/sites/get-variable.md index 80b61ecac..20b6a0d68 100644 --- a/examples/1.9.x/server-php/examples/sites/get-variable.md +++ b/examples/1.9.x/server-php/examples/sites/get-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/get.md b/examples/1.9.x/server-php/examples/sites/get.md index c8f8c8e2f..83840b18e 100644 --- a/examples/1.9.x/server-php/examples/sites/get.md +++ b/examples/1.9.x/server-php/examples/sites/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/list-deployments.md b/examples/1.9.x/server-php/examples/sites/list-deployments.md index 82cee2984..6208cac4b 100644 --- a/examples/1.9.x/server-php/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-php/examples/sites/list-deployments.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/list-frameworks.md b/examples/1.9.x/server-php/examples/sites/list-frameworks.md index 74ea88215..e095bb5cc 100644 --- a/examples/1.9.x/server-php/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-php/examples/sites/list-frameworks.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/list-logs.md b/examples/1.9.x/server-php/examples/sites/list-logs.md index 5626bbb1c..064bc5440 100644 --- a/examples/1.9.x/server-php/examples/sites/list-logs.md +++ b/examples/1.9.x/server-php/examples/sites/list-logs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/list-specifications.md b/examples/1.9.x/server-php/examples/sites/list-specifications.md index 1a732b6a6..c6360cd40 100644 --- a/examples/1.9.x/server-php/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-php/examples/sites/list-specifications.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/list-variables.md b/examples/1.9.x/server-php/examples/sites/list-variables.md index 7caa8a5ed..0ddf4b92d 100644 --- a/examples/1.9.x/server-php/examples/sites/list-variables.md +++ b/examples/1.9.x/server-php/examples/sites/list-variables.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/list.md b/examples/1.9.x/server-php/examples/sites/list.md index 08c13146e..c2ed4fb97 100644 --- a/examples/1.9.x/server-php/examples/sites/list.md +++ b/examples/1.9.x/server-php/examples/sites/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/update-deployment-status.md b/examples/1.9.x/server-php/examples/sites/update-deployment-status.md index 06ffc7512..500bf4ae4 100644 --- a/examples/1.9.x/server-php/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-php/examples/sites/update-deployment-status.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/update-site-deployment.md b/examples/1.9.x/server-php/examples/sites/update-site-deployment.md index bdac54d45..14677dfd7 100644 --- a/examples/1.9.x/server-php/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-php/examples/sites/update-site-deployment.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/update-variable.md b/examples/1.9.x/server-php/examples/sites/update-variable.md index bbdd3d514..d011dd612 100644 --- a/examples/1.9.x/server-php/examples/sites/update-variable.md +++ b/examples/1.9.x/server-php/examples/sites/update-variable.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Sites; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/sites/update.md b/examples/1.9.x/server-php/examples/sites/update.md index b2de5a274..72c4fadf2 100644 --- a/examples/1.9.x/server-php/examples/sites/update.md +++ b/examples/1.9.x/server-php/examples/sites/update.md @@ -3,12 +3,12 @@ use Appwrite\Client; use Appwrite\Services\Sites; -use Appwrite\Enums\Framework; -use Appwrite\Enums\BuildRuntime; -use Appwrite\Enums\Adapter; +use Appwrite\Enums\SiteFramework; +use Appwrite\Enums\SiteBuildRuntime; +use Appwrite\Enums\SiteAdapter; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key @@ -17,7 +17,7 @@ $sites = new Sites($client); $result = $sites->update( siteId: '', name: '', - framework: Framework::ANALOG(), + framework: SiteFramework::ANALOG(), enabled: false, // optional logging: false, // optional timeout: 1, // optional @@ -25,14 +25,16 @@ $result = $sites->update( buildCommand: '', // optional startCommand: '', // optional outputDirectory: '', // optional - buildRuntime: BuildRuntime::NODE145(), // optional - adapter: Adapter::STATIC(), // optional + buildRuntime: SiteBuildRuntime::NODE145(), // optional + adapter: SiteAdapter::STATIC(), // optional fallbackFile: '', // optional installationId: '', // optional providerRepositoryId: '', // optional providerBranch: '', // optional providerSilentMode: false, // optional providerRootDirectory: '', // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: '', // optional runtimeSpecification: '', // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-php/examples/storage/create-bucket.md b/examples/1.9.x/server-php/examples/storage/create-bucket.md index f00c2c7f0..52436f233 100644 --- a/examples/1.9.x/server-php/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-php/examples/storage/create-bucket.md @@ -8,7 +8,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/storage/create-file.md b/examples/1.9.x/server-php/examples/storage/create-file.md index 62301b102..bde3c93f1 100644 --- a/examples/1.9.x/server-php/examples/storage/create-file.md +++ b/examples/1.9.x/server-php/examples/storage/create-file.md @@ -8,7 +8,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/storage/delete-bucket.md b/examples/1.9.x/server-php/examples/storage/delete-bucket.md index 737f4e1d2..8cf544202 100644 --- a/examples/1.9.x/server-php/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-php/examples/storage/delete-bucket.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Storage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/storage/delete-file.md b/examples/1.9.x/server-php/examples/storage/delete-file.md index dd2c3a701..ff6a825bd 100644 --- a/examples/1.9.x/server-php/examples/storage/delete-file.md +++ b/examples/1.9.x/server-php/examples/storage/delete-file.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Storage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/storage/get-bucket.md b/examples/1.9.x/server-php/examples/storage/get-bucket.md index f6449aecb..707d4fe59 100644 --- a/examples/1.9.x/server-php/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-php/examples/storage/get-bucket.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Storage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/storage/get-file-download.md b/examples/1.9.x/server-php/examples/storage/get-file-download.md index f55376f05..93f98101e 100644 --- a/examples/1.9.x/server-php/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-php/examples/storage/get-file-download.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Storage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/storage/get-file-preview.md b/examples/1.9.x/server-php/examples/storage/get-file-preview.md index 8964011b8..cb28c4aa5 100644 --- a/examples/1.9.x/server-php/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-php/examples/storage/get-file-preview.md @@ -7,7 +7,7 @@ use Appwrite\Enums\ImageGravity; use Appwrite\Enums\ImageFormat; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/storage/get-file-view.md b/examples/1.9.x/server-php/examples/storage/get-file-view.md index 6a729dc89..4d400d193 100644 --- a/examples/1.9.x/server-php/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-php/examples/storage/get-file-view.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Storage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/storage/get-file.md b/examples/1.9.x/server-php/examples/storage/get-file.md index b498b604d..9e8a78a9d 100644 --- a/examples/1.9.x/server-php/examples/storage/get-file.md +++ b/examples/1.9.x/server-php/examples/storage/get-file.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Storage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/storage/list-buckets.md b/examples/1.9.x/server-php/examples/storage/list-buckets.md index 3b0d79d7c..d30a9e36d 100644 --- a/examples/1.9.x/server-php/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-php/examples/storage/list-buckets.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Storage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/storage/list-files.md b/examples/1.9.x/server-php/examples/storage/list-files.md index 77e78cded..87214b90b 100644 --- a/examples/1.9.x/server-php/examples/storage/list-files.md +++ b/examples/1.9.x/server-php/examples/storage/list-files.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Storage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/storage/update-bucket.md b/examples/1.9.x/server-php/examples/storage/update-bucket.md index c14e75c3f..d33806a32 100644 --- a/examples/1.9.x/server-php/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-php/examples/storage/update-bucket.md @@ -8,7 +8,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/storage/update-file.md b/examples/1.9.x/server-php/examples/storage/update-file.md index 1e40a492d..ac6eae222 100644 --- a/examples/1.9.x/server-php/examples/storage/update-file.md +++ b/examples/1.9.x/server-php/examples/storage/update-file.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-big-int-column.md index 2833fdd60..d61a34533 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-big-int-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-boolean-column.md index b6032a394..36f1812f2 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-boolean-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-datetime-column.md index 9e21e0144..229f2ce0b 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-datetime-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-email-column.md index f24aa050f..b557b151f 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-email-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-enum-column.md index 951574243..0db00c4e5 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-enum-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-float-column.md index c83abba7a..470882678 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-float-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-index.md b/examples/1.9.x/server-php/examples/tablesdb/create-index.md index 3cd6b12d7..8a9edacb7 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-index.md @@ -7,7 +7,7 @@ use Appwrite\Enums\TablesDBIndexType; use Appwrite\Enums\OrderBy; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-integer-column.md index a42c87102..918b0d8e3 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-integer-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-ip-column.md index f40fe61d1..3e97846ea 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-ip-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-line-column.md index c1d17b824..c38b1c24b 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-line-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-longtext-column.md index 2b5366655..52ada9ff7 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-longtext-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-mediumtext-column.md index 0fbd9cab3..72da27fcb 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-mediumtext-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-operations.md b/examples/1.9.x/server-php/examples/tablesdb/create-operations.md index 45ea4c928..0e1e0bf29 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-operations.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-point-column.md index bde57bc35..686ac86c8 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-point-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-polygon-column.md index ee340f344..cc61317f3 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-polygon-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-relationship-column.md index 06dd6c0d7..eda13eaac 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-relationship-column.md @@ -7,7 +7,7 @@ use Appwrite\Enums\RelationshipType; use Appwrite\Enums\RelationMutate; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-row.md b/examples/1.9.x/server-php/examples/tablesdb/create-row.md index fc253f2bf..4db0c6794 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-row.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-rows.md b/examples/1.9.x/server-php/examples/tablesdb/create-rows.md index 8c08fa574..3a8483c78 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-rows.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-string-column.md index a4dd4dacb..d655cc62b 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-string-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-table.md b/examples/1.9.x/server-php/examples/tablesdb/create-table.md index fbe44767e..a482465ac 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-table.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-text-column.md index 8d2839263..3323ef8ca 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-text-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-php/examples/tablesdb/create-transaction.md index 6664c084f..f24072ac7 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-transaction.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-url-column.md index ceb1dae60..19194b58d 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-url-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-php/examples/tablesdb/create-varchar-column.md index 2f9319222..9805106d4 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create-varchar-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/create.md b/examples/1.9.x/server-php/examples/tablesdb/create.md index 2265fc9bb..21a6eed86 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/create.md +++ b/examples/1.9.x/server-php/examples/tablesdb/create.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-php/examples/tablesdb/decrement-row-column.md index 0d01314a2..9dcdd2e53 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/decrement-row-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/delete-column.md b/examples/1.9.x/server-php/examples/tablesdb/delete-column.md index 97cafcede..0e122d54a 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/delete-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/delete-index.md b/examples/1.9.x/server-php/examples/tablesdb/delete-index.md index abad8248f..d6eb344f7 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-php/examples/tablesdb/delete-index.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/delete-row.md b/examples/1.9.x/server-php/examples/tablesdb/delete-row.md index 05722a0cc..a0102e337 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-php/examples/tablesdb/delete-row.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-php/examples/tablesdb/delete-rows.md index 934ea6b75..7d80718fc 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-php/examples/tablesdb/delete-rows.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/delete-table.md b/examples/1.9.x/server-php/examples/tablesdb/delete-table.md index acc711db6..f9b7d1a49 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-php/examples/tablesdb/delete-table.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-php/examples/tablesdb/delete-transaction.md index 2b0c7ff82..15d469826 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-php/examples/tablesdb/delete-transaction.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/delete.md b/examples/1.9.x/server-php/examples/tablesdb/delete.md index 1b2cc93ad..856784ed8 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-php/examples/tablesdb/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/get-column.md b/examples/1.9.x/server-php/examples/tablesdb/get-column.md index 0be374fc9..00648586a 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/get-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/get-index.md b/examples/1.9.x/server-php/examples/tablesdb/get-index.md index 5e79e7088..d8bc6fa83 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-php/examples/tablesdb/get-index.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/get-row.md b/examples/1.9.x/server-php/examples/tablesdb/get-row.md index f8871ffab..f3fbf40a7 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-php/examples/tablesdb/get-row.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/get-table.md b/examples/1.9.x/server-php/examples/tablesdb/get-table.md index 1bc01662e..c5046eb1c 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-php/examples/tablesdb/get-table.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-php/examples/tablesdb/get-transaction.md index fc4030f50..d5e8b7bba 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-php/examples/tablesdb/get-transaction.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/get.md b/examples/1.9.x/server-php/examples/tablesdb/get.md index 5dde28d8f..e6c2da00e 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/get.md +++ b/examples/1.9.x/server-php/examples/tablesdb/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-php/examples/tablesdb/increment-row-column.md index 5c6176ee4..82eabbce3 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/increment-row-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/list-columns.md b/examples/1.9.x/server-php/examples/tablesdb/list-columns.md index 2ecf65429..050dda9cd 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-php/examples/tablesdb/list-columns.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-php/examples/tablesdb/list-indexes.md index 17428fe11..dbf2fa769 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-php/examples/tablesdb/list-indexes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/list-rows.md b/examples/1.9.x/server-php/examples/tablesdb/list-rows.md index b70a75984..4f87a8279 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-php/examples/tablesdb/list-rows.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/list-tables.md b/examples/1.9.x/server-php/examples/tablesdb/list-tables.md index c74d5a152..0801b333b 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-php/examples/tablesdb/list-tables.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-php/examples/tablesdb/list-transactions.md index 58b31a64d..37979755b 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-php/examples/tablesdb/list-transactions.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/list.md b/examples/1.9.x/server-php/examples/tablesdb/list.md index 77da55280..0ec924d0b 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/list.md +++ b/examples/1.9.x/server-php/examples/tablesdb/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-big-int-column.md index 1a317032e..2afdd2659 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-big-int-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-boolean-column.md index 8a7850fc6..9d74c5adf 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-boolean-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-datetime-column.md index 30ef56b81..84a750380 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-datetime-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-email-column.md index 8cd10d410..d9549ee85 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-email-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-enum-column.md index 0dcf57475..854106311 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-enum-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-float-column.md index 68a90df3e..320a16996 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-float-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-integer-column.md index ba7a781f2..d0f8f901d 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-integer-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-ip-column.md index 25a716011..8fc03e425 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-ip-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-line-column.md index a7126a396..4611ba050 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-line-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-longtext-column.md index aaccf9276..190dc23ae 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-longtext-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-mediumtext-column.md index 2b06e8d3b..fb2c6a2e8 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-mediumtext-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-point-column.md index 0d137cea6..c375159f6 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-point-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-polygon-column.md index 5341610c1..ff0b2637e 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-polygon-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-relationship-column.md index 4b153851a..ccbbb7207 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-relationship-column.md @@ -6,7 +6,7 @@ use Appwrite\Services\TablesDB; use Appwrite\Enums\RelationMutate; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-row.md b/examples/1.9.x/server-php/examples/tablesdb/update-row.md index f0fd37d67..0d05da5e4 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-row.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-rows.md b/examples/1.9.x/server-php/examples/tablesdb/update-rows.md index baf98ecf5..7d2fa4bc1 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-rows.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-string-column.md index ff01707d4..17db20d4d 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-string-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-table.md b/examples/1.9.x/server-php/examples/tablesdb/update-table.md index 7ce092d18..19f397dea 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-table.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-text-column.md index 81fa0fecb..e511a5507 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-text-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-php/examples/tablesdb/update-transaction.md index 512760bff..7ec0ca2a6 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-transaction.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-url-column.md index 6c055168c..bbea8af16 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-url-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-php/examples/tablesdb/update-varchar-column.md index ca4ba824b..6a4908cf9 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update-varchar-column.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/update.md b/examples/1.9.x/server-php/examples/tablesdb/update.md index 126b3cafe..17c92391b 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/update.md +++ b/examples/1.9.x/server-php/examples/tablesdb/update.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-php/examples/tablesdb/upsert-row.md index 5c4645ba7..06d7dcef1 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-php/examples/tablesdb/upsert-row.md @@ -7,7 +7,7 @@ use Appwrite\Permission; use Appwrite\Role; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-php/examples/tablesdb/upsert-rows.md index 6d9d61540..c5c23622d 100644 --- a/examples/1.9.x/server-php/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-php/examples/tablesdb/upsert-rows.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\TablesDB; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/teams/create-membership.md b/examples/1.9.x/server-php/examples/teams/create-membership.md index ddbddc38f..e26aed161 100644 --- a/examples/1.9.x/server-php/examples/teams/create-membership.md +++ b/examples/1.9.x/server-php/examples/teams/create-membership.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/create.md b/examples/1.9.x/server-php/examples/teams/create.md index e0eef909d..9c1f9c10b 100644 --- a/examples/1.9.x/server-php/examples/teams/create.md +++ b/examples/1.9.x/server-php/examples/teams/create.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/delete-membership.md b/examples/1.9.x/server-php/examples/teams/delete-membership.md index 096d69eba..7d77a9e05 100644 --- a/examples/1.9.x/server-php/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-php/examples/teams/delete-membership.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/delete.md b/examples/1.9.x/server-php/examples/teams/delete.md index e982d579e..049ea94c9 100644 --- a/examples/1.9.x/server-php/examples/teams/delete.md +++ b/examples/1.9.x/server-php/examples/teams/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/get-membership.md b/examples/1.9.x/server-php/examples/teams/get-membership.md index c696fd0d5..f1d7a43c6 100644 --- a/examples/1.9.x/server-php/examples/teams/get-membership.md +++ b/examples/1.9.x/server-php/examples/teams/get-membership.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/get-prefs.md b/examples/1.9.x/server-php/examples/teams/get-prefs.md index ea621f3a8..2f1373949 100644 --- a/examples/1.9.x/server-php/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-php/examples/teams/get-prefs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/get.md b/examples/1.9.x/server-php/examples/teams/get.md index b0a71242b..c60ba55e8 100644 --- a/examples/1.9.x/server-php/examples/teams/get.md +++ b/examples/1.9.x/server-php/examples/teams/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/list-memberships.md b/examples/1.9.x/server-php/examples/teams/list-memberships.md index 0b4fd9156..684e93f65 100644 --- a/examples/1.9.x/server-php/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-php/examples/teams/list-memberships.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/list.md b/examples/1.9.x/server-php/examples/teams/list.md index 04fdc4fcf..5ba5880d0 100644 --- a/examples/1.9.x/server-php/examples/teams/list.md +++ b/examples/1.9.x/server-php/examples/teams/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/update-membership-status.md b/examples/1.9.x/server-php/examples/teams/update-membership-status.md index 33f891c19..0928c7890 100644 --- a/examples/1.9.x/server-php/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-php/examples/teams/update-membership-status.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/update-membership.md b/examples/1.9.x/server-php/examples/teams/update-membership.md index 0a2518900..ffa07a422 100644 --- a/examples/1.9.x/server-php/examples/teams/update-membership.md +++ b/examples/1.9.x/server-php/examples/teams/update-membership.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/update-name.md b/examples/1.9.x/server-php/examples/teams/update-name.md index eae3a3bf6..99ca10b1f 100644 --- a/examples/1.9.x/server-php/examples/teams/update-name.md +++ b/examples/1.9.x/server-php/examples/teams/update-name.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/teams/update-prefs.md b/examples/1.9.x/server-php/examples/teams/update-prefs.md index 785f7ba90..feb7420a3 100644 --- a/examples/1.9.x/server-php/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-php/examples/teams/update-prefs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Teams; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with diff --git a/examples/1.9.x/server-php/examples/tokens/create-file-token.md b/examples/1.9.x/server-php/examples/tokens/create-file-token.md index af8391f1f..74329e726 100644 --- a/examples/1.9.x/server-php/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-php/examples/tokens/create-file-token.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Tokens; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tokens/delete.md b/examples/1.9.x/server-php/examples/tokens/delete.md index d298ed3a1..f28261591 100644 --- a/examples/1.9.x/server-php/examples/tokens/delete.md +++ b/examples/1.9.x/server-php/examples/tokens/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Tokens; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tokens/get.md b/examples/1.9.x/server-php/examples/tokens/get.md index db117e6a8..2ad952114 100644 --- a/examples/1.9.x/server-php/examples/tokens/get.md +++ b/examples/1.9.x/server-php/examples/tokens/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Tokens; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tokens/list.md b/examples/1.9.x/server-php/examples/tokens/list.md index 355126176..2efdaaf59 100644 --- a/examples/1.9.x/server-php/examples/tokens/list.md +++ b/examples/1.9.x/server-php/examples/tokens/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Tokens; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/tokens/update.md b/examples/1.9.x/server-php/examples/tokens/update.md index 870b3fa39..5436ae41a 100644 --- a/examples/1.9.x/server-php/examples/tokens/update.md +++ b/examples/1.9.x/server-php/examples/tokens/update.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Tokens; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/usage/list-events.md b/examples/1.9.x/server-php/examples/usage/list-events.md index 41a62fe49..b3ac037bf 100644 --- a/examples/1.9.x/server-php/examples/usage/list-events.md +++ b/examples/1.9.x/server-php/examples/usage/list-events.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Usage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/usage/list-gauges.md b/examples/1.9.x/server-php/examples/usage/list-gauges.md index 9dc822bb1..c1ec6418f 100644 --- a/examples/1.9.x/server-php/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-php/examples/usage/list-gauges.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Usage; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-argon-2-user.md b/examples/1.9.x/server-php/examples/users/create-argon-2-user.md index 4813cd8be..ab4babe98 100644 --- a/examples/1.9.x/server-php/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-php/examples/users/create-argon-2-user.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-php/examples/users/create-bcrypt-user.md index 17a3c7ec6..9dbbf975d 100644 --- a/examples/1.9.x/server-php/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-php/examples/users/create-bcrypt-user.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-jwt.md b/examples/1.9.x/server-php/examples/users/create-jwt.md index 9a22a6067..483c850eb 100644 --- a/examples/1.9.x/server-php/examples/users/create-jwt.md +++ b/examples/1.9.x/server-php/examples/users/create-jwt.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-md-5-user.md b/examples/1.9.x/server-php/examples/users/create-md-5-user.md index 85e97f751..de615174a 100644 --- a/examples/1.9.x/server-php/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-php/examples/users/create-md-5-user.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-php/examples/users/create-mfa-recovery-codes.md index 23295475e..a55d643c3 100644 --- a/examples/1.9.x/server-php/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-php/examples/users/create-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-php/examples/users/create-ph-pass-user.md index 0e9a62fff..265d259bf 100644 --- a/examples/1.9.x/server-php/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-php/examples/users/create-ph-pass-user.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-php/examples/users/create-scrypt-modified-user.md index 22c18b1ea..2fe71dade 100644 --- a/examples/1.9.x/server-php/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-php/examples/users/create-scrypt-modified-user.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-scrypt-user.md b/examples/1.9.x/server-php/examples/users/create-scrypt-user.md index 8ebc44dd6..0020d2992 100644 --- a/examples/1.9.x/server-php/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-php/examples/users/create-scrypt-user.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-session.md b/examples/1.9.x/server-php/examples/users/create-session.md index 0279835ac..39016631d 100644 --- a/examples/1.9.x/server-php/examples/users/create-session.md +++ b/examples/1.9.x/server-php/examples/users/create-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-sha-user.md b/examples/1.9.x/server-php/examples/users/create-sha-user.md index 924224bcb..64764db78 100644 --- a/examples/1.9.x/server-php/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-php/examples/users/create-sha-user.md @@ -6,7 +6,7 @@ use Appwrite\Services\Users; use Appwrite\Enums\PasswordHash; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-target.md b/examples/1.9.x/server-php/examples/users/create-target.md index 1000574f3..cbee870a6 100644 --- a/examples/1.9.x/server-php/examples/users/create-target.md +++ b/examples/1.9.x/server-php/examples/users/create-target.md @@ -6,7 +6,7 @@ use Appwrite\Services\Users; use Appwrite\Enums\MessagingProviderType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create-token.md b/examples/1.9.x/server-php/examples/users/create-token.md index 4519995f7..9f1c2fd52 100644 --- a/examples/1.9.x/server-php/examples/users/create-token.md +++ b/examples/1.9.x/server-php/examples/users/create-token.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/create.md b/examples/1.9.x/server-php/examples/users/create.md index ec9b6839f..24a8014a9 100644 --- a/examples/1.9.x/server-php/examples/users/create.md +++ b/examples/1.9.x/server-php/examples/users/create.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/delete-identity.md b/examples/1.9.x/server-php/examples/users/delete-identity.md index b364358d2..5065661fd 100644 --- a/examples/1.9.x/server-php/examples/users/delete-identity.md +++ b/examples/1.9.x/server-php/examples/users/delete-identity.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-php/examples/users/delete-mfa-authenticator.md index 15ca8e294..a6d7580d3 100644 --- a/examples/1.9.x/server-php/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-php/examples/users/delete-mfa-authenticator.md @@ -6,7 +6,7 @@ use Appwrite\Services\Users; use Appwrite\Enums\AuthenticatorType; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/delete-session.md b/examples/1.9.x/server-php/examples/users/delete-session.md index 9786bde41..65e594563 100644 --- a/examples/1.9.x/server-php/examples/users/delete-session.md +++ b/examples/1.9.x/server-php/examples/users/delete-session.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/delete-sessions.md b/examples/1.9.x/server-php/examples/users/delete-sessions.md index 236aeffe6..6f5d419af 100644 --- a/examples/1.9.x/server-php/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-php/examples/users/delete-sessions.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/delete-target.md b/examples/1.9.x/server-php/examples/users/delete-target.md index 6d915dbec..bd7142304 100644 --- a/examples/1.9.x/server-php/examples/users/delete-target.md +++ b/examples/1.9.x/server-php/examples/users/delete-target.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/delete.md b/examples/1.9.x/server-php/examples/users/delete.md index faea96cfe..5eacbd27f 100644 --- a/examples/1.9.x/server-php/examples/users/delete.md +++ b/examples/1.9.x/server-php/examples/users/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-php/examples/users/get-mfa-recovery-codes.md index 90aa08dd3..186ef3dad 100644 --- a/examples/1.9.x/server-php/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-php/examples/users/get-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/get-prefs.md b/examples/1.9.x/server-php/examples/users/get-prefs.md index 931c5be8d..67f998b2c 100644 --- a/examples/1.9.x/server-php/examples/users/get-prefs.md +++ b/examples/1.9.x/server-php/examples/users/get-prefs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/get-target.md b/examples/1.9.x/server-php/examples/users/get-target.md index 1f3c0028a..6f96aa7bf 100644 --- a/examples/1.9.x/server-php/examples/users/get-target.md +++ b/examples/1.9.x/server-php/examples/users/get-target.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/get.md b/examples/1.9.x/server-php/examples/users/get.md index a777b73b3..2aef1f631 100644 --- a/examples/1.9.x/server-php/examples/users/get.md +++ b/examples/1.9.x/server-php/examples/users/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/list-identities.md b/examples/1.9.x/server-php/examples/users/list-identities.md index 370741008..aedd52ae3 100644 --- a/examples/1.9.x/server-php/examples/users/list-identities.md +++ b/examples/1.9.x/server-php/examples/users/list-identities.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/list-logs.md b/examples/1.9.x/server-php/examples/users/list-logs.md index 0d0464e25..e4a2284ad 100644 --- a/examples/1.9.x/server-php/examples/users/list-logs.md +++ b/examples/1.9.x/server-php/examples/users/list-logs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/list-memberships.md b/examples/1.9.x/server-php/examples/users/list-memberships.md index c9b3fb545..cd4a9b85d 100644 --- a/examples/1.9.x/server-php/examples/users/list-memberships.md +++ b/examples/1.9.x/server-php/examples/users/list-memberships.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/list-mfa-factors.md b/examples/1.9.x/server-php/examples/users/list-mfa-factors.md index c3cd0453b..bf00db996 100644 --- a/examples/1.9.x/server-php/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-php/examples/users/list-mfa-factors.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/list-sessions.md b/examples/1.9.x/server-php/examples/users/list-sessions.md index e4baa40ca..474332ede 100644 --- a/examples/1.9.x/server-php/examples/users/list-sessions.md +++ b/examples/1.9.x/server-php/examples/users/list-sessions.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/list-targets.md b/examples/1.9.x/server-php/examples/users/list-targets.md index 3e33f9f4a..8e333b548 100644 --- a/examples/1.9.x/server-php/examples/users/list-targets.md +++ b/examples/1.9.x/server-php/examples/users/list-targets.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/list.md b/examples/1.9.x/server-php/examples/users/list.md index 39d3189c4..087a46cb7 100644 --- a/examples/1.9.x/server-php/examples/users/list.md +++ b/examples/1.9.x/server-php/examples/users/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-email-verification.md b/examples/1.9.x/server-php/examples/users/update-email-verification.md index b7a3a9127..01a9ccc58 100644 --- a/examples/1.9.x/server-php/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-php/examples/users/update-email-verification.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-email.md b/examples/1.9.x/server-php/examples/users/update-email.md index 2710f4964..e8285140b 100644 --- a/examples/1.9.x/server-php/examples/users/update-email.md +++ b/examples/1.9.x/server-php/examples/users/update-email.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-impersonator.md b/examples/1.9.x/server-php/examples/users/update-impersonator.md index 202f0ed2a..430d66903 100644 --- a/examples/1.9.x/server-php/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-php/examples/users/update-impersonator.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-labels.md b/examples/1.9.x/server-php/examples/users/update-labels.md index 56be4fbcd..5f6e8002d 100644 --- a/examples/1.9.x/server-php/examples/users/update-labels.md +++ b/examples/1.9.x/server-php/examples/users/update-labels.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-php/examples/users/update-mfa-recovery-codes.md index bee4d1833..fec337a2b 100644 --- a/examples/1.9.x/server-php/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-php/examples/users/update-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-mfa.md b/examples/1.9.x/server-php/examples/users/update-mfa.md index 9cac2ff91..0aa37d399 100644 --- a/examples/1.9.x/server-php/examples/users/update-mfa.md +++ b/examples/1.9.x/server-php/examples/users/update-mfa.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-name.md b/examples/1.9.x/server-php/examples/users/update-name.md index bce3d8c72..9cd10e3bd 100644 --- a/examples/1.9.x/server-php/examples/users/update-name.md +++ b/examples/1.9.x/server-php/examples/users/update-name.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-password.md b/examples/1.9.x/server-php/examples/users/update-password.md index 69d93300c..cf1dac646 100644 --- a/examples/1.9.x/server-php/examples/users/update-password.md +++ b/examples/1.9.x/server-php/examples/users/update-password.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-phone-verification.md b/examples/1.9.x/server-php/examples/users/update-phone-verification.md index f94b1f84f..c843fb48f 100644 --- a/examples/1.9.x/server-php/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-php/examples/users/update-phone-verification.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-phone.md b/examples/1.9.x/server-php/examples/users/update-phone.md index c975eaf15..a3fe87efd 100644 --- a/examples/1.9.x/server-php/examples/users/update-phone.md +++ b/examples/1.9.x/server-php/examples/users/update-phone.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-prefs.md b/examples/1.9.x/server-php/examples/users/update-prefs.md index b276922c8..14b5e7b0b 100644 --- a/examples/1.9.x/server-php/examples/users/update-prefs.md +++ b/examples/1.9.x/server-php/examples/users/update-prefs.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-status.md b/examples/1.9.x/server-php/examples/users/update-status.md index 1a8346c09..313a784ae 100644 --- a/examples/1.9.x/server-php/examples/users/update-status.md +++ b/examples/1.9.x/server-php/examples/users/update-status.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/users/update-target.md b/examples/1.9.x/server-php/examples/users/update-target.md index 896356914..3d03920d5 100644 --- a/examples/1.9.x/server-php/examples/users/update-target.md +++ b/examples/1.9.x/server-php/examples/users/update-target.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Users; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/webhooks/create.md b/examples/1.9.x/server-php/examples/webhooks/create.md index 4e0175063..8ae2e4912 100644 --- a/examples/1.9.x/server-php/examples/webhooks/create.md +++ b/examples/1.9.x/server-php/examples/webhooks/create.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Webhooks; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/webhooks/delete.md b/examples/1.9.x/server-php/examples/webhooks/delete.md index cab10635b..c3c9cf824 100644 --- a/examples/1.9.x/server-php/examples/webhooks/delete.md +++ b/examples/1.9.x/server-php/examples/webhooks/delete.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Webhooks; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/webhooks/get.md b/examples/1.9.x/server-php/examples/webhooks/get.md index c8acae751..05bd75119 100644 --- a/examples/1.9.x/server-php/examples/webhooks/get.md +++ b/examples/1.9.x/server-php/examples/webhooks/get.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Webhooks; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/webhooks/list.md b/examples/1.9.x/server-php/examples/webhooks/list.md index 7727c468e..fa771ab04 100644 --- a/examples/1.9.x/server-php/examples/webhooks/list.md +++ b/examples/1.9.x/server-php/examples/webhooks/list.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Webhooks; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/webhooks/update-secret.md b/examples/1.9.x/server-php/examples/webhooks/update-secret.md index 73c3f9559..d8f9c1e00 100644 --- a/examples/1.9.x/server-php/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-php/examples/webhooks/update-secret.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Webhooks; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-php/examples/webhooks/update.md b/examples/1.9.x/server-php/examples/webhooks/update.md index 8b71a93f6..958b7c826 100644 --- a/examples/1.9.x/server-php/examples/webhooks/update.md +++ b/examples/1.9.x/server-php/examples/webhooks/update.md @@ -5,7 +5,7 @@ use Appwrite\Client; use Appwrite\Services\Webhooks; $client = (new Client()) - ->setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint + ->setEndpoint('') // Your API Endpoint ->setProject('') // Your project ID ->setKey(''); // Your secret API key diff --git a/examples/1.9.x/server-python/examples/account/create-anonymous-session.md b/examples/1.9.x/server-python/examples/account/create-anonymous-session.md index 70a7dd343..163ede8ad 100644 --- a/examples/1.9.x/server-python/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-python/examples/account/create-anonymous-session.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-email-password-session.md b/examples/1.9.x/server-python/examples/account/create-email-password-session.md index 292074dba..e975270fc 100644 --- a/examples/1.9.x/server-python/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-python/examples/account/create-email-password-session.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-email-token.md b/examples/1.9.x/server-python/examples/account/create-email-token.md index 78c5ecaab..3cfd0c155 100644 --- a/examples/1.9.x/server-python/examples/account/create-email-token.md +++ b/examples/1.9.x/server-python/examples/account/create-email-token.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-email-verification.md b/examples/1.9.x/server-python/examples/account/create-email-verification.md index d4d8fd866..303c6a0de 100644 --- a/examples/1.9.x/server-python/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-python/examples/account/create-email-verification.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-jwt.md b/examples/1.9.x/server-python/examples/account/create-jwt.md index a28c65fd9..37dcf7b7a 100644 --- a/examples/1.9.x/server-python/examples/account/create-jwt.md +++ b/examples/1.9.x/server-python/examples/account/create-jwt.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Jwt client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-magic-url-token.md b/examples/1.9.x/server-python/examples/account/create-magic-url-token.md index 5ded01281..f661ff2c0 100644 --- a/examples/1.9.x/server-python/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-python/examples/account/create-magic-url-token.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-python/examples/account/create-mfa-authenticator.md index 468011b2e..f67f7538f 100644 --- a/examples/1.9.x/server-python/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-python/examples/account/create-mfa-authenticator.md @@ -5,7 +5,7 @@ from appwrite.models import MfaType from appwrite.enums import AuthenticatorType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-python/examples/account/create-mfa-challenge.md index f31797a45..8240a7e28 100644 --- a/examples/1.9.x/server-python/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-python/examples/account/create-mfa-challenge.md @@ -5,7 +5,7 @@ from appwrite.models import MfaChallenge from appwrite.enums import AuthenticationFactor client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-python/examples/account/create-mfa-recovery-codes.md index b7a2c4dd5..d7458731d 100644 --- a/examples/1.9.x/server-python/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-python/examples/account/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import MfaRecoveryCodes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-python/examples/account/create-o-auth-2-token.md index 87f7de0f4..b736e51b1 100644 --- a/examples/1.9.x/server-python/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-python/examples/account/create-o-auth-2-token.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.enums import OAuthProvider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-phone-token.md b/examples/1.9.x/server-python/examples/account/create-phone-token.md index fb09d64ec..be984c6a7 100644 --- a/examples/1.9.x/server-python/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-python/examples/account/create-phone-token.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-phone-verification.md b/examples/1.9.x/server-python/examples/account/create-phone-verification.md index 35d058e2b..d3d234bea 100644 --- a/examples/1.9.x/server-python/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-python/examples/account/create-phone-verification.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-recovery.md b/examples/1.9.x/server-python/examples/account/create-recovery.md index ea63672fe..b8438eb90 100644 --- a/examples/1.9.x/server-python/examples/account/create-recovery.md +++ b/examples/1.9.x/server-python/examples/account/create-recovery.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-session.md b/examples/1.9.x/server-python/examples/account/create-session.md index b09cf7224..1ea97177b 100644 --- a/examples/1.9.x/server-python/examples/account/create-session.md +++ b/examples/1.9.x/server-python/examples/account/create-session.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create-verification.md b/examples/1.9.x/server-python/examples/account/create-verification.md index c44a76936..948b9e9c8 100644 --- a/examples/1.9.x/server-python/examples/account/create-verification.md +++ b/examples/1.9.x/server-python/examples/account/create-verification.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/create.md b/examples/1.9.x/server-python/examples/account/create.md index 87c8fabaf..ab33c53f8 100644 --- a/examples/1.9.x/server-python/examples/account/create.md +++ b/examples/1.9.x/server-python/examples/account/create.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/delete-identity.md b/examples/1.9.x/server-python/examples/account/delete-identity.md index 1ba48c203..0ed8dccd1 100644 --- a/examples/1.9.x/server-python/examples/account/delete-identity.md +++ b/examples/1.9.x/server-python/examples/account/delete-identity.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.account import Account client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-python/examples/account/delete-mfa-authenticator.md index faeccb8b2..0bd185ef0 100644 --- a/examples/1.9.x/server-python/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-python/examples/account/delete-mfa-authenticator.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.enums import AuthenticatorType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/delete-session.md b/examples/1.9.x/server-python/examples/account/delete-session.md index 051a38a57..7a5d80eee 100644 --- a/examples/1.9.x/server-python/examples/account/delete-session.md +++ b/examples/1.9.x/server-python/examples/account/delete-session.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.account import Account client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/delete-sessions.md b/examples/1.9.x/server-python/examples/account/delete-sessions.md index 4db5c1ec6..6912f2c87 100644 --- a/examples/1.9.x/server-python/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-python/examples/account/delete-sessions.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.account import Account client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-python/examples/account/get-mfa-recovery-codes.md index f236eb6ba..b15c2b7cf 100644 --- a/examples/1.9.x/server-python/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-python/examples/account/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import MfaRecoveryCodes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/get-prefs.md b/examples/1.9.x/server-python/examples/account/get-prefs.md index db5861525..6192afdf5 100644 --- a/examples/1.9.x/server-python/examples/account/get-prefs.md +++ b/examples/1.9.x/server-python/examples/account/get-prefs.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Preferences client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/get-session.md b/examples/1.9.x/server-python/examples/account/get-session.md index 9a247b2ae..4b2346d4c 100644 --- a/examples/1.9.x/server-python/examples/account/get-session.md +++ b/examples/1.9.x/server-python/examples/account/get-session.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/get.md b/examples/1.9.x/server-python/examples/account/get.md index c06fd6ba0..fa0a4ef94 100644 --- a/examples/1.9.x/server-python/examples/account/get.md +++ b/examples/1.9.x/server-python/examples/account/get.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/list-identities.md b/examples/1.9.x/server-python/examples/account/list-identities.md index 5b8496de0..3adf912d7 100644 --- a/examples/1.9.x/server-python/examples/account/list-identities.md +++ b/examples/1.9.x/server-python/examples/account/list-identities.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import IdentityList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/list-logs.md b/examples/1.9.x/server-python/examples/account/list-logs.md index 3f0a3b553..3df01238e 100644 --- a/examples/1.9.x/server-python/examples/account/list-logs.md +++ b/examples/1.9.x/server-python/examples/account/list-logs.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import LogList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/list-mfa-factors.md b/examples/1.9.x/server-python/examples/account/list-mfa-factors.md index 411a3e9a1..a6d258541 100644 --- a/examples/1.9.x/server-python/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-python/examples/account/list-mfa-factors.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import MfaFactors client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/list-sessions.md b/examples/1.9.x/server-python/examples/account/list-sessions.md index d9df7a714..37a463c38 100644 --- a/examples/1.9.x/server-python/examples/account/list-sessions.md +++ b/examples/1.9.x/server-python/examples/account/list-sessions.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import SessionList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-email-verification.md b/examples/1.9.x/server-python/examples/account/update-email-verification.md index 5415f7d92..30919a82b 100644 --- a/examples/1.9.x/server-python/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-python/examples/account/update-email-verification.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-email.md b/examples/1.9.x/server-python/examples/account/update-email.md index d559e026c..df8114f36 100644 --- a/examples/1.9.x/server-python/examples/account/update-email.md +++ b/examples/1.9.x/server-python/examples/account/update-email.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-magic-url-session.md b/examples/1.9.x/server-python/examples/account/update-magic-url-session.md index 754bbcdff..cb2815a2f 100644 --- a/examples/1.9.x/server-python/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-python/examples/account/update-magic-url-session.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-python/examples/account/update-mfa-authenticator.md index e7040b0a2..6bed42e65 100644 --- a/examples/1.9.x/server-python/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-python/examples/account/update-mfa-authenticator.md @@ -5,7 +5,7 @@ from appwrite.models import User from appwrite.enums import AuthenticatorType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-python/examples/account/update-mfa-challenge.md index 40d6382f2..362b57e48 100644 --- a/examples/1.9.x/server-python/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-python/examples/account/update-mfa-challenge.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-python/examples/account/update-mfa-recovery-codes.md index 38ff568d9..c4738241b 100644 --- a/examples/1.9.x/server-python/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-python/examples/account/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import MfaRecoveryCodes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-mfa.md b/examples/1.9.x/server-python/examples/account/update-mfa.md index 607cea791..fa190d394 100644 --- a/examples/1.9.x/server-python/examples/account/update-mfa.md +++ b/examples/1.9.x/server-python/examples/account/update-mfa.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-name.md b/examples/1.9.x/server-python/examples/account/update-name.md index d16c8dd01..fbb906196 100644 --- a/examples/1.9.x/server-python/examples/account/update-name.md +++ b/examples/1.9.x/server-python/examples/account/update-name.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-password.md b/examples/1.9.x/server-python/examples/account/update-password.md index dc504e2c3..e154cc206 100644 --- a/examples/1.9.x/server-python/examples/account/update-password.md +++ b/examples/1.9.x/server-python/examples/account/update-password.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-phone-session.md b/examples/1.9.x/server-python/examples/account/update-phone-session.md index 300cadd8f..95ded2e2a 100644 --- a/examples/1.9.x/server-python/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-python/examples/account/update-phone-session.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-phone-verification.md b/examples/1.9.x/server-python/examples/account/update-phone-verification.md index 9091264d3..b952f220b 100644 --- a/examples/1.9.x/server-python/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-python/examples/account/update-phone-verification.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-phone.md b/examples/1.9.x/server-python/examples/account/update-phone.md index 6dcd811e3..8d18da9a6 100644 --- a/examples/1.9.x/server-python/examples/account/update-phone.md +++ b/examples/1.9.x/server-python/examples/account/update-phone.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-prefs.md b/examples/1.9.x/server-python/examples/account/update-prefs.md index 1c6a0a518..f93914758 100644 --- a/examples/1.9.x/server-python/examples/account/update-prefs.md +++ b/examples/1.9.x/server-python/examples/account/update-prefs.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-recovery.md b/examples/1.9.x/server-python/examples/account/update-recovery.md index 90ed3096c..189233c1b 100644 --- a/examples/1.9.x/server-python/examples/account/update-recovery.md +++ b/examples/1.9.x/server-python/examples/account/update-recovery.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-session.md b/examples/1.9.x/server-python/examples/account/update-session.md index 6232e0b38..2bdc09f1e 100644 --- a/examples/1.9.x/server-python/examples/account/update-session.md +++ b/examples/1.9.x/server-python/examples/account/update-session.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-status.md b/examples/1.9.x/server-python/examples/account/update-status.md index d48014532..aab86c85c 100644 --- a/examples/1.9.x/server-python/examples/account/update-status.md +++ b/examples/1.9.x/server-python/examples/account/update-status.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/account/update-verification.md b/examples/1.9.x/server-python/examples/account/update-verification.md index 5dffe6ad4..e4decbeef 100644 --- a/examples/1.9.x/server-python/examples/account/update-verification.md +++ b/examples/1.9.x/server-python/examples/account/update-verification.md @@ -4,7 +4,7 @@ from appwrite.services.account import Account from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/activities/get-event.md b/examples/1.9.x/server-python/examples/activities/get-event.md index 12819034c..d57cb9be8 100644 --- a/examples/1.9.x/server-python/examples/activities/get-event.md +++ b/examples/1.9.x/server-python/examples/activities/get-event.md @@ -4,7 +4,7 @@ from appwrite.services.activities import Activities from appwrite.models import ActivityEvent client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/activities/list-events.md b/examples/1.9.x/server-python/examples/activities/list-events.md index bbeb644bb..19516dac0 100644 --- a/examples/1.9.x/server-python/examples/activities/list-events.md +++ b/examples/1.9.x/server-python/examples/activities/list-events.md @@ -4,7 +4,7 @@ from appwrite.services.activities import Activities from appwrite.models import ActivityEventList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/advisor/delete-report.md b/examples/1.9.x/server-python/examples/advisor/delete-report.md index ef50a2f0d..02ac75930 100644 --- a/examples/1.9.x/server-python/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-python/examples/advisor/delete-report.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.advisor import Advisor client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/advisor/get-insight.md b/examples/1.9.x/server-python/examples/advisor/get-insight.md index 7f4b804ad..231d4020d 100644 --- a/examples/1.9.x/server-python/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-python/examples/advisor/get-insight.md @@ -4,7 +4,7 @@ from appwrite.services.advisor import Advisor from appwrite.models import Insight client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/advisor/get-report.md b/examples/1.9.x/server-python/examples/advisor/get-report.md index 2d9836ac4..1415ef2d7 100644 --- a/examples/1.9.x/server-python/examples/advisor/get-report.md +++ b/examples/1.9.x/server-python/examples/advisor/get-report.md @@ -4,7 +4,7 @@ from appwrite.services.advisor import Advisor from appwrite.models import Report client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/advisor/list-insights.md b/examples/1.9.x/server-python/examples/advisor/list-insights.md index 2813e6e3b..b10273173 100644 --- a/examples/1.9.x/server-python/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-python/examples/advisor/list-insights.md @@ -4,7 +4,7 @@ from appwrite.services.advisor import Advisor from appwrite.models import InsightList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/advisor/list-reports.md b/examples/1.9.x/server-python/examples/advisor/list-reports.md index 146bbf1c4..a4f83b095 100644 --- a/examples/1.9.x/server-python/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-python/examples/advisor/list-reports.md @@ -4,7 +4,7 @@ from appwrite.services.advisor import Advisor from appwrite.models import ReportList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/avatars/get-browser.md b/examples/1.9.x/server-python/examples/avatars/get-browser.md index 3c950dbb8..53d97efae 100644 --- a/examples/1.9.x/server-python/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-python/examples/avatars/get-browser.md @@ -4,7 +4,7 @@ from appwrite.services.avatars import Avatars from appwrite.enums import Browser client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/avatars/get-credit-card.md b/examples/1.9.x/server-python/examples/avatars/get-credit-card.md index 8ef04f635..345fca2af 100644 --- a/examples/1.9.x/server-python/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-python/examples/avatars/get-credit-card.md @@ -4,7 +4,7 @@ from appwrite.services.avatars import Avatars from appwrite.enums import CreditCard client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/avatars/get-favicon.md b/examples/1.9.x/server-python/examples/avatars/get-favicon.md index dd234eafc..6509bf586 100644 --- a/examples/1.9.x/server-python/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-python/examples/avatars/get-favicon.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.avatars import Avatars client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/avatars/get-flag.md b/examples/1.9.x/server-python/examples/avatars/get-flag.md index f97b20dd8..b08454206 100644 --- a/examples/1.9.x/server-python/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-python/examples/avatars/get-flag.md @@ -4,7 +4,7 @@ from appwrite.services.avatars import Avatars from appwrite.enums import Flag client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/avatars/get-image.md b/examples/1.9.x/server-python/examples/avatars/get-image.md index 9beea030e..f50fcc521 100644 --- a/examples/1.9.x/server-python/examples/avatars/get-image.md +++ b/examples/1.9.x/server-python/examples/avatars/get-image.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.avatars import Avatars client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/avatars/get-initials.md b/examples/1.9.x/server-python/examples/avatars/get-initials.md index 30a39a8ec..d6b92b1a3 100644 --- a/examples/1.9.x/server-python/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-python/examples/avatars/get-initials.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.avatars import Avatars client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/avatars/get-qr.md b/examples/1.9.x/server-python/examples/avatars/get-qr.md index a7968e75c..19551ac31 100644 --- a/examples/1.9.x/server-python/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-python/examples/avatars/get-qr.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.avatars import Avatars client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/avatars/get-screenshot.md b/examples/1.9.x/server-python/examples/avatars/get-screenshot.md index 15f74aa4c..88935ea92 100644 --- a/examples/1.9.x/server-python/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-python/examples/avatars/get-screenshot.md @@ -1,13 +1,13 @@ ```python from appwrite.client import Client from appwrite.services.avatars import Avatars -from appwrite.enums import Theme +from appwrite.enums import BrowserTheme from appwrite.enums import Timezone from appwrite.enums import BrowserPermission from appwrite.enums import ImageFormat client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with @@ -22,7 +22,7 @@ result: bytes = avatars.get_screenshot( viewport_width = 1920, # optional viewport_height = 1080, # optional scale = 2, # optional - theme = Theme.DARK, # optional + theme = BrowserTheme.DARK, # optional user_agent = 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', # optional fullpage = True, # optional locale = 'en-US', # optional diff --git a/examples/1.9.x/server-python/examples/backups/create-archive.md b/examples/1.9.x/server-python/examples/backups/create-archive.md index 77264469d..eff5ab3c4 100644 --- a/examples/1.9.x/server-python/examples/backups/create-archive.md +++ b/examples/1.9.x/server-python/examples/backups/create-archive.md @@ -5,7 +5,7 @@ from appwrite.models import BackupArchive from appwrite.enums import BackupServices client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/create-policy.md b/examples/1.9.x/server-python/examples/backups/create-policy.md index bf24e87ad..afc7ce32c 100644 --- a/examples/1.9.x/server-python/examples/backups/create-policy.md +++ b/examples/1.9.x/server-python/examples/backups/create-policy.md @@ -5,7 +5,7 @@ from appwrite.models import BackupPolicy from appwrite.enums import BackupServices client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/create-restoration.md b/examples/1.9.x/server-python/examples/backups/create-restoration.md index e2966caa1..b1c8d2956 100644 --- a/examples/1.9.x/server-python/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-python/examples/backups/create-restoration.md @@ -5,7 +5,7 @@ from appwrite.models import BackupRestoration from appwrite.enums import BackupServices client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/delete-archive.md b/examples/1.9.x/server-python/examples/backups/delete-archive.md index 106e9f0f4..d81b9e43f 100644 --- a/examples/1.9.x/server-python/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-python/examples/backups/delete-archive.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.backups import Backups client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/delete-policy.md b/examples/1.9.x/server-python/examples/backups/delete-policy.md index 0583a8205..49877d92b 100644 --- a/examples/1.9.x/server-python/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-python/examples/backups/delete-policy.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.backups import Backups client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/get-archive.md b/examples/1.9.x/server-python/examples/backups/get-archive.md index 60b9c646c..7621ea5dc 100644 --- a/examples/1.9.x/server-python/examples/backups/get-archive.md +++ b/examples/1.9.x/server-python/examples/backups/get-archive.md @@ -4,7 +4,7 @@ from appwrite.services.backups import Backups from appwrite.models import BackupArchive client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/get-policy.md b/examples/1.9.x/server-python/examples/backups/get-policy.md index 3fa673a8e..7ce942f7a 100644 --- a/examples/1.9.x/server-python/examples/backups/get-policy.md +++ b/examples/1.9.x/server-python/examples/backups/get-policy.md @@ -4,7 +4,7 @@ from appwrite.services.backups import Backups from appwrite.models import BackupPolicy client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/get-restoration.md b/examples/1.9.x/server-python/examples/backups/get-restoration.md index 775f047b7..67b6a7c9d 100644 --- a/examples/1.9.x/server-python/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-python/examples/backups/get-restoration.md @@ -4,7 +4,7 @@ from appwrite.services.backups import Backups from appwrite.models import BackupRestoration client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/list-archives.md b/examples/1.9.x/server-python/examples/backups/list-archives.md index 3d1799234..5f6246eb3 100644 --- a/examples/1.9.x/server-python/examples/backups/list-archives.md +++ b/examples/1.9.x/server-python/examples/backups/list-archives.md @@ -4,7 +4,7 @@ from appwrite.services.backups import Backups from appwrite.models import BackupArchiveList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/list-policies.md b/examples/1.9.x/server-python/examples/backups/list-policies.md index bcfb67348..751b6730e 100644 --- a/examples/1.9.x/server-python/examples/backups/list-policies.md +++ b/examples/1.9.x/server-python/examples/backups/list-policies.md @@ -4,7 +4,7 @@ from appwrite.services.backups import Backups from appwrite.models import BackupPolicyList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/list-restorations.md b/examples/1.9.x/server-python/examples/backups/list-restorations.md index c353a50e0..f0942e890 100644 --- a/examples/1.9.x/server-python/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-python/examples/backups/list-restorations.md @@ -4,7 +4,7 @@ from appwrite.services.backups import Backups from appwrite.models import BackupRestorationList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/backups/update-policy.md b/examples/1.9.x/server-python/examples/backups/update-policy.md index 74fbdeb3d..56637cbf0 100644 --- a/examples/1.9.x/server-python/examples/backups/update-policy.md +++ b/examples/1.9.x/server-python/examples/backups/update-policy.md @@ -4,7 +4,7 @@ from appwrite.services.backups import Backups from appwrite.models import BackupPolicy client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-python/examples/databases/create-big-int-attribute.md index 8c615d9f7..937629cdf 100644 --- a/examples/1.9.x/server-python/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-big-int-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeBigint client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-python/examples/databases/create-boolean-attribute.md index b18196d72..c29712a04 100644 --- a/examples/1.9.x/server-python/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-boolean-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeBoolean client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-collection.md b/examples/1.9.x/server-python/examples/databases/create-collection.md index 7e9afa0f1..957cfcd5d 100644 --- a/examples/1.9.x/server-python/examples/databases/create-collection.md +++ b/examples/1.9.x/server-python/examples/databases/create-collection.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-python/examples/databases/create-datetime-attribute.md index 9ee99ca24..5a9bf4abf 100644 --- a/examples/1.9.x/server-python/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-datetime-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeDatetime client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-document.md b/examples/1.9.x/server-python/examples/databases/create-document.md index 26b003443..ec737ac96 100644 --- a/examples/1.9.x/server-python/examples/databases/create-document.md +++ b/examples/1.9.x/server-python/examples/databases/create-document.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/databases/create-documents.md b/examples/1.9.x/server-python/examples/databases/create-documents.md index a1df96a90..636ba90ca 100644 --- a/examples/1.9.x/server-python/examples/databases/create-documents.md +++ b/examples/1.9.x/server-python/examples/databases/create-documents.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import DocumentList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-email-attribute.md b/examples/1.9.x/server-python/examples/databases/create-email-attribute.md index 8c37eff09..86bd6425e 100644 --- a/examples/1.9.x/server-python/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-email-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeEmail client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-python/examples/databases/create-enum-attribute.md index bc8a4ab74..41ccb9452 100644 --- a/examples/1.9.x/server-python/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-enum-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeEnum client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-float-attribute.md b/examples/1.9.x/server-python/examples/databases/create-float-attribute.md index 204dbfdb6..b70c3800a 100644 --- a/examples/1.9.x/server-python/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-float-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeFloat client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-index.md b/examples/1.9.x/server-python/examples/databases/create-index.md index e973ae0bc..14c590ae1 100644 --- a/examples/1.9.x/server-python/examples/databases/create-index.md +++ b/examples/1.9.x/server-python/examples/databases/create-index.md @@ -6,7 +6,7 @@ from appwrite.enums import DatabasesIndexType from appwrite.enums import OrderBy client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-python/examples/databases/create-integer-attribute.md index fe609ba4b..525e151eb 100644 --- a/examples/1.9.x/server-python/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-integer-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeInteger client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-python/examples/databases/create-ip-attribute.md index c684df57f..258104b7c 100644 --- a/examples/1.9.x/server-python/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-ip-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeIp client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-line-attribute.md b/examples/1.9.x/server-python/examples/databases/create-line-attribute.md index 5a7827670..90128d32d 100644 --- a/examples/1.9.x/server-python/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-line-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeLine client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-python/examples/databases/create-longtext-attribute.md index 7659fadb1..3d856829b 100644 --- a/examples/1.9.x/server-python/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-longtext-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeLongtext client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-python/examples/databases/create-mediumtext-attribute.md index f7381b2a6..c56b8c7f5 100644 --- a/examples/1.9.x/server-python/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-mediumtext-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeMediumtext client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-operations.md b/examples/1.9.x/server-python/examples/databases/create-operations.md index ce412c3b6..55edbdd7b 100644 --- a/examples/1.9.x/server-python/examples/databases/create-operations.md +++ b/examples/1.9.x/server-python/examples/databases/create-operations.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Transaction client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-point-attribute.md b/examples/1.9.x/server-python/examples/databases/create-point-attribute.md index 8b8c8d1af..53b45c3d0 100644 --- a/examples/1.9.x/server-python/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-point-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributePoint client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-python/examples/databases/create-polygon-attribute.md index defb0e943..a4d7d6c30 100644 --- a/examples/1.9.x/server-python/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-polygon-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributePolygon client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-python/examples/databases/create-relationship-attribute.md index b4300dd2d..f49ab5e89 100644 --- a/examples/1.9.x/server-python/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-relationship-attribute.md @@ -6,7 +6,7 @@ from appwrite.enums import RelationshipType from appwrite.enums import RelationMutate client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-string-attribute.md b/examples/1.9.x/server-python/examples/databases/create-string-attribute.md index 9d1383d64..81419d96e 100644 --- a/examples/1.9.x/server-python/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-string-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeString client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-text-attribute.md b/examples/1.9.x/server-python/examples/databases/create-text-attribute.md index 89f29e2ba..685edabb3 100644 --- a/examples/1.9.x/server-python/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-text-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeText client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-transaction.md b/examples/1.9.x/server-python/examples/databases/create-transaction.md index 733b2cf3b..f93491c01 100644 --- a/examples/1.9.x/server-python/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-python/examples/databases/create-transaction.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Transaction client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-url-attribute.md b/examples/1.9.x/server-python/examples/databases/create-url-attribute.md index b6e773ac4..a6cbc3b01 100644 --- a/examples/1.9.x/server-python/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-url-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeUrl client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-python/examples/databases/create-varchar-attribute.md index 964e2fc34..d94d79e55 100644 --- a/examples/1.9.x/server-python/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/create-varchar-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeVarchar client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/create.md b/examples/1.9.x/server-python/examples/databases/create.md index 68a5b3743..33742bd79 100644 --- a/examples/1.9.x/server-python/examples/databases/create.md +++ b/examples/1.9.x/server-python/examples/databases/create.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Database client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-python/examples/databases/decrement-document-attribute.md index c7bbfdd1e..6c10e199a 100644 --- a/examples/1.9.x/server-python/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/decrement-document-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Document client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/databases/delete-attribute.md b/examples/1.9.x/server-python/examples/databases/delete-attribute.md index ceda5de25..17a725e67 100644 --- a/examples/1.9.x/server-python/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/delete-attribute.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.databases import Databases client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/delete-collection.md b/examples/1.9.x/server-python/examples/databases/delete-collection.md index ff486c588..ce07ed49a 100644 --- a/examples/1.9.x/server-python/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-python/examples/databases/delete-collection.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.databases import Databases client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/delete-document.md b/examples/1.9.x/server-python/examples/databases/delete-document.md index 6a56cd2df..6e0996833 100644 --- a/examples/1.9.x/server-python/examples/databases/delete-document.md +++ b/examples/1.9.x/server-python/examples/databases/delete-document.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.databases import Databases client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/databases/delete-documents.md b/examples/1.9.x/server-python/examples/databases/delete-documents.md index d410bdefe..8e40158f6 100644 --- a/examples/1.9.x/server-python/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-python/examples/databases/delete-documents.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import DocumentList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/delete-index.md b/examples/1.9.x/server-python/examples/databases/delete-index.md index 62fa4875c..aa4a5f352 100644 --- a/examples/1.9.x/server-python/examples/databases/delete-index.md +++ b/examples/1.9.x/server-python/examples/databases/delete-index.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.databases import Databases client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/delete-transaction.md b/examples/1.9.x/server-python/examples/databases/delete-transaction.md index bbc0d9757..c5bc807ed 100644 --- a/examples/1.9.x/server-python/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-python/examples/databases/delete-transaction.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.databases import Databases client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/delete.md b/examples/1.9.x/server-python/examples/databases/delete.md index 4bf78037a..7e420ba4e 100644 --- a/examples/1.9.x/server-python/examples/databases/delete.md +++ b/examples/1.9.x/server-python/examples/databases/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.databases import Databases client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/get-attribute.md b/examples/1.9.x/server-python/examples/databases/get-attribute.md index d841226f3..5cf4a3c2b 100644 --- a/examples/1.9.x/server-python/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/get-attribute.md @@ -14,7 +14,7 @@ from appwrite.models import AttributeString from typing import Union client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/get-collection.md b/examples/1.9.x/server-python/examples/databases/get-collection.md index 6650f4ae8..cf8fcb8f4 100644 --- a/examples/1.9.x/server-python/examples/databases/get-collection.md +++ b/examples/1.9.x/server-python/examples/databases/get-collection.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Collection client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/get-document.md b/examples/1.9.x/server-python/examples/databases/get-document.md index c6d968ac1..500a3fc61 100644 --- a/examples/1.9.x/server-python/examples/databases/get-document.md +++ b/examples/1.9.x/server-python/examples/databases/get-document.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Document client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/databases/get-index.md b/examples/1.9.x/server-python/examples/databases/get-index.md index d76008ac5..4b604ff84 100644 --- a/examples/1.9.x/server-python/examples/databases/get-index.md +++ b/examples/1.9.x/server-python/examples/databases/get-index.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Index client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/get-transaction.md b/examples/1.9.x/server-python/examples/databases/get-transaction.md index 3348baa83..ca35fa412 100644 --- a/examples/1.9.x/server-python/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-python/examples/databases/get-transaction.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Transaction client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/get.md b/examples/1.9.x/server-python/examples/databases/get.md index b2906c561..5d916444f 100644 --- a/examples/1.9.x/server-python/examples/databases/get.md +++ b/examples/1.9.x/server-python/examples/databases/get.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Database client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-python/examples/databases/increment-document-attribute.md index 37fb12440..7a6b2a036 100644 --- a/examples/1.9.x/server-python/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/increment-document-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Document client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/databases/list-attributes.md b/examples/1.9.x/server-python/examples/databases/list-attributes.md index 4fc25f41b..1c38cc1bc 100644 --- a/examples/1.9.x/server-python/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-python/examples/databases/list-attributes.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/list-collections.md b/examples/1.9.x/server-python/examples/databases/list-collections.md index 19e71456e..356072f5e 100644 --- a/examples/1.9.x/server-python/examples/databases/list-collections.md +++ b/examples/1.9.x/server-python/examples/databases/list-collections.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import CollectionList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/list-documents.md b/examples/1.9.x/server-python/examples/databases/list-documents.md index f085c7d30..1937fee2f 100644 --- a/examples/1.9.x/server-python/examples/databases/list-documents.md +++ b/examples/1.9.x/server-python/examples/databases/list-documents.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import DocumentList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/databases/list-indexes.md b/examples/1.9.x/server-python/examples/databases/list-indexes.md index 7129c5a55..a52376659 100644 --- a/examples/1.9.x/server-python/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-python/examples/databases/list-indexes.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import IndexList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/list-transactions.md b/examples/1.9.x/server-python/examples/databases/list-transactions.md index bd0993144..210384422 100644 --- a/examples/1.9.x/server-python/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-python/examples/databases/list-transactions.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import TransactionList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/list.md b/examples/1.9.x/server-python/examples/databases/list.md index 7fb1acd22..f12f2bb18 100644 --- a/examples/1.9.x/server-python/examples/databases/list.md +++ b/examples/1.9.x/server-python/examples/databases/list.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import DatabaseList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-python/examples/databases/update-big-int-attribute.md index 35c0c14c8..447d8eef7 100644 --- a/examples/1.9.x/server-python/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-big-int-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeBigint client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-python/examples/databases/update-boolean-attribute.md index 34ae961c5..91ae0f976 100644 --- a/examples/1.9.x/server-python/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-boolean-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeBoolean client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-collection.md b/examples/1.9.x/server-python/examples/databases/update-collection.md index 85d50789f..db7a4f4d5 100644 --- a/examples/1.9.x/server-python/examples/databases/update-collection.md +++ b/examples/1.9.x/server-python/examples/databases/update-collection.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-python/examples/databases/update-datetime-attribute.md index 0c585a8ef..7d74be1e1 100644 --- a/examples/1.9.x/server-python/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-datetime-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeDatetime client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-document.md b/examples/1.9.x/server-python/examples/databases/update-document.md index 667d9b6e3..3c5bb7429 100644 --- a/examples/1.9.x/server-python/examples/databases/update-document.md +++ b/examples/1.9.x/server-python/examples/databases/update-document.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/databases/update-documents.md b/examples/1.9.x/server-python/examples/databases/update-documents.md index edae26a45..103484559 100644 --- a/examples/1.9.x/server-python/examples/databases/update-documents.md +++ b/examples/1.9.x/server-python/examples/databases/update-documents.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import DocumentList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-email-attribute.md b/examples/1.9.x/server-python/examples/databases/update-email-attribute.md index ac6bb1933..b5db87619 100644 --- a/examples/1.9.x/server-python/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-email-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeEmail client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-python/examples/databases/update-enum-attribute.md index d7cf1fe9d..cab6d1c69 100644 --- a/examples/1.9.x/server-python/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-enum-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeEnum client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-float-attribute.md b/examples/1.9.x/server-python/examples/databases/update-float-attribute.md index c11825561..2cabcfa18 100644 --- a/examples/1.9.x/server-python/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-float-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeFloat client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-python/examples/databases/update-integer-attribute.md index ddeebf4f1..37dbdf2f4 100644 --- a/examples/1.9.x/server-python/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-integer-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeInteger client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-python/examples/databases/update-ip-attribute.md index 11978eb0f..d370e531f 100644 --- a/examples/1.9.x/server-python/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-ip-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeIp client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-line-attribute.md b/examples/1.9.x/server-python/examples/databases/update-line-attribute.md index ba8237635..5e790cce7 100644 --- a/examples/1.9.x/server-python/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-line-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeLine client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-python/examples/databases/update-longtext-attribute.md index ec7050e7d..4247ff972 100644 --- a/examples/1.9.x/server-python/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-longtext-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeLongtext client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-python/examples/databases/update-mediumtext-attribute.md index 1036a808a..2b8b5ce1b 100644 --- a/examples/1.9.x/server-python/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-mediumtext-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeMediumtext client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-point-attribute.md b/examples/1.9.x/server-python/examples/databases/update-point-attribute.md index 9095bdf66..3c96e2ce5 100644 --- a/examples/1.9.x/server-python/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-point-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributePoint client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-python/examples/databases/update-polygon-attribute.md index dffcaa579..70293002f 100644 --- a/examples/1.9.x/server-python/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-polygon-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributePolygon client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-python/examples/databases/update-relationship-attribute.md index 226e8b0a7..bc0435bae 100644 --- a/examples/1.9.x/server-python/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-relationship-attribute.md @@ -5,7 +5,7 @@ from appwrite.models import AttributeRelationship from appwrite.enums import RelationMutate client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-string-attribute.md b/examples/1.9.x/server-python/examples/databases/update-string-attribute.md index 897a3134c..5608baae5 100644 --- a/examples/1.9.x/server-python/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-string-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeString client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-text-attribute.md b/examples/1.9.x/server-python/examples/databases/update-text-attribute.md index 02b5fd35e..699bbbe4c 100644 --- a/examples/1.9.x/server-python/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-text-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeText client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-transaction.md b/examples/1.9.x/server-python/examples/databases/update-transaction.md index 937a227e6..dddad9458 100644 --- a/examples/1.9.x/server-python/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-python/examples/databases/update-transaction.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Transaction client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-url-attribute.md b/examples/1.9.x/server-python/examples/databases/update-url-attribute.md index d57477082..e347ecb67 100644 --- a/examples/1.9.x/server-python/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-url-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeUrl client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-python/examples/databases/update-varchar-attribute.md index f3079e160..b437adb35 100644 --- a/examples/1.9.x/server-python/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-python/examples/databases/update-varchar-attribute.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import AttributeVarchar client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/update.md b/examples/1.9.x/server-python/examples/databases/update.md index 73458d4f2..cfaf2efae 100644 --- a/examples/1.9.x/server-python/examples/databases/update.md +++ b/examples/1.9.x/server-python/examples/databases/update.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import Database client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/databases/upsert-document.md b/examples/1.9.x/server-python/examples/databases/upsert-document.md index b18eb794d..f2f493981 100644 --- a/examples/1.9.x/server-python/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-python/examples/databases/upsert-document.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/databases/upsert-documents.md b/examples/1.9.x/server-python/examples/databases/upsert-documents.md index 5039ccb0a..5863fca84 100644 --- a/examples/1.9.x/server-python/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-python/examples/databases/upsert-documents.md @@ -4,7 +4,7 @@ from appwrite.services.databases import Databases from appwrite.models import DocumentList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/create-deployment.md b/examples/1.9.x/server-python/examples/functions/create-deployment.md index ed197c329..de96f4fe1 100644 --- a/examples/1.9.x/server-python/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-python/examples/functions/create-deployment.md @@ -5,7 +5,7 @@ from appwrite.input_file import InputFile from appwrite.models import Deployment client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-python/examples/functions/create-duplicate-deployment.md index 68400cbeb..4cea8f9e5 100644 --- a/examples/1.9.x/server-python/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-python/examples/functions/create-duplicate-deployment.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Deployment client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/create-execution.md b/examples/1.9.x/server-python/examples/functions/create-execution.md index c88c00efd..e71514e07 100644 --- a/examples/1.9.x/server-python/examples/functions/create-execution.md +++ b/examples/1.9.x/server-python/examples/functions/create-execution.md @@ -5,7 +5,7 @@ from appwrite.models import Execution from appwrite.enums import ExecutionMethod client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/functions/create-template-deployment.md b/examples/1.9.x/server-python/examples/functions/create-template-deployment.md index 19227be6f..1a7f0af42 100644 --- a/examples/1.9.x/server-python/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-python/examples/functions/create-template-deployment.md @@ -5,7 +5,7 @@ from appwrite.models import Deployment from appwrite.enums import TemplateReferenceType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/create-variable.md b/examples/1.9.x/server-python/examples/functions/create-variable.md index da323f97d..704c3027b 100644 --- a/examples/1.9.x/server-python/examples/functions/create-variable.md +++ b/examples/1.9.x/server-python/examples/functions/create-variable.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-python/examples/functions/create-vcs-deployment.md index be644a7c4..70a8b6c0c 100644 --- a/examples/1.9.x/server-python/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-python/examples/functions/create-vcs-deployment.md @@ -5,7 +5,7 @@ from appwrite.models import Deployment from appwrite.enums import VCSReferenceType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/create.md b/examples/1.9.x/server-python/examples/functions/create.md index fdded0ed8..123ca153d 100644 --- a/examples/1.9.x/server-python/examples/functions/create.md +++ b/examples/1.9.x/server-python/examples/functions/create.md @@ -2,11 +2,11 @@ from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.models import Function -from appwrite.enums import Runtime -from appwrite.enums import Scopes +from appwrite.enums import FunctionRuntime +from appwrite.enums import ProjectKeyScopes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key @@ -15,7 +15,7 @@ functions = Functions(client) result: Function = functions.create( function_id = '', name = '', - runtime = Runtime.NODE_14_5, + runtime = FunctionRuntime.NODE_14_5, execute = ["any"], # optional events = [], # optional schedule = '', # optional @@ -24,12 +24,14 @@ result: Function = functions.create( logging = False, # optional entrypoint = '', # optional commands = '', # optional - scopes = [Scopes.PROJECT_READ], # optional + scopes = [ProjectKeyScopes.PROJECT_READ], # optional installation_id = '', # optional provider_repository_id = '', # optional provider_branch = '', # optional provider_silent_mode = False, # optional provider_root_directory = '', # optional + provider_branches = [], # optional + provider_paths = [], # optional build_specification = '', # optional runtime_specification = '', # optional deployment_retention = 0 # optional diff --git a/examples/1.9.x/server-python/examples/functions/delete-deployment.md b/examples/1.9.x/server-python/examples/functions/delete-deployment.md index 72abfb744..631b02609 100644 --- a/examples/1.9.x/server-python/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-python/examples/functions/delete-deployment.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.functions import Functions client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/delete-execution.md b/examples/1.9.x/server-python/examples/functions/delete-execution.md index 634bfef72..5e0d074b6 100644 --- a/examples/1.9.x/server-python/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-python/examples/functions/delete-execution.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.functions import Functions client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/delete-variable.md b/examples/1.9.x/server-python/examples/functions/delete-variable.md index e93cd9c55..a424d1044 100644 --- a/examples/1.9.x/server-python/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-python/examples/functions/delete-variable.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.functions import Functions client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/delete.md b/examples/1.9.x/server-python/examples/functions/delete.md index ebd09f477..b4ef5df66 100644 --- a/examples/1.9.x/server-python/examples/functions/delete.md +++ b/examples/1.9.x/server-python/examples/functions/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.functions import Functions client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/get-deployment-download.md b/examples/1.9.x/server-python/examples/functions/get-deployment-download.md index 7f6b2f6ba..45b36ae67 100644 --- a/examples/1.9.x/server-python/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-python/examples/functions/get-deployment-download.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.enums import DeploymentDownloadType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/get-deployment.md b/examples/1.9.x/server-python/examples/functions/get-deployment.md index d9f8ba2bf..c599f8ce2 100644 --- a/examples/1.9.x/server-python/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-python/examples/functions/get-deployment.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Deployment client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/get-execution.md b/examples/1.9.x/server-python/examples/functions/get-execution.md index 47d4ce387..d02d720a5 100644 --- a/examples/1.9.x/server-python/examples/functions/get-execution.md +++ b/examples/1.9.x/server-python/examples/functions/get-execution.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Execution client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/functions/get-variable.md b/examples/1.9.x/server-python/examples/functions/get-variable.md index 7ba591ad6..4261296b1 100644 --- a/examples/1.9.x/server-python/examples/functions/get-variable.md +++ b/examples/1.9.x/server-python/examples/functions/get-variable.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/get.md b/examples/1.9.x/server-python/examples/functions/get.md index a604e4d9c..370b98eef 100644 --- a/examples/1.9.x/server-python/examples/functions/get.md +++ b/examples/1.9.x/server-python/examples/functions/get.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Function client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/list-deployments.md b/examples/1.9.x/server-python/examples/functions/list-deployments.md index 097181653..667f1e64c 100644 --- a/examples/1.9.x/server-python/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-python/examples/functions/list-deployments.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import DeploymentList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/list-executions.md b/examples/1.9.x/server-python/examples/functions/list-executions.md index 907ec8597..19c678ee8 100644 --- a/examples/1.9.x/server-python/examples/functions/list-executions.md +++ b/examples/1.9.x/server-python/examples/functions/list-executions.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import ExecutionList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/functions/list-runtimes.md b/examples/1.9.x/server-python/examples/functions/list-runtimes.md index ee75c80e6..e517f617c 100644 --- a/examples/1.9.x/server-python/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-python/examples/functions/list-runtimes.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import RuntimeList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/list-specifications.md b/examples/1.9.x/server-python/examples/functions/list-specifications.md index 5b76860db..820a3a66f 100644 --- a/examples/1.9.x/server-python/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-python/examples/functions/list-specifications.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import SpecificationList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/list-variables.md b/examples/1.9.x/server-python/examples/functions/list-variables.md index 693334b7c..471aae727 100644 --- a/examples/1.9.x/server-python/examples/functions/list-variables.md +++ b/examples/1.9.x/server-python/examples/functions/list-variables.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import VariableList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/list.md b/examples/1.9.x/server-python/examples/functions/list.md index 6f1876966..c32f2d3d1 100644 --- a/examples/1.9.x/server-python/examples/functions/list.md +++ b/examples/1.9.x/server-python/examples/functions/list.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import FunctionList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/update-deployment-status.md b/examples/1.9.x/server-python/examples/functions/update-deployment-status.md index 97a554935..a1249f81c 100644 --- a/examples/1.9.x/server-python/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-python/examples/functions/update-deployment-status.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Deployment client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/update-function-deployment.md b/examples/1.9.x/server-python/examples/functions/update-function-deployment.md index be39738ac..377e1e79d 100644 --- a/examples/1.9.x/server-python/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-python/examples/functions/update-function-deployment.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Function client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/update-variable.md b/examples/1.9.x/server-python/examples/functions/update-variable.md index 6aa2f98c1..11d7d97ea 100644 --- a/examples/1.9.x/server-python/examples/functions/update-variable.md +++ b/examples/1.9.x/server-python/examples/functions/update-variable.md @@ -4,7 +4,7 @@ from appwrite.services.functions import Functions from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/functions/update.md b/examples/1.9.x/server-python/examples/functions/update.md index ab634e5e2..1a52de300 100644 --- a/examples/1.9.x/server-python/examples/functions/update.md +++ b/examples/1.9.x/server-python/examples/functions/update.md @@ -2,11 +2,11 @@ from appwrite.client import Client from appwrite.services.functions import Functions from appwrite.models import Function -from appwrite.enums import Runtime -from appwrite.enums import Scopes +from appwrite.enums import FunctionRuntime +from appwrite.enums import ProjectKeyScopes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key @@ -15,7 +15,7 @@ functions = Functions(client) result: Function = functions.update( function_id = '', name = '', - runtime = Runtime.NODE_14_5, # optional + runtime = FunctionRuntime.NODE_14_5, # optional execute = ["any"], # optional events = [], # optional schedule = '', # optional @@ -24,12 +24,14 @@ result: Function = functions.update( logging = False, # optional entrypoint = '', # optional commands = '', # optional - scopes = [Scopes.PROJECT_READ], # optional + scopes = [ProjectKeyScopes.PROJECT_READ], # optional installation_id = '', # optional provider_repository_id = '', # optional provider_branch = '', # optional provider_silent_mode = False, # optional provider_root_directory = '', # optional + provider_branches = [], # optional + provider_paths = [], # optional build_specification = '', # optional runtime_specification = '', # optional deployment_retention = 0 # optional diff --git a/examples/1.9.x/server-python/examples/graphql/mutation.md b/examples/1.9.x/server-python/examples/graphql/mutation.md index 26ed1cbed..98f22db8a 100644 --- a/examples/1.9.x/server-python/examples/graphql/mutation.md +++ b/examples/1.9.x/server-python/examples/graphql/mutation.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.graphql import Graphql client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/graphql/query.md b/examples/1.9.x/server-python/examples/graphql/query.md index 94142f993..4ca866ad1 100644 --- a/examples/1.9.x/server-python/examples/graphql/query.md +++ b/examples/1.9.x/server-python/examples/graphql/query.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.graphql import Graphql client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-antivirus.md b/examples/1.9.x/server-python/examples/health/get-antivirus.md index 1ab51503c..ca1d3f32c 100644 --- a/examples/1.9.x/server-python/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-python/examples/health/get-antivirus.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthAntivirus client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-cache.md b/examples/1.9.x/server-python/examples/health/get-cache.md index 390508785..50693a24b 100644 --- a/examples/1.9.x/server-python/examples/health/get-cache.md +++ b/examples/1.9.x/server-python/examples/health/get-cache.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthStatusList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-certificate.md b/examples/1.9.x/server-python/examples/health/get-certificate.md index 53dde7fb1..a81653038 100644 --- a/examples/1.9.x/server-python/examples/health/get-certificate.md +++ b/examples/1.9.x/server-python/examples/health/get-certificate.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthCertificate client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-console-pausing.md b/examples/1.9.x/server-python/examples/health/get-console-pausing.md index 633c175a9..0e929a79f 100644 --- a/examples/1.9.x/server-python/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-python/examples/health/get-console-pausing.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthStatus client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-db.md b/examples/1.9.x/server-python/examples/health/get-db.md index 47b6dd986..531a46555 100644 --- a/examples/1.9.x/server-python/examples/health/get-db.md +++ b/examples/1.9.x/server-python/examples/health/get-db.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthStatusList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-failed-jobs.md b/examples/1.9.x/server-python/examples/health/get-failed-jobs.md index 9815c2468..34951871d 100644 --- a/examples/1.9.x/server-python/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-python/examples/health/get-failed-jobs.md @@ -2,17 +2,17 @@ from appwrite.client import Client from appwrite.services.health import Health from appwrite.models import HealthQueue -from appwrite.enums import Name +from appwrite.enums import HealthQueueName client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key health = Health(client) result: HealthQueue = health.get_failed_jobs( - name = Name.V1_DATABASE, + name = HealthQueueName.V1_DATABASE, threshold = None # optional ) diff --git a/examples/1.9.x/server-python/examples/health/get-pub-sub.md b/examples/1.9.x/server-python/examples/health/get-pub-sub.md index 588a2bacd..a7f4f6811 100644 --- a/examples/1.9.x/server-python/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-python/examples/health/get-pub-sub.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthStatusList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-audits.md b/examples/1.9.x/server-python/examples/health/get-queue-audits.md index a892ca250..096990763 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-audits.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-builds.md b/examples/1.9.x/server-python/examples/health/get-queue-builds.md index 0ae87b2ca..b1b4de562 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-builds.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-certificates.md b/examples/1.9.x/server-python/examples/health/get-queue-certificates.md index 6666463fa..4d4fc30c1 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-certificates.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-databases.md b/examples/1.9.x/server-python/examples/health/get-queue-databases.md index 44e165ed6..3a02d008d 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-databases.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-deletes.md b/examples/1.9.x/server-python/examples/health/get-queue-deletes.md index fece63016..931f399d8 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-deletes.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-functions.md b/examples/1.9.x/server-python/examples/health/get-queue-functions.md index 03d9afe84..8ec0da68b 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-functions.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-logs.md b/examples/1.9.x/server-python/examples/health/get-queue-logs.md index 5191fa5a4..ab6e0ae7e 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-logs.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-mails.md b/examples/1.9.x/server-python/examples/health/get-queue-mails.md index aed05e1db..f51027ac5 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-mails.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-messaging.md b/examples/1.9.x/server-python/examples/health/get-queue-messaging.md index 5da876a6e..fea7e40a9 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-messaging.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-migrations.md b/examples/1.9.x/server-python/examples/health/get-queue-migrations.md index 749675d76..b5c7c86df 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-migrations.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-python/examples/health/get-queue-stats-resources.md index 60c0dd579..699b55c13 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-stats-resources.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-usage.md b/examples/1.9.x/server-python/examples/health/get-queue-usage.md index 10fa4a0f9..a18f2706a 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-usage.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-python/examples/health/get-queue-webhooks.md index 24423761b..63d7849cf 100644 --- a/examples/1.9.x/server-python/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-python/examples/health/get-queue-webhooks.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthQueue client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-storage-local.md b/examples/1.9.x/server-python/examples/health/get-storage-local.md index 57b8ec40f..80e458923 100644 --- a/examples/1.9.x/server-python/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-python/examples/health/get-storage-local.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthStatus client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-storage.md b/examples/1.9.x/server-python/examples/health/get-storage.md index a17ee4e33..a69fef1fb 100644 --- a/examples/1.9.x/server-python/examples/health/get-storage.md +++ b/examples/1.9.x/server-python/examples/health/get-storage.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthStatus client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get-time.md b/examples/1.9.x/server-python/examples/health/get-time.md index 5ffae25ee..560b1c9dd 100644 --- a/examples/1.9.x/server-python/examples/health/get-time.md +++ b/examples/1.9.x/server-python/examples/health/get-time.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthTime client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/health/get.md b/examples/1.9.x/server-python/examples/health/get.md index 5a3b3d061..870cc2e94 100644 --- a/examples/1.9.x/server-python/examples/health/get.md +++ b/examples/1.9.x/server-python/examples/health/get.md @@ -4,7 +4,7 @@ from appwrite.services.health import Health from appwrite.models import HealthStatus client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/locale/get.md b/examples/1.9.x/server-python/examples/locale/get.md index bef85fab8..2af7c0229 100644 --- a/examples/1.9.x/server-python/examples/locale/get.md +++ b/examples/1.9.x/server-python/examples/locale/get.md @@ -4,7 +4,7 @@ from appwrite.services.locale import Locale from appwrite.models import Locale as LocaleModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/locale/list-codes.md b/examples/1.9.x/server-python/examples/locale/list-codes.md index adc293961..9fa02ebfd 100644 --- a/examples/1.9.x/server-python/examples/locale/list-codes.md +++ b/examples/1.9.x/server-python/examples/locale/list-codes.md @@ -4,7 +4,7 @@ from appwrite.services.locale import Locale from appwrite.models import LocaleCodeList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/locale/list-continents.md b/examples/1.9.x/server-python/examples/locale/list-continents.md index fcf05e6ef..ce6ca2539 100644 --- a/examples/1.9.x/server-python/examples/locale/list-continents.md +++ b/examples/1.9.x/server-python/examples/locale/list-continents.md @@ -4,7 +4,7 @@ from appwrite.services.locale import Locale from appwrite.models import ContinentList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/locale/list-countries-eu.md b/examples/1.9.x/server-python/examples/locale/list-countries-eu.md index 374cc9a37..fe735ba3f 100644 --- a/examples/1.9.x/server-python/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-python/examples/locale/list-countries-eu.md @@ -4,7 +4,7 @@ from appwrite.services.locale import Locale from appwrite.models import CountryList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/locale/list-countries-phones.md b/examples/1.9.x/server-python/examples/locale/list-countries-phones.md index 8b36a1f91..c37923217 100644 --- a/examples/1.9.x/server-python/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-python/examples/locale/list-countries-phones.md @@ -4,7 +4,7 @@ from appwrite.services.locale import Locale from appwrite.models import PhoneList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/locale/list-countries.md b/examples/1.9.x/server-python/examples/locale/list-countries.md index 5c45a7668..7d6e6c21f 100644 --- a/examples/1.9.x/server-python/examples/locale/list-countries.md +++ b/examples/1.9.x/server-python/examples/locale/list-countries.md @@ -4,7 +4,7 @@ from appwrite.services.locale import Locale from appwrite.models import CountryList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/locale/list-currencies.md b/examples/1.9.x/server-python/examples/locale/list-currencies.md index 07f061c96..225dfd685 100644 --- a/examples/1.9.x/server-python/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-python/examples/locale/list-currencies.md @@ -4,7 +4,7 @@ from appwrite.services.locale import Locale from appwrite.models import CurrencyList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/locale/list-languages.md b/examples/1.9.x/server-python/examples/locale/list-languages.md index 3fb0c82cf..44cb5c282 100644 --- a/examples/1.9.x/server-python/examples/locale/list-languages.md +++ b/examples/1.9.x/server-python/examples/locale/list-languages.md @@ -4,7 +4,7 @@ from appwrite.services.locale import Locale from appwrite.models import LanguageList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-python/examples/messaging/create-apns-provider.md index 52d144d62..1f13868ff 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-apns-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-email.md b/examples/1.9.x/server-python/examples/messaging/create-email.md index a6454e493..106588495 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-email.md +++ b/examples/1.9.x/server-python/examples/messaging/create-email.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Message client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-python/examples/messaging/create-fcm-provider.md index b4dc9b2f2..00d3c04ee 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-fcm-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-python/examples/messaging/create-mailgun-provider.md index d16f453aa..8f9bd68a8 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-mailgun-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-python/examples/messaging/create-msg-91-provider.md index 9bf577df7..3a3d444ee 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-msg-91-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-push.md b/examples/1.9.x/server-python/examples/messaging/create-push.md index 81a15dabb..0557d89d1 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-push.md +++ b/examples/1.9.x/server-python/examples/messaging/create-push.md @@ -5,7 +5,7 @@ from appwrite.models import Message from appwrite.enums import MessagePriority client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-python/examples/messaging/create-resend-provider.md index 5a1205a41..757a76663 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-resend-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-python/examples/messaging/create-sendgrid-provider.md index e9abd646a..2de51a5e5 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-sendgrid-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-sms.md b/examples/1.9.x/server-python/examples/messaging/create-sms.md index 7512a542d..ad1ba696f 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-python/examples/messaging/create-sms.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Message client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-python/examples/messaging/create-smtp-provider.md index 55e5b6eaf..69e5bcbdb 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-smtp-provider.md @@ -5,7 +5,7 @@ from appwrite.models import Provider from appwrite.enums import SmtpEncryption client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-subscriber.md b/examples/1.9.x/server-python/examples/messaging/create-subscriber.md index 2c230b1ac..acd05cbf0 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-python/examples/messaging/create-subscriber.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Subscriber client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_jwt('') # Your secret JSON Web Token diff --git a/examples/1.9.x/server-python/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-python/examples/messaging/create-telesign-provider.md index e4e105893..197009de0 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-telesign-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-python/examples/messaging/create-textmagic-provider.md index 3b42e692b..ee660753e 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-textmagic-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-topic.md b/examples/1.9.x/server-python/examples/messaging/create-topic.md index 3a6547eb1..a1c4270b7 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-python/examples/messaging/create-topic.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Topic client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-python/examples/messaging/create-twilio-provider.md index 6a20087d7..20b3aef35 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-twilio-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-python/examples/messaging/create-vonage-provider.md index 4afc224d3..319015b6c 100644 --- a/examples/1.9.x/server-python/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/create-vonage-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/delete-provider.md b/examples/1.9.x/server-python/examples/messaging/delete-provider.md index 887434c02..76c5b6e01 100644 --- a/examples/1.9.x/server-python/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/delete-provider.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.messaging import Messaging client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-python/examples/messaging/delete-subscriber.md index 32eec660b..ab922ab5d 100644 --- a/examples/1.9.x/server-python/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-python/examples/messaging/delete-subscriber.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.messaging import Messaging client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_jwt('') # Your secret JSON Web Token diff --git a/examples/1.9.x/server-python/examples/messaging/delete-topic.md b/examples/1.9.x/server-python/examples/messaging/delete-topic.md index f46587099..e99021886 100644 --- a/examples/1.9.x/server-python/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-python/examples/messaging/delete-topic.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.messaging import Messaging client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/delete.md b/examples/1.9.x/server-python/examples/messaging/delete.md index d3447ced9..e36e09499 100644 --- a/examples/1.9.x/server-python/examples/messaging/delete.md +++ b/examples/1.9.x/server-python/examples/messaging/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.messaging import Messaging client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/get-message.md b/examples/1.9.x/server-python/examples/messaging/get-message.md index b93df097e..905c117c7 100644 --- a/examples/1.9.x/server-python/examples/messaging/get-message.md +++ b/examples/1.9.x/server-python/examples/messaging/get-message.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Message client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/get-provider.md b/examples/1.9.x/server-python/examples/messaging/get-provider.md index 77750af4b..1ec95c352 100644 --- a/examples/1.9.x/server-python/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/get-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/get-subscriber.md b/examples/1.9.x/server-python/examples/messaging/get-subscriber.md index 58b6dda21..74572f26c 100644 --- a/examples/1.9.x/server-python/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-python/examples/messaging/get-subscriber.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Subscriber client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/get-topic.md b/examples/1.9.x/server-python/examples/messaging/get-topic.md index 7c38c8012..455324218 100644 --- a/examples/1.9.x/server-python/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-python/examples/messaging/get-topic.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Topic client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-message-logs.md b/examples/1.9.x/server-python/examples/messaging/list-message-logs.md index 27d6b9b63..dfa689757 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-python/examples/messaging/list-message-logs.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import LogList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-messages.md b/examples/1.9.x/server-python/examples/messaging/list-messages.md index cb833b251..0fdab1bb5 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-python/examples/messaging/list-messages.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import MessageList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-python/examples/messaging/list-provider-logs.md index ad2714280..0abd1a7f8 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-python/examples/messaging/list-provider-logs.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import LogList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-providers.md b/examples/1.9.x/server-python/examples/messaging/list-providers.md index eae8eee0c..bd6319fc2 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-python/examples/messaging/list-providers.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import ProviderList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-python/examples/messaging/list-subscriber-logs.md index b02c2b1ba..eeaa2c186 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-python/examples/messaging/list-subscriber-logs.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import LogList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-subscribers.md b/examples/1.9.x/server-python/examples/messaging/list-subscribers.md index 7502d00f1..19ffdc2bc 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-python/examples/messaging/list-subscribers.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import SubscriberList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-targets.md b/examples/1.9.x/server-python/examples/messaging/list-targets.md index 6c753b2fb..80ae5ac21 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-python/examples/messaging/list-targets.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import TargetList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-python/examples/messaging/list-topic-logs.md index 3ed2d7e3a..231a85f52 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-python/examples/messaging/list-topic-logs.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import LogList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/list-topics.md b/examples/1.9.x/server-python/examples/messaging/list-topics.md index 106deab05..80cc8e868 100644 --- a/examples/1.9.x/server-python/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-python/examples/messaging/list-topics.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import TopicList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-python/examples/messaging/update-apns-provider.md index bdbfc06e4..82afdfc7e 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-apns-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-email.md b/examples/1.9.x/server-python/examples/messaging/update-email.md index 94d2d4073..65b1b44cc 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-email.md +++ b/examples/1.9.x/server-python/examples/messaging/update-email.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Message client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-python/examples/messaging/update-fcm-provider.md index 6270cb80d..b9bffafbc 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-fcm-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-python/examples/messaging/update-mailgun-provider.md index 5c3285cd6..531f2ee7f 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-mailgun-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-python/examples/messaging/update-msg-91-provider.md index d608d6315..5d5eb781a 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-msg-91-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-push.md b/examples/1.9.x/server-python/examples/messaging/update-push.md index 913de5a19..adbb6a973 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-push.md +++ b/examples/1.9.x/server-python/examples/messaging/update-push.md @@ -5,7 +5,7 @@ from appwrite.models import Message from appwrite.enums import MessagePriority client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-python/examples/messaging/update-resend-provider.md index 1de7e46fd..42ea2f675 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-resend-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-python/examples/messaging/update-sendgrid-provider.md index 23bf7bad9..71731a1cc 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-sendgrid-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-sms.md b/examples/1.9.x/server-python/examples/messaging/update-sms.md index 32698978b..446233481 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-python/examples/messaging/update-sms.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Message client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-python/examples/messaging/update-smtp-provider.md index b47125009..da14bbe39 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-smtp-provider.md @@ -5,7 +5,7 @@ from appwrite.models import Provider from appwrite.enums import SmtpEncryption client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-python/examples/messaging/update-telesign-provider.md index d59fbaf67..0152b3c68 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-telesign-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-python/examples/messaging/update-textmagic-provider.md index e1f9569b9..3d3f5137c 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-textmagic-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-topic.md b/examples/1.9.x/server-python/examples/messaging/update-topic.md index d7936aa6a..5539fd99b 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-python/examples/messaging/update-topic.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Topic client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-python/examples/messaging/update-twilio-provider.md index e4622e273..76671484e 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-twilio-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-python/examples/messaging/update-vonage-provider.md index ba3798943..459830baf 100644 --- a/examples/1.9.x/server-python/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-python/examples/messaging/update-vonage-provider.md @@ -4,7 +4,7 @@ from appwrite.services.messaging import Messaging from appwrite.models import Provider client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/organization/create-key.md b/examples/1.9.x/server-python/examples/organization/create-key.md new file mode 100644 index 000000000..cc6f944ed --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/create-key.md @@ -0,0 +1,22 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization +from appwrite.models import Key +from appwrite.enums import OrganizationKeyScopes + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result: Key = organization.create_key( + key_id = '', + name = '', + scopes = [OrganizationKeyScopes.PROJECTS_READ], + expire = '2020-10-15T06:38:00.000+00:00' # optional +) + +print(result.model_dump()) +``` diff --git a/examples/1.9.x/server-python/examples/organization/create-project.md b/examples/1.9.x/server-python/examples/organization/create-project.md new file mode 100644 index 000000000..2e2be5710 --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/create-project.md @@ -0,0 +1,21 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization +from appwrite.models import Project +from appwrite.enums import Region + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result: Project = organization.create_project( + project_id = '', + name = '', + region = Region.FRA # optional +) + +print(result.model_dump()) +``` diff --git a/examples/1.9.x/server-python/examples/organization/delete-key.md b/examples/1.9.x/server-python/examples/organization/delete-key.md new file mode 100644 index 000000000..26efe4b85 --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/delete-key.md @@ -0,0 +1,15 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result = organization.delete_key( + key_id = '' +) +``` diff --git a/examples/1.9.x/server-python/examples/organization/delete-project.md b/examples/1.9.x/server-python/examples/organization/delete-project.md new file mode 100644 index 000000000..10fab4ea1 --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/delete-project.md @@ -0,0 +1,15 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result = organization.delete_project( + project_id = '' +) +``` diff --git a/examples/1.9.x/server-python/examples/organization/get-key.md b/examples/1.9.x/server-python/examples/organization/get-key.md new file mode 100644 index 000000000..4653d3f71 --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/get-key.md @@ -0,0 +1,18 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization +from appwrite.models import Key + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result: Key = organization.get_key( + key_id = '' +) + +print(result.model_dump()) +``` diff --git a/examples/1.9.x/server-python/examples/organization/get-project.md b/examples/1.9.x/server-python/examples/organization/get-project.md new file mode 100644 index 000000000..3d152d92e --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/get-project.md @@ -0,0 +1,18 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization +from appwrite.models import Project + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result: Project = organization.get_project( + project_id = '' +) + +print(result.model_dump()) +``` diff --git a/examples/1.9.x/server-python/examples/organization/list-keys.md b/examples/1.9.x/server-python/examples/organization/list-keys.md new file mode 100644 index 000000000..e794a0edc --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/list-keys.md @@ -0,0 +1,19 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization +from appwrite.models import KeyList + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result: KeyList = organization.list_keys( + queries = [], # optional + total = False # optional +) + +print(result.model_dump()) +``` diff --git a/examples/1.9.x/server-python/examples/organization/list-projects.md b/examples/1.9.x/server-python/examples/organization/list-projects.md new file mode 100644 index 000000000..52f657a25 --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/list-projects.md @@ -0,0 +1,20 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization +from appwrite.models import ProjectList + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result: ProjectList = organization.list_projects( + queries = [], # optional + search = '', # optional + total = False # optional +) + +print(result.model_dump()) +``` diff --git a/examples/1.9.x/server-python/examples/organization/update-key.md b/examples/1.9.x/server-python/examples/organization/update-key.md new file mode 100644 index 000000000..96e8d2ca7 --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/update-key.md @@ -0,0 +1,22 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization +from appwrite.models import Key +from appwrite.enums import OrganizationKeyScopes + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result: Key = organization.update_key( + key_id = '', + name = '', + scopes = [OrganizationKeyScopes.PROJECTS_READ], + expire = '2020-10-15T06:38:00.000+00:00' # optional +) + +print(result.model_dump()) +``` diff --git a/examples/1.9.x/server-python/examples/organization/update-project.md b/examples/1.9.x/server-python/examples/organization/update-project.md new file mode 100644 index 000000000..cab0219c5 --- /dev/null +++ b/examples/1.9.x/server-python/examples/organization/update-project.md @@ -0,0 +1,19 @@ +```python +from appwrite.client import Client +from appwrite.services.organization import Organization +from appwrite.models import Project + +client = Client() +client.set_endpoint('') # Your API Endpoint +client.set_project('') # Your project ID +client.set_key('') # Your secret API key + +organization = Organization(client) + +result: Project = organization.update_project( + project_id = '', + name = '' +) + +print(result.model_dump()) +``` diff --git a/examples/1.9.x/server-python/examples/presences/delete.md b/examples/1.9.x/server-python/examples/presences/delete.md index ca4ba6601..1b26aad21 100644 --- a/examples/1.9.x/server-python/examples/presences/delete.md +++ b/examples/1.9.x/server-python/examples/presences/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.presences import Presences client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/presences/get.md b/examples/1.9.x/server-python/examples/presences/get.md index 2c57df097..0dcd6f93c 100644 --- a/examples/1.9.x/server-python/examples/presences/get.md +++ b/examples/1.9.x/server-python/examples/presences/get.md @@ -4,7 +4,7 @@ from appwrite.services.presences import Presences from appwrite.models import Presence client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/presences/list.md b/examples/1.9.x/server-python/examples/presences/list.md index a03492851..9fee5790c 100644 --- a/examples/1.9.x/server-python/examples/presences/list.md +++ b/examples/1.9.x/server-python/examples/presences/list.md @@ -4,7 +4,7 @@ from appwrite.services.presences import Presences from appwrite.models import PresenceList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/presences/update-presence.md b/examples/1.9.x/server-python/examples/presences/update-presence.md index ea7a7c580..1ba40f6b6 100644 --- a/examples/1.9.x/server-python/examples/presences/update-presence.md +++ b/examples/1.9.x/server-python/examples/presences/update-presence.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/presences/upsert.md b/examples/1.9.x/server-python/examples/presences/upsert.md index 2750434c2..3bfbc97fc 100644 --- a/examples/1.9.x/server-python/examples/presences/upsert.md +++ b/examples/1.9.x/server-python/examples/presences/upsert.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-android-platform.md b/examples/1.9.x/server-python/examples/project/create-android-platform.md index 092376e00..0e92177ee 100644 --- a/examples/1.9.x/server-python/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-python/examples/project/create-android-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformAndroid client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-apple-platform.md b/examples/1.9.x/server-python/examples/project/create-apple-platform.md index 3e190d4c7..1aaab5ccc 100644 --- a/examples/1.9.x/server-python/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-python/examples/project/create-apple-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformApple client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-python/examples/project/create-ephemeral-key.md index 17a48da69..279df22dc 100644 --- a/examples/1.9.x/server-python/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-python/examples/project/create-ephemeral-key.md @@ -5,7 +5,7 @@ from appwrite.models import EphemeralKey from appwrite.enums import ProjectKeyScopes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-key.md b/examples/1.9.x/server-python/examples/project/create-key.md index a3e040f71..f5435e5f5 100644 --- a/examples/1.9.x/server-python/examples/project/create-key.md +++ b/examples/1.9.x/server-python/examples/project/create-key.md @@ -5,7 +5,7 @@ from appwrite.models import Key from appwrite.enums import ProjectKeyScopes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-linux-platform.md b/examples/1.9.x/server-python/examples/project/create-linux-platform.md index e1ac1da86..652b7ccf7 100644 --- a/examples/1.9.x/server-python/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-python/examples/project/create-linux-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformLinux client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-mock-phone.md b/examples/1.9.x/server-python/examples/project/create-mock-phone.md index 6ad457df8..04451e04c 100644 --- a/examples/1.9.x/server-python/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-python/examples/project/create-mock-phone.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import MockNumber client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-smtp-test.md b/examples/1.9.x/server-python/examples/project/create-smtp-test.md index 3b39979bb..55246360e 100644 --- a/examples/1.9.x/server-python/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-python/examples/project/create-smtp-test.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.project import Project client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-variable.md b/examples/1.9.x/server-python/examples/project/create-variable.md index 668e3548e..3263d2d8f 100644 --- a/examples/1.9.x/server-python/examples/project/create-variable.md +++ b/examples/1.9.x/server-python/examples/project/create-variable.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-web-platform.md b/examples/1.9.x/server-python/examples/project/create-web-platform.md index c92e167bf..ae809b10c 100644 --- a/examples/1.9.x/server-python/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-python/examples/project/create-web-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformWeb client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/create-windows-platform.md b/examples/1.9.x/server-python/examples/project/create-windows-platform.md index 5f782144e..c34ccbf92 100644 --- a/examples/1.9.x/server-python/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-python/examples/project/create-windows-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformWindows client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/delete-key.md b/examples/1.9.x/server-python/examples/project/delete-key.md index 8af3c0fc4..4b4bbf792 100644 --- a/examples/1.9.x/server-python/examples/project/delete-key.md +++ b/examples/1.9.x/server-python/examples/project/delete-key.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.project import Project client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/delete-mock-phone.md b/examples/1.9.x/server-python/examples/project/delete-mock-phone.md index 5ce79db59..aa418bc65 100644 --- a/examples/1.9.x/server-python/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-python/examples/project/delete-mock-phone.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.project import Project client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/delete-platform.md b/examples/1.9.x/server-python/examples/project/delete-platform.md index 471bb8386..200d19268 100644 --- a/examples/1.9.x/server-python/examples/project/delete-platform.md +++ b/examples/1.9.x/server-python/examples/project/delete-platform.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.project import Project client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/delete-variable.md b/examples/1.9.x/server-python/examples/project/delete-variable.md index 89b16d21f..ddabe21dc 100644 --- a/examples/1.9.x/server-python/examples/project/delete-variable.md +++ b/examples/1.9.x/server-python/examples/project/delete-variable.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.project import Project client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/delete.md b/examples/1.9.x/server-python/examples/project/delete.md index 0c74d3116..9af23c916 100644 --- a/examples/1.9.x/server-python/examples/project/delete.md +++ b/examples/1.9.x/server-python/examples/project/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.project import Project client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/get-email-template.md b/examples/1.9.x/server-python/examples/project/get-email-template.md index 8fedaf742..41f66f842 100644 --- a/examples/1.9.x/server-python/examples/project/get-email-template.md +++ b/examples/1.9.x/server-python/examples/project/get-email-template.md @@ -6,7 +6,7 @@ from appwrite.enums import ProjectEmailTemplateId from appwrite.enums import ProjectEmailTemplateLocale client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/get-key.md b/examples/1.9.x/server-python/examples/project/get-key.md index 0165746db..b2c224737 100644 --- a/examples/1.9.x/server-python/examples/project/get-key.md +++ b/examples/1.9.x/server-python/examples/project/get-key.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Key client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/get-mock-phone.md b/examples/1.9.x/server-python/examples/project/get-mock-phone.md index e35dffdde..2f5bfb0d7 100644 --- a/examples/1.9.x/server-python/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-python/examples/project/get-mock-phone.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import MockNumber client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-python/examples/project/get-o-auth-2-provider.md index f13325e0b..891eb359a 100644 --- a/examples/1.9.x/server-python/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-python/examples/project/get-o-auth-2-provider.md @@ -45,7 +45,7 @@ from typing import Union from appwrite.enums import ProjectOAuthProviderId client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/get-platform.md b/examples/1.9.x/server-python/examples/project/get-platform.md index 2075a706a..4fbd211be 100644 --- a/examples/1.9.x/server-python/examples/project/get-platform.md +++ b/examples/1.9.x/server-python/examples/project/get-platform.md @@ -9,7 +9,7 @@ from appwrite.models import PlatformLinux from typing import Union client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/get-policy.md b/examples/1.9.x/server-python/examples/project/get-policy.md index e05516f89..ffdc3a169 100644 --- a/examples/1.9.x/server-python/examples/project/get-policy.md +++ b/examples/1.9.x/server-python/examples/project/get-policy.md @@ -14,7 +14,7 @@ from typing import Union from appwrite.enums import ProjectPolicyId client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/get-variable.md b/examples/1.9.x/server-python/examples/project/get-variable.md index 9771151a6..258a47c4c 100644 --- a/examples/1.9.x/server-python/examples/project/get-variable.md +++ b/examples/1.9.x/server-python/examples/project/get-variable.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/get.md b/examples/1.9.x/server-python/examples/project/get.md index ea0046c71..772950425 100644 --- a/examples/1.9.x/server-python/examples/project/get.md +++ b/examples/1.9.x/server-python/examples/project/get.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/list-email-templates.md b/examples/1.9.x/server-python/examples/project/list-email-templates.md index 293bae738..e0c7f47ce 100644 --- a/examples/1.9.x/server-python/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-python/examples/project/list-email-templates.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import EmailTemplateList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/list-keys.md b/examples/1.9.x/server-python/examples/project/list-keys.md index e72b20bd2..9b6c01c62 100644 --- a/examples/1.9.x/server-python/examples/project/list-keys.md +++ b/examples/1.9.x/server-python/examples/project/list-keys.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import KeyList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/list-mock-phones.md b/examples/1.9.x/server-python/examples/project/list-mock-phones.md index 6a73776b9..e0e39aba7 100644 --- a/examples/1.9.x/server-python/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-python/examples/project/list-mock-phones.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import MockNumberList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-python/examples/project/list-o-auth-2-providers.md index fbe6791a9..e363df243 100644 --- a/examples/1.9.x/server-python/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-python/examples/project/list-o-auth-2-providers.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2ProviderList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/list-platforms.md b/examples/1.9.x/server-python/examples/project/list-platforms.md index 690f7a798..2d0f46c32 100644 --- a/examples/1.9.x/server-python/examples/project/list-platforms.md +++ b/examples/1.9.x/server-python/examples/project/list-platforms.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/list-policies.md b/examples/1.9.x/server-python/examples/project/list-policies.md index e150a3f6c..0941ad1c7 100644 --- a/examples/1.9.x/server-python/examples/project/list-policies.md +++ b/examples/1.9.x/server-python/examples/project/list-policies.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PolicyList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/list-variables.md b/examples/1.9.x/server-python/examples/project/list-variables.md index 4316f7c3e..13e203f6e 100644 --- a/examples/1.9.x/server-python/examples/project/list-variables.md +++ b/examples/1.9.x/server-python/examples/project/list-variables.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import VariableList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-android-platform.md b/examples/1.9.x/server-python/examples/project/update-android-platform.md index 1c915ac47..c53013966 100644 --- a/examples/1.9.x/server-python/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-python/examples/project/update-android-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformAndroid client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-apple-platform.md b/examples/1.9.x/server-python/examples/project/update-apple-platform.md index 33fd9c745..882f7d294 100644 --- a/examples/1.9.x/server-python/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-python/examples/project/update-apple-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformApple client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-auth-method.md b/examples/1.9.x/server-python/examples/project/update-auth-method.md index d9e4c6430..25dba45ba 100644 --- a/examples/1.9.x/server-python/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-python/examples/project/update-auth-method.md @@ -5,7 +5,7 @@ from appwrite.models import Project as ProjectModel from appwrite.enums import ProjectAuthMethodId client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-python/examples/project/update-deny-aliased-email-policy.md index 02d1f7d47..9447f44c1 100644 --- a/examples/1.9.x/server-python/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-deny-aliased-email-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-python/examples/project/update-deny-disposable-email-policy.md index 2dbeaf5e9..69d3175ae 100644 --- a/examples/1.9.x/server-python/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-deny-disposable-email-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-python/examples/project/update-deny-free-email-policy.md index e9af632bf..a33505d22 100644 --- a/examples/1.9.x/server-python/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-deny-free-email-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-email-template.md b/examples/1.9.x/server-python/examples/project/update-email-template.md index d5548fdbb..3dfab68b5 100644 --- a/examples/1.9.x/server-python/examples/project/update-email-template.md +++ b/examples/1.9.x/server-python/examples/project/update-email-template.md @@ -6,7 +6,7 @@ from appwrite.enums import ProjectEmailTemplateId from appwrite.enums import ProjectEmailTemplateLocale client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-key.md b/examples/1.9.x/server-python/examples/project/update-key.md index e1ecc201a..47b685aa4 100644 --- a/examples/1.9.x/server-python/examples/project/update-key.md +++ b/examples/1.9.x/server-python/examples/project/update-key.md @@ -5,7 +5,7 @@ from appwrite.models import Key from appwrite.enums import ProjectKeyScopes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-labels.md b/examples/1.9.x/server-python/examples/project/update-labels.md index 4fedceb18..5ce93e4de 100644 --- a/examples/1.9.x/server-python/examples/project/update-labels.md +++ b/examples/1.9.x/server-python/examples/project/update-labels.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-linux-platform.md b/examples/1.9.x/server-python/examples/project/update-linux-platform.md index 661286919..9d9adfba6 100644 --- a/examples/1.9.x/server-python/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-python/examples/project/update-linux-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformLinux client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-python/examples/project/update-membership-privacy-policy.md index 733699b14..7e01f3a18 100644 --- a/examples/1.9.x/server-python/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-membership-privacy-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-mock-phone.md b/examples/1.9.x/server-python/examples/project/update-mock-phone.md index 8a9a96c36..4c16f6fe2 100644 --- a/examples/1.9.x/server-python/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-python/examples/project/update-mock-phone.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import MockNumber client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-amazon.md index 61459693a..f9dba10ee 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-amazon.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Amazon client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-apple.md index 2619115ee..40746f33d 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-apple.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Apple client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-auth-0.md index 568bb9bb4..4e9a8b333 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-auth-0.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Auth0 client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-authentik.md index 2fbc09900..6415566e2 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-authentik.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Authentik client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-autodesk.md index cff31e1ef..c15fd657d 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-autodesk.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Autodesk client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-bitbucket.md index a2099d1bd..803366aba 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-bitbucket.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Bitbucket client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-bitly.md index 1f026038e..3929f0ef2 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-bitly.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Bitly client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-box.md index 363cd0609..16bc4a369 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-box.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Box client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-dailymotion.md index 53449cd1b..445173b5c 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-dailymotion.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Dailymotion client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-discord.md index a95cc4961..1cd830e85 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-discord.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Discord client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-disqus.md index f2af447f9..0aa11ef46 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-disqus.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Disqus client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-dropbox.md index 50e301197..7ff7c6365 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-dropbox.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Dropbox client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-etsy.md index 4a0a20eaa..3232b0b10 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-etsy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Etsy client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-facebook.md index 5b536dbbf..d5432085a 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-facebook.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Facebook client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-figma.md index eb2a2d252..f708698a0 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-figma.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Figma client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-fusion-auth.md index fb4d25dff..fecab5695 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-fusion-auth.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2FusionAuth client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-git-hub.md index 36664b851..a69404d2c 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-git-hub.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Github client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-gitlab.md index 05905fdce..a17101523 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-gitlab.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Gitlab client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-google.md index b1cc1eca3..2b58f1824 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-google.md @@ -5,7 +5,7 @@ from appwrite.models import OAuth2Google from appwrite.enums import ProjectOAuth2GooglePrompt client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-keycloak.md index 11a0defb5..14ec9de03 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-keycloak.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Keycloak client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-kick.md index bc73e0637..58d53676d 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-kick.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Kick client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-linkedin.md index 4b6eec3be..e4ba179e4 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-linkedin.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Linkedin client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-microsoft.md index aeeefa9ec..1ed4a4f3b 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-microsoft.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Microsoft client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-notion.md index 0ba765ea9..b5d7ba174 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-notion.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Notion client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-oidc.md index 3913262de..49818715e 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-oidc.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Oidc client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-okta.md index 1bd2e96df..a690b77de 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-okta.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Okta client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-paypal-sandbox.md index f31dc2855..978b6946e 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-paypal-sandbox.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Paypal client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-paypal.md index 450e95925..934620f7f 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-paypal.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Paypal client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-podio.md index 992ecdcea..8c6a8d96f 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-podio.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Podio client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-salesforce.md index a3cb63772..3018810b3 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-salesforce.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Salesforce client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-slack.md index 65cc30995..d971beea7 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-slack.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Slack client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-spotify.md index 257f45d04..cdfadfdaa 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-spotify.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Spotify client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-stripe.md index 7207a897e..150d11f01 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-stripe.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Stripe client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-tradeshift-sandbox.md index 2aaf7e642..b5963df44 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Tradeshift client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-tradeshift.md index 6ed5baccd..0b489e6c5 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-tradeshift.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Tradeshift client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-twitch.md index 7c4027897..5f4669161 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-twitch.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Twitch client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-word-press.md index c7b406b95..904775f97 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-word-press.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2WordPress client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-yahoo.md index 6ea825b57..9aa950571 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-yahoo.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Yahoo client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-yandex.md index c8604ede3..e4ae5962b 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-yandex.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Yandex client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-zoho.md index 069a9645b..61597e3b4 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-zoho.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Zoho client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2-zoom.md index e779a0c09..8133138cb 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2-zoom.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2Zoom client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-python/examples/project/update-o-auth-2x.md index 5637fd6a7..39d84301b 100644 --- a/examples/1.9.x/server-python/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-python/examples/project/update-o-auth-2x.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import OAuth2X client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-python/examples/project/update-password-dictionary-policy.md index 93e652be4..9f16386ef 100644 --- a/examples/1.9.x/server-python/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-password-dictionary-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-password-history-policy.md b/examples/1.9.x/server-python/examples/project/update-password-history-policy.md index 5e3c1406a..a74bc0788 100644 --- a/examples/1.9.x/server-python/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-password-history-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-python/examples/project/update-password-personal-data-policy.md index 507bdac4d..c36483431 100644 --- a/examples/1.9.x/server-python/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-password-personal-data-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-protocol.md b/examples/1.9.x/server-python/examples/project/update-protocol.md index db26644d6..99aaf3ebe 100644 --- a/examples/1.9.x/server-python/examples/project/update-protocol.md +++ b/examples/1.9.x/server-python/examples/project/update-protocol.md @@ -5,7 +5,7 @@ from appwrite.models import Project as ProjectModel from appwrite.enums import ProjectProtocolId client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-service.md b/examples/1.9.x/server-python/examples/project/update-service.md index 17c003c09..8eeffea03 100644 --- a/examples/1.9.x/server-python/examples/project/update-service.md +++ b/examples/1.9.x/server-python/examples/project/update-service.md @@ -5,7 +5,7 @@ from appwrite.models import Project as ProjectModel from appwrite.enums import ProjectServiceId client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-python/examples/project/update-session-alert-policy.md index 382f694d0..143ee1c43 100644 --- a/examples/1.9.x/server-python/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-session-alert-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-python/examples/project/update-session-duration-policy.md index 768bd4ffa..a86565193 100644 --- a/examples/1.9.x/server-python/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-session-duration-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-python/examples/project/update-session-invalidation-policy.md index 6e8417d34..e26793ddc 100644 --- a/examples/1.9.x/server-python/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-session-invalidation-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-python/examples/project/update-session-limit-policy.md index bcfd671af..16fef8d1e 100644 --- a/examples/1.9.x/server-python/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-session-limit-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-smtp.md b/examples/1.9.x/server-python/examples/project/update-smtp.md index 66428e019..aa934490f 100644 --- a/examples/1.9.x/server-python/examples/project/update-smtp.md +++ b/examples/1.9.x/server-python/examples/project/update-smtp.md @@ -5,7 +5,7 @@ from appwrite.models import Project as ProjectModel from appwrite.enums import ProjectSMTPSecure client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-python/examples/project/update-user-limit-policy.md index e841acaea..cccd39eea 100644 --- a/examples/1.9.x/server-python/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-python/examples/project/update-user-limit-policy.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Project as ProjectModel client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-variable.md b/examples/1.9.x/server-python/examples/project/update-variable.md index 3f4dac0fc..d4cb39162 100644 --- a/examples/1.9.x/server-python/examples/project/update-variable.md +++ b/examples/1.9.x/server-python/examples/project/update-variable.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-web-platform.md b/examples/1.9.x/server-python/examples/project/update-web-platform.md index 19f10b4b5..8f9086c48 100644 --- a/examples/1.9.x/server-python/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-python/examples/project/update-web-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformWeb client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/project/update-windows-platform.md b/examples/1.9.x/server-python/examples/project/update-windows-platform.md index cf154e045..2fb7a76e3 100644 --- a/examples/1.9.x/server-python/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-python/examples/project/update-windows-platform.md @@ -4,7 +4,7 @@ from appwrite.services.project import Project from appwrite.models import PlatformWindows client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/proxy/create-api-rule.md b/examples/1.9.x/server-python/examples/proxy/create-api-rule.md index 5f776309b..d8a7b145e 100644 --- a/examples/1.9.x/server-python/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-python/examples/proxy/create-api-rule.md @@ -4,7 +4,7 @@ from appwrite.services.proxy import Proxy from appwrite.models import ProxyRule client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/proxy/create-function-rule.md b/examples/1.9.x/server-python/examples/proxy/create-function-rule.md index b28a529d9..2de06966a 100644 --- a/examples/1.9.x/server-python/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-python/examples/proxy/create-function-rule.md @@ -4,7 +4,7 @@ from appwrite.services.proxy import Proxy from appwrite.models import ProxyRule client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-python/examples/proxy/create-redirect-rule.md index 4da7b6c91..b1d6f761a 100644 --- a/examples/1.9.x/server-python/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-python/examples/proxy/create-redirect-rule.md @@ -2,11 +2,11 @@ from appwrite.client import Client from appwrite.services.proxy import Proxy from appwrite.models import ProxyRule -from appwrite.enums import StatusCode +from appwrite.enums import RedirectStatusCode from appwrite.enums import ProxyResourceType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key @@ -15,7 +15,7 @@ proxy = Proxy(client) result: ProxyRule = proxy.create_redirect_rule( domain = '', url = 'https://example.com', - status_code = StatusCode.MOVED_PERMANENTLY_301, + status_code = RedirectStatusCode.MOVEDPERMANENTLY, resource_id = '', resource_type = ProxyResourceType.SITE ) diff --git a/examples/1.9.x/server-python/examples/proxy/create-site-rule.md b/examples/1.9.x/server-python/examples/proxy/create-site-rule.md index 54cb0c1ef..64c4d0f6f 100644 --- a/examples/1.9.x/server-python/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-python/examples/proxy/create-site-rule.md @@ -4,7 +4,7 @@ from appwrite.services.proxy import Proxy from appwrite.models import ProxyRule client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/proxy/delete-rule.md b/examples/1.9.x/server-python/examples/proxy/delete-rule.md index c5a76ee5e..608b6fc9f 100644 --- a/examples/1.9.x/server-python/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-python/examples/proxy/delete-rule.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.proxy import Proxy client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/proxy/get-rule.md b/examples/1.9.x/server-python/examples/proxy/get-rule.md index becc4c360..c951493eb 100644 --- a/examples/1.9.x/server-python/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-python/examples/proxy/get-rule.md @@ -4,7 +4,7 @@ from appwrite.services.proxy import Proxy from appwrite.models import ProxyRule client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/proxy/list-rules.md b/examples/1.9.x/server-python/examples/proxy/list-rules.md index 4cf085f4b..ec9953dbc 100644 --- a/examples/1.9.x/server-python/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-python/examples/proxy/list-rules.md @@ -4,7 +4,7 @@ from appwrite.services.proxy import Proxy from appwrite.models import ProxyRuleList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/proxy/update-rule-status.md b/examples/1.9.x/server-python/examples/proxy/update-rule-status.md index f317926da..ad034a1ed 100644 --- a/examples/1.9.x/server-python/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-python/examples/proxy/update-rule-status.md @@ -4,7 +4,7 @@ from appwrite.services.proxy import Proxy from appwrite.models import ProxyRule client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/create-deployment.md b/examples/1.9.x/server-python/examples/sites/create-deployment.md index 8abb038e3..2883be0c1 100644 --- a/examples/1.9.x/server-python/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-python/examples/sites/create-deployment.md @@ -5,7 +5,7 @@ from appwrite.input_file import InputFile from appwrite.models import Deployment client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-python/examples/sites/create-duplicate-deployment.md index 35b52564b..baa98dbfe 100644 --- a/examples/1.9.x/server-python/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-python/examples/sites/create-duplicate-deployment.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Deployment client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/create-template-deployment.md b/examples/1.9.x/server-python/examples/sites/create-template-deployment.md index f65b153b5..2f1d38a90 100644 --- a/examples/1.9.x/server-python/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-python/examples/sites/create-template-deployment.md @@ -5,7 +5,7 @@ from appwrite.models import Deployment from appwrite.enums import TemplateReferenceType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/create-variable.md b/examples/1.9.x/server-python/examples/sites/create-variable.md index ca6d9e578..2009222fc 100644 --- a/examples/1.9.x/server-python/examples/sites/create-variable.md +++ b/examples/1.9.x/server-python/examples/sites/create-variable.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-python/examples/sites/create-vcs-deployment.md index 1846cefc3..6d80a3ea5 100644 --- a/examples/1.9.x/server-python/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-python/examples/sites/create-vcs-deployment.md @@ -5,7 +5,7 @@ from appwrite.models import Deployment from appwrite.enums import VCSReferenceType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/create.md b/examples/1.9.x/server-python/examples/sites/create.md index 9fa508a1c..e5c11168f 100644 --- a/examples/1.9.x/server-python/examples/sites/create.md +++ b/examples/1.9.x/server-python/examples/sites/create.md @@ -2,12 +2,12 @@ from appwrite.client import Client from appwrite.services.sites import Sites from appwrite.models import Site -from appwrite.enums import Framework -from appwrite.enums import BuildRuntime -from appwrite.enums import Adapter +from appwrite.enums import SiteFramework +from appwrite.enums import SiteBuildRuntime +from appwrite.enums import SiteAdapter client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key @@ -16,8 +16,8 @@ sites = Sites(client) result: Site = sites.create( site_id = '', name = '', - framework = Framework.ANALOG, - build_runtime = BuildRuntime.NODE_14_5, + framework = SiteFramework.ANALOG, + build_runtime = SiteBuildRuntime.NODE_14_5, enabled = False, # optional logging = False, # optional timeout = 1, # optional @@ -25,13 +25,15 @@ result: Site = sites.create( build_command = '', # optional start_command = '', # optional output_directory = '', # optional - adapter = Adapter.STATIC, # optional + adapter = SiteAdapter.STATIC, # optional installation_id = '', # optional fallback_file = '', # optional provider_repository_id = '', # optional provider_branch = '', # optional provider_silent_mode = False, # optional provider_root_directory = '', # optional + provider_branches = [], # optional + provider_paths = [], # optional build_specification = '', # optional runtime_specification = '', # optional deployment_retention = 0 # optional diff --git a/examples/1.9.x/server-python/examples/sites/delete-deployment.md b/examples/1.9.x/server-python/examples/sites/delete-deployment.md index ee2f14915..c98673620 100644 --- a/examples/1.9.x/server-python/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-python/examples/sites/delete-deployment.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.sites import Sites client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/delete-log.md b/examples/1.9.x/server-python/examples/sites/delete-log.md index 26c631240..ce22ea6d6 100644 --- a/examples/1.9.x/server-python/examples/sites/delete-log.md +++ b/examples/1.9.x/server-python/examples/sites/delete-log.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.sites import Sites client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/delete-variable.md b/examples/1.9.x/server-python/examples/sites/delete-variable.md index 97e77cd65..61f1d229a 100644 --- a/examples/1.9.x/server-python/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-python/examples/sites/delete-variable.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.sites import Sites client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/delete.md b/examples/1.9.x/server-python/examples/sites/delete.md index 41e3eafb6..7545dd893 100644 --- a/examples/1.9.x/server-python/examples/sites/delete.md +++ b/examples/1.9.x/server-python/examples/sites/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.sites import Sites client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/get-deployment-download.md b/examples/1.9.x/server-python/examples/sites/get-deployment-download.md index eae2543c4..d35f9fd0b 100644 --- a/examples/1.9.x/server-python/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-python/examples/sites/get-deployment-download.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.enums import DeploymentDownloadType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/get-deployment.md b/examples/1.9.x/server-python/examples/sites/get-deployment.md index 5291928c3..4960f69c5 100644 --- a/examples/1.9.x/server-python/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-python/examples/sites/get-deployment.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Deployment client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/get-log.md b/examples/1.9.x/server-python/examples/sites/get-log.md index aa718daad..32b62877e 100644 --- a/examples/1.9.x/server-python/examples/sites/get-log.md +++ b/examples/1.9.x/server-python/examples/sites/get-log.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Execution client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/get-variable.md b/examples/1.9.x/server-python/examples/sites/get-variable.md index 9eb30dd91..e0a113db4 100644 --- a/examples/1.9.x/server-python/examples/sites/get-variable.md +++ b/examples/1.9.x/server-python/examples/sites/get-variable.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/get.md b/examples/1.9.x/server-python/examples/sites/get.md index c792987a1..be5c59dd7 100644 --- a/examples/1.9.x/server-python/examples/sites/get.md +++ b/examples/1.9.x/server-python/examples/sites/get.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Site client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/list-deployments.md b/examples/1.9.x/server-python/examples/sites/list-deployments.md index 70b2a0b3c..20a20814c 100644 --- a/examples/1.9.x/server-python/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-python/examples/sites/list-deployments.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import DeploymentList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/list-frameworks.md b/examples/1.9.x/server-python/examples/sites/list-frameworks.md index 84996b3f7..cf64c66e4 100644 --- a/examples/1.9.x/server-python/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-python/examples/sites/list-frameworks.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import FrameworkList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/list-logs.md b/examples/1.9.x/server-python/examples/sites/list-logs.md index 4543f2323..41983135c 100644 --- a/examples/1.9.x/server-python/examples/sites/list-logs.md +++ b/examples/1.9.x/server-python/examples/sites/list-logs.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import ExecutionList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/list-specifications.md b/examples/1.9.x/server-python/examples/sites/list-specifications.md index c1229a302..f4b7f829d 100644 --- a/examples/1.9.x/server-python/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-python/examples/sites/list-specifications.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import SpecificationList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/list-variables.md b/examples/1.9.x/server-python/examples/sites/list-variables.md index 4a2c2c5a6..3a5c960af 100644 --- a/examples/1.9.x/server-python/examples/sites/list-variables.md +++ b/examples/1.9.x/server-python/examples/sites/list-variables.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import VariableList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/list.md b/examples/1.9.x/server-python/examples/sites/list.md index 0a5648271..2bf086329 100644 --- a/examples/1.9.x/server-python/examples/sites/list.md +++ b/examples/1.9.x/server-python/examples/sites/list.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import SiteList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/update-deployment-status.md b/examples/1.9.x/server-python/examples/sites/update-deployment-status.md index 8ab82d4ad..e96a91453 100644 --- a/examples/1.9.x/server-python/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-python/examples/sites/update-deployment-status.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Deployment client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/update-site-deployment.md b/examples/1.9.x/server-python/examples/sites/update-site-deployment.md index 507923e9d..481f5677f 100644 --- a/examples/1.9.x/server-python/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-python/examples/sites/update-site-deployment.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Site client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/update-variable.md b/examples/1.9.x/server-python/examples/sites/update-variable.md index 637d2220e..4393b4d45 100644 --- a/examples/1.9.x/server-python/examples/sites/update-variable.md +++ b/examples/1.9.x/server-python/examples/sites/update-variable.md @@ -4,7 +4,7 @@ from appwrite.services.sites import Sites from appwrite.models import Variable client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/sites/update.md b/examples/1.9.x/server-python/examples/sites/update.md index 3ce497566..074da9e49 100644 --- a/examples/1.9.x/server-python/examples/sites/update.md +++ b/examples/1.9.x/server-python/examples/sites/update.md @@ -2,12 +2,12 @@ from appwrite.client import Client from appwrite.services.sites import Sites from appwrite.models import Site -from appwrite.enums import Framework -from appwrite.enums import BuildRuntime -from appwrite.enums import Adapter +from appwrite.enums import SiteFramework +from appwrite.enums import SiteBuildRuntime +from appwrite.enums import SiteAdapter client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key @@ -16,7 +16,7 @@ sites = Sites(client) result: Site = sites.update( site_id = '', name = '', - framework = Framework.ANALOG, + framework = SiteFramework.ANALOG, enabled = False, # optional logging = False, # optional timeout = 1, # optional @@ -24,14 +24,16 @@ result: Site = sites.update( build_command = '', # optional start_command = '', # optional output_directory = '', # optional - build_runtime = BuildRuntime.NODE_14_5, # optional - adapter = Adapter.STATIC, # optional + build_runtime = SiteBuildRuntime.NODE_14_5, # optional + adapter = SiteAdapter.STATIC, # optional fallback_file = '', # optional installation_id = '', # optional provider_repository_id = '', # optional provider_branch = '', # optional provider_silent_mode = False, # optional provider_root_directory = '', # optional + provider_branches = [], # optional + provider_paths = [], # optional build_specification = '', # optional runtime_specification = '', # optional deployment_retention = 0 # optional diff --git a/examples/1.9.x/server-python/examples/storage/create-bucket.md b/examples/1.9.x/server-python/examples/storage/create-bucket.md index 418f8ecb1..37e7b57ce 100644 --- a/examples/1.9.x/server-python/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-python/examples/storage/create-bucket.md @@ -7,7 +7,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/storage/create-file.md b/examples/1.9.x/server-python/examples/storage/create-file.md index 2103a1d60..868dd8ca5 100644 --- a/examples/1.9.x/server-python/examples/storage/create-file.md +++ b/examples/1.9.x/server-python/examples/storage/create-file.md @@ -7,7 +7,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/storage/delete-bucket.md b/examples/1.9.x/server-python/examples/storage/delete-bucket.md index ae71a793a..1b46efca0 100644 --- a/examples/1.9.x/server-python/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-python/examples/storage/delete-bucket.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.storage import Storage client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/storage/delete-file.md b/examples/1.9.x/server-python/examples/storage/delete-file.md index ce1d26044..7c901e559 100644 --- a/examples/1.9.x/server-python/examples/storage/delete-file.md +++ b/examples/1.9.x/server-python/examples/storage/delete-file.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.storage import Storage client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/storage/get-bucket.md b/examples/1.9.x/server-python/examples/storage/get-bucket.md index eaa707ced..a16671752 100644 --- a/examples/1.9.x/server-python/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-python/examples/storage/get-bucket.md @@ -4,7 +4,7 @@ from appwrite.services.storage import Storage from appwrite.models import Bucket client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/storage/get-file-download.md b/examples/1.9.x/server-python/examples/storage/get-file-download.md index ac6f9424d..1327c89f2 100644 --- a/examples/1.9.x/server-python/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-python/examples/storage/get-file-download.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.storage import Storage client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/storage/get-file-preview.md b/examples/1.9.x/server-python/examples/storage/get-file-preview.md index 4cbc4a586..6ee9150cf 100644 --- a/examples/1.9.x/server-python/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-python/examples/storage/get-file-preview.md @@ -5,7 +5,7 @@ from appwrite.enums import ImageGravity from appwrite.enums import ImageFormat client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/storage/get-file-view.md b/examples/1.9.x/server-python/examples/storage/get-file-view.md index 5cceef6ff..a26af8910 100644 --- a/examples/1.9.x/server-python/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-python/examples/storage/get-file-view.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.storage import Storage client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/storage/get-file.md b/examples/1.9.x/server-python/examples/storage/get-file.md index fb1435115..7eb255b4b 100644 --- a/examples/1.9.x/server-python/examples/storage/get-file.md +++ b/examples/1.9.x/server-python/examples/storage/get-file.md @@ -4,7 +4,7 @@ from appwrite.services.storage import Storage from appwrite.models import File client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/storage/list-buckets.md b/examples/1.9.x/server-python/examples/storage/list-buckets.md index aebd50b6b..e857061cc 100644 --- a/examples/1.9.x/server-python/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-python/examples/storage/list-buckets.md @@ -4,7 +4,7 @@ from appwrite.services.storage import Storage from appwrite.models import BucketList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/storage/list-files.md b/examples/1.9.x/server-python/examples/storage/list-files.md index a676c3136..56291ffdf 100644 --- a/examples/1.9.x/server-python/examples/storage/list-files.md +++ b/examples/1.9.x/server-python/examples/storage/list-files.md @@ -4,7 +4,7 @@ from appwrite.services.storage import Storage from appwrite.models import FileList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/storage/update-bucket.md b/examples/1.9.x/server-python/examples/storage/update-bucket.md index ecb1ada62..834eae32f 100644 --- a/examples/1.9.x/server-python/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-python/examples/storage/update-bucket.md @@ -7,7 +7,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/storage/update-file.md b/examples/1.9.x/server-python/examples/storage/update-file.md index b0fad8d47..a468741f6 100644 --- a/examples/1.9.x/server-python/examples/storage/update-file.md +++ b/examples/1.9.x/server-python/examples/storage/update-file.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-big-int-column.md index 7e4a98c3b..53013a89b 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-big-int-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnBigint client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-boolean-column.md index a50011686..260d6b182 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-boolean-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnBoolean client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-datetime-column.md index 4544827ba..1bc598f60 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-datetime-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnDatetime client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-email-column.md index b75bd4258..ea319cf93 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-email-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnEmail client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-enum-column.md index a5248b41f..2f03323ec 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-enum-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnEnum client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-float-column.md index 97f414b15..abc2ead2f 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-float-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnFloat client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-index.md b/examples/1.9.x/server-python/examples/tablesdb/create-index.md index 54b23a259..f5dc92f60 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-index.md @@ -6,7 +6,7 @@ from appwrite.enums import TablesDBIndexType from appwrite.enums import OrderBy client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-integer-column.md index 35ccf4174..0942ec149 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-integer-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnInteger client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-ip-column.md index 712166880..8c47946bf 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-ip-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnIp client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-line-column.md index 0173466e8..7164dbb3b 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-line-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnLine client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-longtext-column.md index 29f20903e..026acee40 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-longtext-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnLongtext client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-mediumtext-column.md index 4cdc93baf..ca3534e37 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-mediumtext-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnMediumtext client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-operations.md b/examples/1.9.x/server-python/examples/tablesdb/create-operations.md index cb2a8c920..d8b931608 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-operations.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Transaction client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-point-column.md index d5dbfce42..78912e819 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-point-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnPoint client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-polygon-column.md index a21f00a5c..03d66a648 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-polygon-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnPolygon client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-relationship-column.md index 0ec16dbe8..8f1dd9699 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-relationship-column.md @@ -6,7 +6,7 @@ from appwrite.enums import RelationshipType from appwrite.enums import RelationMutate client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-row.md b/examples/1.9.x/server-python/examples/tablesdb/create-row.md index aa8a9fe67..83b998ef1 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-row.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-rows.md b/examples/1.9.x/server-python/examples/tablesdb/create-rows.md index 9e741fe4c..b7bb14d2a 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-rows.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import RowList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-string-column.md index 6dae7f9c4..46f5b3567 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-string-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnString client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-table.md b/examples/1.9.x/server-python/examples/tablesdb/create-table.md index 029fb281e..3d7257ef1 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-table.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-text-column.md index 5f8a94db5..4bc454b87 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-text-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnText client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-python/examples/tablesdb/create-transaction.md index b48e262fd..de6b2ffbc 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-transaction.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Transaction client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-url-column.md index b37879ac2..acb45752c 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-url-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnUrl client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-python/examples/tablesdb/create-varchar-column.md index 02e041012..8abe07996 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create-varchar-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnVarchar client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/create.md b/examples/1.9.x/server-python/examples/tablesdb/create.md index fb6bf0fb4..62c25cccc 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/create.md +++ b/examples/1.9.x/server-python/examples/tablesdb/create.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Database client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-python/examples/tablesdb/decrement-row-column.md index f44790221..1d19127c8 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/decrement-row-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Row client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/delete-column.md b/examples/1.9.x/server-python/examples/tablesdb/delete-column.md index e28b91b19..ae25f7757 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/delete-column.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.tables_db import TablesDB client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/delete-index.md b/examples/1.9.x/server-python/examples/tablesdb/delete-index.md index 463793136..04cf06acb 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-python/examples/tablesdb/delete-index.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.tables_db import TablesDB client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/delete-row.md b/examples/1.9.x/server-python/examples/tablesdb/delete-row.md index 7615459e7..fe75d7be2 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-python/examples/tablesdb/delete-row.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.tables_db import TablesDB client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-python/examples/tablesdb/delete-rows.md index 2a3a89ca0..a062782be 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-python/examples/tablesdb/delete-rows.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import RowList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/delete-table.md b/examples/1.9.x/server-python/examples/tablesdb/delete-table.md index 599753706..1744b191b 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-python/examples/tablesdb/delete-table.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.tables_db import TablesDB client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-python/examples/tablesdb/delete-transaction.md index cbbbc5d97..4b9da5a7d 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-python/examples/tablesdb/delete-transaction.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.tables_db import TablesDB client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/delete.md b/examples/1.9.x/server-python/examples/tablesdb/delete.md index 9859c1e9c..94e078d03 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-python/examples/tablesdb/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.tables_db import TablesDB client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/get-column.md b/examples/1.9.x/server-python/examples/tablesdb/get-column.md index 77492464a..8ee53372f 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/get-column.md @@ -14,7 +14,7 @@ from appwrite.models import ColumnString from typing import Union client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/get-index.md b/examples/1.9.x/server-python/examples/tablesdb/get-index.md index 72c8e465d..bbc4fc8aa 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-python/examples/tablesdb/get-index.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnIndex client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/get-row.md b/examples/1.9.x/server-python/examples/tablesdb/get-row.md index 55609e257..5b1c9340a 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-python/examples/tablesdb/get-row.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Row client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/get-table.md b/examples/1.9.x/server-python/examples/tablesdb/get-table.md index da6a4bcb4..a989fedbb 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-python/examples/tablesdb/get-table.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Table client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-python/examples/tablesdb/get-transaction.md index b51fcc268..49bf42a6a 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-python/examples/tablesdb/get-transaction.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Transaction client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/get.md b/examples/1.9.x/server-python/examples/tablesdb/get.md index 036deeec9..f6d21b9c9 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/get.md +++ b/examples/1.9.x/server-python/examples/tablesdb/get.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Database client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-python/examples/tablesdb/increment-row-column.md index ac844f197..c862f5a36 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/increment-row-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Row client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/list-columns.md b/examples/1.9.x/server-python/examples/tablesdb/list-columns.md index 3a450487e..c32ed8ae3 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-python/examples/tablesdb/list-columns.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-python/examples/tablesdb/list-indexes.md index b1ccf1a42..b3a377e0f 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-python/examples/tablesdb/list-indexes.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnIndexList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/list-rows.md b/examples/1.9.x/server-python/examples/tablesdb/list-rows.md index 0ef941040..add2a99ce 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-python/examples/tablesdb/list-rows.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import RowList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/list-tables.md b/examples/1.9.x/server-python/examples/tablesdb/list-tables.md index 589aaa989..374eb09cb 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-python/examples/tablesdb/list-tables.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import TableList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-python/examples/tablesdb/list-transactions.md index b4384e67c..579795e69 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-python/examples/tablesdb/list-transactions.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import TransactionList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/list.md b/examples/1.9.x/server-python/examples/tablesdb/list.md index cfc352d1b..67c1dbf9a 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/list.md +++ b/examples/1.9.x/server-python/examples/tablesdb/list.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import DatabaseList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-big-int-column.md index d395f31a1..f0f2ed3b3 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-big-int-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnBigint client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-boolean-column.md index ce0a02d95..988414608 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-boolean-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnBoolean client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-datetime-column.md index 9f9d57aa3..4df580b1e 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-datetime-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnDatetime client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-email-column.md index 565b941e1..6dbd83333 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-email-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnEmail client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-enum-column.md index 4357a93d4..fcd0fe298 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-enum-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnEnum client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-float-column.md index 339e9c8a2..c599c27f6 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-float-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnFloat client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-integer-column.md index 21a2b1c20..b4cc8a21b 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-integer-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnInteger client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-ip-column.md index cb7e18897..1849088c6 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-ip-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnIp client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-line-column.md index c5bbb5d91..728377414 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-line-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnLine client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-longtext-column.md index 8b31f1782..1d4d3ab9f 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-longtext-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnLongtext client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-mediumtext-column.md index ad4cdd40e..a6f3f4290 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-mediumtext-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnMediumtext client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-point-column.md index 5ab558463..261b78693 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-point-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnPoint client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-polygon-column.md index 692a16c0f..aaefa29f8 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-polygon-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnPolygon client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-relationship-column.md index 20307f6dd..5e3d16483 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-relationship-column.md @@ -5,7 +5,7 @@ from appwrite.models import ColumnRelationship from appwrite.enums import RelationMutate client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-row.md b/examples/1.9.x/server-python/examples/tablesdb/update-row.md index 30522e7bc..b64073ddd 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-row.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-rows.md b/examples/1.9.x/server-python/examples/tablesdb/update-rows.md index dc3641b3e..58c7c2f09 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-rows.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import RowList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-string-column.md index 0fdc53c7d..4c0f14f7f 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-string-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnString client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-table.md b/examples/1.9.x/server-python/examples/tablesdb/update-table.md index ee6bba024..da70e102d 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-table.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-text-column.md index 3be554c1a..f2fb9f077 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-text-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnText client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-python/examples/tablesdb/update-transaction.md index 999f53b18..492a96415 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-transaction.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Transaction client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-url-column.md index 2d8626a2d..ecbe38b39 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-url-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnUrl client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-python/examples/tablesdb/update-varchar-column.md index 1a415b80a..2b9e61db6 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update-varchar-column.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import ColumnVarchar client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/update.md b/examples/1.9.x/server-python/examples/tablesdb/update.md index aea548588..fe47a4d44 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/update.md +++ b/examples/1.9.x/server-python/examples/tablesdb/update.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import Database client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-python/examples/tablesdb/upsert-row.md index c511545c3..f6c89e4b0 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-python/examples/tablesdb/upsert-row.md @@ -6,7 +6,7 @@ from appwrite.permission import Permission from appwrite.role import Role client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-python/examples/tablesdb/upsert-rows.md index 0b6a754e3..9b214a51f 100644 --- a/examples/1.9.x/server-python/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-python/examples/tablesdb/upsert-rows.md @@ -4,7 +4,7 @@ from appwrite.services.tables_db import TablesDB from appwrite.models import RowList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/teams/create-membership.md b/examples/1.9.x/server-python/examples/teams/create-membership.md index 313bf5f6a..ba879e25a 100644 --- a/examples/1.9.x/server-python/examples/teams/create-membership.md +++ b/examples/1.9.x/server-python/examples/teams/create-membership.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Membership client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/create.md b/examples/1.9.x/server-python/examples/teams/create.md index 965d854a2..0346fa3c9 100644 --- a/examples/1.9.x/server-python/examples/teams/create.md +++ b/examples/1.9.x/server-python/examples/teams/create.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Team client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/delete-membership.md b/examples/1.9.x/server-python/examples/teams/delete-membership.md index 2ed97d15b..f130e5f99 100644 --- a/examples/1.9.x/server-python/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-python/examples/teams/delete-membership.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.teams import Teams client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/delete.md b/examples/1.9.x/server-python/examples/teams/delete.md index c9a65b370..acdfb41b6 100644 --- a/examples/1.9.x/server-python/examples/teams/delete.md +++ b/examples/1.9.x/server-python/examples/teams/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.teams import Teams client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/get-membership.md b/examples/1.9.x/server-python/examples/teams/get-membership.md index 54ad0cd34..2a15d14b0 100644 --- a/examples/1.9.x/server-python/examples/teams/get-membership.md +++ b/examples/1.9.x/server-python/examples/teams/get-membership.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Membership client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/get-prefs.md b/examples/1.9.x/server-python/examples/teams/get-prefs.md index 20ae59624..cbcd692c3 100644 --- a/examples/1.9.x/server-python/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-python/examples/teams/get-prefs.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Preferences client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/get.md b/examples/1.9.x/server-python/examples/teams/get.md index 3b5116c9e..5f54bc5e9 100644 --- a/examples/1.9.x/server-python/examples/teams/get.md +++ b/examples/1.9.x/server-python/examples/teams/get.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Team client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/list-memberships.md b/examples/1.9.x/server-python/examples/teams/list-memberships.md index 8acc9d14b..8c18ca6e9 100644 --- a/examples/1.9.x/server-python/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-python/examples/teams/list-memberships.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import MembershipList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/list.md b/examples/1.9.x/server-python/examples/teams/list.md index 9fcd1ddb3..61482ed37 100644 --- a/examples/1.9.x/server-python/examples/teams/list.md +++ b/examples/1.9.x/server-python/examples/teams/list.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import TeamList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/update-membership-status.md b/examples/1.9.x/server-python/examples/teams/update-membership-status.md index b836d8204..4687d712a 100644 --- a/examples/1.9.x/server-python/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-python/examples/teams/update-membership-status.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Membership client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/update-membership.md b/examples/1.9.x/server-python/examples/teams/update-membership.md index 4425ae58d..9d782b3b5 100644 --- a/examples/1.9.x/server-python/examples/teams/update-membership.md +++ b/examples/1.9.x/server-python/examples/teams/update-membership.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Membership client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/update-name.md b/examples/1.9.x/server-python/examples/teams/update-name.md index 376d6c3fe..7bee83a89 100644 --- a/examples/1.9.x/server-python/examples/teams/update-name.md +++ b/examples/1.9.x/server-python/examples/teams/update-name.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Team client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/teams/update-prefs.md b/examples/1.9.x/server-python/examples/teams/update-prefs.md index 23f487891..b3135fb2b 100644 --- a/examples/1.9.x/server-python/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-python/examples/teams/update-prefs.md @@ -4,7 +4,7 @@ from appwrite.services.teams import Teams from appwrite.models import Preferences client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-python/examples/tokens/create-file-token.md b/examples/1.9.x/server-python/examples/tokens/create-file-token.md index 73ad13559..cec899dea 100644 --- a/examples/1.9.x/server-python/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-python/examples/tokens/create-file-token.md @@ -4,7 +4,7 @@ from appwrite.services.tokens import Tokens from appwrite.models import ResourceToken client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tokens/delete.md b/examples/1.9.x/server-python/examples/tokens/delete.md index 80777fd0d..05ac73bad 100644 --- a/examples/1.9.x/server-python/examples/tokens/delete.md +++ b/examples/1.9.x/server-python/examples/tokens/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.tokens import Tokens client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tokens/get.md b/examples/1.9.x/server-python/examples/tokens/get.md index 83a9649a2..83efd87ca 100644 --- a/examples/1.9.x/server-python/examples/tokens/get.md +++ b/examples/1.9.x/server-python/examples/tokens/get.md @@ -4,7 +4,7 @@ from appwrite.services.tokens import Tokens from appwrite.models import ResourceToken client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tokens/list.md b/examples/1.9.x/server-python/examples/tokens/list.md index d5700165a..fa2a2c6fb 100644 --- a/examples/1.9.x/server-python/examples/tokens/list.md +++ b/examples/1.9.x/server-python/examples/tokens/list.md @@ -4,7 +4,7 @@ from appwrite.services.tokens import Tokens from appwrite.models import ResourceTokenList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/tokens/update.md b/examples/1.9.x/server-python/examples/tokens/update.md index 6b5ad4b43..64972990b 100644 --- a/examples/1.9.x/server-python/examples/tokens/update.md +++ b/examples/1.9.x/server-python/examples/tokens/update.md @@ -4,7 +4,7 @@ from appwrite.services.tokens import Tokens from appwrite.models import ResourceToken client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/usage/list-events.md b/examples/1.9.x/server-python/examples/usage/list-events.md index d3ab1d25b..8946a0075 100644 --- a/examples/1.9.x/server-python/examples/usage/list-events.md +++ b/examples/1.9.x/server-python/examples/usage/list-events.md @@ -4,7 +4,7 @@ from appwrite.services.usage import Usage from appwrite.models import UsageEventList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/usage/list-gauges.md b/examples/1.9.x/server-python/examples/usage/list-gauges.md index 2904b9682..583596abd 100644 --- a/examples/1.9.x/server-python/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-python/examples/usage/list-gauges.md @@ -4,7 +4,7 @@ from appwrite.services.usage import Usage from appwrite.models import UsageGaugeList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-argon-2-user.md b/examples/1.9.x/server-python/examples/users/create-argon-2-user.md index cd3e2bc9e..b88efbee1 100644 --- a/examples/1.9.x/server-python/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-python/examples/users/create-argon-2-user.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-python/examples/users/create-bcrypt-user.md index d3ab13e69..fbffa27c8 100644 --- a/examples/1.9.x/server-python/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-python/examples/users/create-bcrypt-user.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-jwt.md b/examples/1.9.x/server-python/examples/users/create-jwt.md index bf4df2e08..216f63520 100644 --- a/examples/1.9.x/server-python/examples/users/create-jwt.md +++ b/examples/1.9.x/server-python/examples/users/create-jwt.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import Jwt client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-md-5-user.md b/examples/1.9.x/server-python/examples/users/create-md-5-user.md index 53b45bfed..e3e43255b 100644 --- a/examples/1.9.x/server-python/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-python/examples/users/create-md-5-user.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-python/examples/users/create-mfa-recovery-codes.md index 0c83df496..c6e68737a 100644 --- a/examples/1.9.x/server-python/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-python/examples/users/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import MfaRecoveryCodes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-python/examples/users/create-ph-pass-user.md index 456a04b00..9552b7986 100644 --- a/examples/1.9.x/server-python/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-python/examples/users/create-ph-pass-user.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-python/examples/users/create-scrypt-modified-user.md index e802270b7..d5b53f52e 100644 --- a/examples/1.9.x/server-python/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-python/examples/users/create-scrypt-modified-user.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-scrypt-user.md b/examples/1.9.x/server-python/examples/users/create-scrypt-user.md index db5618be9..8e7df1967 100644 --- a/examples/1.9.x/server-python/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-python/examples/users/create-scrypt-user.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-session.md b/examples/1.9.x/server-python/examples/users/create-session.md index 38a6dbccb..380c2f53d 100644 --- a/examples/1.9.x/server-python/examples/users/create-session.md +++ b/examples/1.9.x/server-python/examples/users/create-session.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import Session client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-sha-user.md b/examples/1.9.x/server-python/examples/users/create-sha-user.md index 9d42300a7..241fb0db2 100644 --- a/examples/1.9.x/server-python/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-python/examples/users/create-sha-user.md @@ -5,7 +5,7 @@ from appwrite.models import User from appwrite.enums import PasswordHash client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-target.md b/examples/1.9.x/server-python/examples/users/create-target.md index fcfd394a3..fb54d55f7 100644 --- a/examples/1.9.x/server-python/examples/users/create-target.md +++ b/examples/1.9.x/server-python/examples/users/create-target.md @@ -5,7 +5,7 @@ from appwrite.models import Target from appwrite.enums import MessagingProviderType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create-token.md b/examples/1.9.x/server-python/examples/users/create-token.md index d7520f5ef..dcea8dbda 100644 --- a/examples/1.9.x/server-python/examples/users/create-token.md +++ b/examples/1.9.x/server-python/examples/users/create-token.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import Token client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/create.md b/examples/1.9.x/server-python/examples/users/create.md index 38361cbf5..fef580b1b 100644 --- a/examples/1.9.x/server-python/examples/users/create.md +++ b/examples/1.9.x/server-python/examples/users/create.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/delete-identity.md b/examples/1.9.x/server-python/examples/users/delete-identity.md index 06af66819..eda83c999 100644 --- a/examples/1.9.x/server-python/examples/users/delete-identity.md +++ b/examples/1.9.x/server-python/examples/users/delete-identity.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.users import Users client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-python/examples/users/delete-mfa-authenticator.md index 67ab6b788..7b03439f9 100644 --- a/examples/1.9.x/server-python/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-python/examples/users/delete-mfa-authenticator.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.enums import AuthenticatorType client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/delete-session.md b/examples/1.9.x/server-python/examples/users/delete-session.md index 31ac5246f..42c190c06 100644 --- a/examples/1.9.x/server-python/examples/users/delete-session.md +++ b/examples/1.9.x/server-python/examples/users/delete-session.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.users import Users client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/delete-sessions.md b/examples/1.9.x/server-python/examples/users/delete-sessions.md index c600d4c30..bae0217d3 100644 --- a/examples/1.9.x/server-python/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-python/examples/users/delete-sessions.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.users import Users client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/delete-target.md b/examples/1.9.x/server-python/examples/users/delete-target.md index 6dfbc7e53..e1d74fc41 100644 --- a/examples/1.9.x/server-python/examples/users/delete-target.md +++ b/examples/1.9.x/server-python/examples/users/delete-target.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.users import Users client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/delete.md b/examples/1.9.x/server-python/examples/users/delete.md index 8d236b4f7..8d81db6db 100644 --- a/examples/1.9.x/server-python/examples/users/delete.md +++ b/examples/1.9.x/server-python/examples/users/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.users import Users client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-python/examples/users/get-mfa-recovery-codes.md index 058aedde1..d1a98a973 100644 --- a/examples/1.9.x/server-python/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-python/examples/users/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import MfaRecoveryCodes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/get-prefs.md b/examples/1.9.x/server-python/examples/users/get-prefs.md index 093b92013..51b201c72 100644 --- a/examples/1.9.x/server-python/examples/users/get-prefs.md +++ b/examples/1.9.x/server-python/examples/users/get-prefs.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import Preferences client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/get-target.md b/examples/1.9.x/server-python/examples/users/get-target.md index 38a7d63d7..9ee38c12b 100644 --- a/examples/1.9.x/server-python/examples/users/get-target.md +++ b/examples/1.9.x/server-python/examples/users/get-target.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import Target client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/get.md b/examples/1.9.x/server-python/examples/users/get.md index 941d428ae..1f95430c4 100644 --- a/examples/1.9.x/server-python/examples/users/get.md +++ b/examples/1.9.x/server-python/examples/users/get.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/list-identities.md b/examples/1.9.x/server-python/examples/users/list-identities.md index c6e7d8dcb..bce2658c7 100644 --- a/examples/1.9.x/server-python/examples/users/list-identities.md +++ b/examples/1.9.x/server-python/examples/users/list-identities.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import IdentityList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/list-logs.md b/examples/1.9.x/server-python/examples/users/list-logs.md index 34d41e757..4dd908c97 100644 --- a/examples/1.9.x/server-python/examples/users/list-logs.md +++ b/examples/1.9.x/server-python/examples/users/list-logs.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import LogList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/list-memberships.md b/examples/1.9.x/server-python/examples/users/list-memberships.md index c64d7ba55..8b86d418b 100644 --- a/examples/1.9.x/server-python/examples/users/list-memberships.md +++ b/examples/1.9.x/server-python/examples/users/list-memberships.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import MembershipList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/list-mfa-factors.md b/examples/1.9.x/server-python/examples/users/list-mfa-factors.md index 69f5a56ff..d64df1afe 100644 --- a/examples/1.9.x/server-python/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-python/examples/users/list-mfa-factors.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import MfaFactors client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/list-sessions.md b/examples/1.9.x/server-python/examples/users/list-sessions.md index e8abced45..99378549c 100644 --- a/examples/1.9.x/server-python/examples/users/list-sessions.md +++ b/examples/1.9.x/server-python/examples/users/list-sessions.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import SessionList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/list-targets.md b/examples/1.9.x/server-python/examples/users/list-targets.md index e043866f3..c16330544 100644 --- a/examples/1.9.x/server-python/examples/users/list-targets.md +++ b/examples/1.9.x/server-python/examples/users/list-targets.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import TargetList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/list.md b/examples/1.9.x/server-python/examples/users/list.md index 0d623a776..e427f1a2d 100644 --- a/examples/1.9.x/server-python/examples/users/list.md +++ b/examples/1.9.x/server-python/examples/users/list.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import UserList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-email-verification.md b/examples/1.9.x/server-python/examples/users/update-email-verification.md index 8fd05134e..5a0957f78 100644 --- a/examples/1.9.x/server-python/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-python/examples/users/update-email-verification.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-email.md b/examples/1.9.x/server-python/examples/users/update-email.md index 7dcf066f3..c0cc6d131 100644 --- a/examples/1.9.x/server-python/examples/users/update-email.md +++ b/examples/1.9.x/server-python/examples/users/update-email.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-impersonator.md b/examples/1.9.x/server-python/examples/users/update-impersonator.md index 38fae13ca..463407e15 100644 --- a/examples/1.9.x/server-python/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-python/examples/users/update-impersonator.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-labels.md b/examples/1.9.x/server-python/examples/users/update-labels.md index bffba0c1e..7aada1909 100644 --- a/examples/1.9.x/server-python/examples/users/update-labels.md +++ b/examples/1.9.x/server-python/examples/users/update-labels.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-python/examples/users/update-mfa-recovery-codes.md index c9090ee85..86f440bec 100644 --- a/examples/1.9.x/server-python/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-python/examples/users/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import MfaRecoveryCodes client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-mfa.md b/examples/1.9.x/server-python/examples/users/update-mfa.md index 4dda390c2..72c654e4a 100644 --- a/examples/1.9.x/server-python/examples/users/update-mfa.md +++ b/examples/1.9.x/server-python/examples/users/update-mfa.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-name.md b/examples/1.9.x/server-python/examples/users/update-name.md index 248411be2..4f211dcd0 100644 --- a/examples/1.9.x/server-python/examples/users/update-name.md +++ b/examples/1.9.x/server-python/examples/users/update-name.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-password.md b/examples/1.9.x/server-python/examples/users/update-password.md index 2a0c93236..30178be5f 100644 --- a/examples/1.9.x/server-python/examples/users/update-password.md +++ b/examples/1.9.x/server-python/examples/users/update-password.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-phone-verification.md b/examples/1.9.x/server-python/examples/users/update-phone-verification.md index 6b3120221..0b827da52 100644 --- a/examples/1.9.x/server-python/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-python/examples/users/update-phone-verification.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-phone.md b/examples/1.9.x/server-python/examples/users/update-phone.md index 82f8e15fe..a3c34f129 100644 --- a/examples/1.9.x/server-python/examples/users/update-phone.md +++ b/examples/1.9.x/server-python/examples/users/update-phone.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-prefs.md b/examples/1.9.x/server-python/examples/users/update-prefs.md index 6d1f043b1..bf8ba195e 100644 --- a/examples/1.9.x/server-python/examples/users/update-prefs.md +++ b/examples/1.9.x/server-python/examples/users/update-prefs.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import Preferences client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-status.md b/examples/1.9.x/server-python/examples/users/update-status.md index fcf8d0e5e..26b9f321d 100644 --- a/examples/1.9.x/server-python/examples/users/update-status.md +++ b/examples/1.9.x/server-python/examples/users/update-status.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import User client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/users/update-target.md b/examples/1.9.x/server-python/examples/users/update-target.md index 1a7c5f107..cec04b396 100644 --- a/examples/1.9.x/server-python/examples/users/update-target.md +++ b/examples/1.9.x/server-python/examples/users/update-target.md @@ -4,7 +4,7 @@ from appwrite.services.users import Users from appwrite.models import Target client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/webhooks/create.md b/examples/1.9.x/server-python/examples/webhooks/create.md index d02922219..3a93f8bb4 100644 --- a/examples/1.9.x/server-python/examples/webhooks/create.md +++ b/examples/1.9.x/server-python/examples/webhooks/create.md @@ -4,7 +4,7 @@ from appwrite.services.webhooks import Webhooks from appwrite.models import Webhook client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/webhooks/delete.md b/examples/1.9.x/server-python/examples/webhooks/delete.md index 1b6cbdb38..0967834fe 100644 --- a/examples/1.9.x/server-python/examples/webhooks/delete.md +++ b/examples/1.9.x/server-python/examples/webhooks/delete.md @@ -3,7 +3,7 @@ from appwrite.client import Client from appwrite.services.webhooks import Webhooks client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/webhooks/get.md b/examples/1.9.x/server-python/examples/webhooks/get.md index e24808ce3..37d20cbc8 100644 --- a/examples/1.9.x/server-python/examples/webhooks/get.md +++ b/examples/1.9.x/server-python/examples/webhooks/get.md @@ -4,7 +4,7 @@ from appwrite.services.webhooks import Webhooks from appwrite.models import Webhook client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/webhooks/list.md b/examples/1.9.x/server-python/examples/webhooks/list.md index 0bb232043..73fa86914 100644 --- a/examples/1.9.x/server-python/examples/webhooks/list.md +++ b/examples/1.9.x/server-python/examples/webhooks/list.md @@ -4,7 +4,7 @@ from appwrite.services.webhooks import Webhooks from appwrite.models import WebhookList client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/webhooks/update-secret.md b/examples/1.9.x/server-python/examples/webhooks/update-secret.md index 5e38b24b9..f727e9c5b 100644 --- a/examples/1.9.x/server-python/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-python/examples/webhooks/update-secret.md @@ -4,7 +4,7 @@ from appwrite.services.webhooks import Webhooks from appwrite.models import Webhook client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-python/examples/webhooks/update.md b/examples/1.9.x/server-python/examples/webhooks/update.md index 626d793cd..bd6522fd5 100644 --- a/examples/1.9.x/server-python/examples/webhooks/update.md +++ b/examples/1.9.x/server-python/examples/webhooks/update.md @@ -4,7 +4,7 @@ from appwrite.services.webhooks import Webhooks from appwrite.models import Webhook client = Client() -client.set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint +client.set_endpoint('') # Your API Endpoint client.set_project('') # Your project ID client.set_key('') # Your secret API key diff --git a/examples/1.9.x/server-rest/examples/functions/create.md b/examples/1.9.x/server-rest/examples/functions/create.md index 6039762ce..2ef0865d7 100644 --- a/examples/1.9.x/server-rest/examples/functions/create.md +++ b/examples/1.9.x/server-rest/examples/functions/create.md @@ -24,6 +24,8 @@ X-Appwrite-Key: "providerBranch": "", "providerSilentMode": false, "providerRootDirectory": "", + "providerBranches": [], + "providerPaths": [], "buildSpecification": "", "runtimeSpecification": "", "deploymentRetention": 0 diff --git a/examples/1.9.x/server-rest/examples/functions/update.md b/examples/1.9.x/server-rest/examples/functions/update.md index ce81f2193..487fef4fa 100644 --- a/examples/1.9.x/server-rest/examples/functions/update.md +++ b/examples/1.9.x/server-rest/examples/functions/update.md @@ -23,6 +23,8 @@ X-Appwrite-Key: "providerBranch": "", "providerSilentMode": false, "providerRootDirectory": "", + "providerBranches": [], + "providerPaths": [], "buildSpecification": "", "runtimeSpecification": "", "deploymentRetention": 0 diff --git a/examples/1.9.x/server-rest/examples/organization/create-key.md b/examples/1.9.x/server-rest/examples/organization/create-key.md new file mode 100644 index 000000000..acbfcb4f8 --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/create-key.md @@ -0,0 +1,15 @@ +```http +POST /v1/organization/keys HTTP/1.1 +Host: cloud.appwrite.io +Content-Type: application/json +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: + +{ + "keyId": "", + "name": "", + "scopes": [], + "expire": "2020-10-15T06:38:00.000+00:00" +} +``` diff --git a/examples/1.9.x/server-rest/examples/organization/create-project.md b/examples/1.9.x/server-rest/examples/organization/create-project.md new file mode 100644 index 000000000..24cd87251 --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/create-project.md @@ -0,0 +1,14 @@ +```http +POST /v1/organization/projects HTTP/1.1 +Host: cloud.appwrite.io +Content-Type: application/json +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: + +{ + "projectId": "", + "name": "", + "region": "fra" +} +``` diff --git a/examples/1.9.x/server-rest/examples/organization/delete-key.md b/examples/1.9.x/server-rest/examples/organization/delete-key.md new file mode 100644 index 000000000..aab1ef88c --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/delete-key.md @@ -0,0 +1,9 @@ +```http +DELETE /v1/organization/keys/{keyId} HTTP/1.1 +Host: cloud.appwrite.io +Content-Type: application/json +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: + +``` diff --git a/examples/1.9.x/server-rest/examples/organization/delete-project.md b/examples/1.9.x/server-rest/examples/organization/delete-project.md new file mode 100644 index 000000000..92cf6850a --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/delete-project.md @@ -0,0 +1,9 @@ +```http +DELETE /v1/organization/projects/{projectId} HTTP/1.1 +Host: cloud.appwrite.io +Content-Type: application/json +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: + +``` diff --git a/examples/1.9.x/server-rest/examples/organization/get-key.md b/examples/1.9.x/server-rest/examples/organization/get-key.md new file mode 100644 index 000000000..b4d8fa2e0 --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/get-key.md @@ -0,0 +1,7 @@ +```http +GET /v1/organization/keys/{keyId} HTTP/1.1 +Host: cloud.appwrite.io +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: +``` diff --git a/examples/1.9.x/server-rest/examples/organization/get-project.md b/examples/1.9.x/server-rest/examples/organization/get-project.md new file mode 100644 index 000000000..cc4a30578 --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/get-project.md @@ -0,0 +1,7 @@ +```http +GET /v1/organization/projects/{projectId} HTTP/1.1 +Host: cloud.appwrite.io +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: +``` diff --git a/examples/1.9.x/server-rest/examples/organization/list-keys.md b/examples/1.9.x/server-rest/examples/organization/list-keys.md new file mode 100644 index 000000000..7c4809086 --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/list-keys.md @@ -0,0 +1,7 @@ +```http +GET /v1/organization/keys HTTP/1.1 +Host: cloud.appwrite.io +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: +``` diff --git a/examples/1.9.x/server-rest/examples/organization/list-projects.md b/examples/1.9.x/server-rest/examples/organization/list-projects.md new file mode 100644 index 000000000..d3edd593d --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/list-projects.md @@ -0,0 +1,7 @@ +```http +GET /v1/organization/projects HTTP/1.1 +Host: cloud.appwrite.io +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: +``` diff --git a/examples/1.9.x/server-rest/examples/organization/update-key.md b/examples/1.9.x/server-rest/examples/organization/update-key.md new file mode 100644 index 000000000..caf6209b0 --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/update-key.md @@ -0,0 +1,14 @@ +```http +PUT /v1/organization/keys/{keyId} HTTP/1.1 +Host: cloud.appwrite.io +Content-Type: application/json +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: + +{ + "name": "", + "scopes": [], + "expire": "2020-10-15T06:38:00.000+00:00" +} +``` diff --git a/examples/1.9.x/server-rest/examples/organization/update-project.md b/examples/1.9.x/server-rest/examples/organization/update-project.md new file mode 100644 index 000000000..33aeaac5a --- /dev/null +++ b/examples/1.9.x/server-rest/examples/organization/update-project.md @@ -0,0 +1,12 @@ +```http +PATCH /v1/organization/projects/{projectId} HTTP/1.1 +Host: cloud.appwrite.io +Content-Type: application/json +X-Appwrite-Response-Format: 1.9.5 +X-Appwrite-Project: +X-Appwrite-Key: + +{ + "name": "" +} +``` diff --git a/examples/1.9.x/server-rest/examples/sites/create.md b/examples/1.9.x/server-rest/examples/sites/create.md index 31b2283e9..4028d8986 100644 --- a/examples/1.9.x/server-rest/examples/sites/create.md +++ b/examples/1.9.x/server-rest/examples/sites/create.md @@ -25,6 +25,8 @@ X-Appwrite-Key: "providerBranch": "", "providerSilentMode": false, "providerRootDirectory": "", + "providerBranches": [], + "providerPaths": [], "buildSpecification": "", "runtimeSpecification": "", "deploymentRetention": 0 diff --git a/examples/1.9.x/server-rest/examples/sites/update.md b/examples/1.9.x/server-rest/examples/sites/update.md index f876bfcaf..a8331d160 100644 --- a/examples/1.9.x/server-rest/examples/sites/update.md +++ b/examples/1.9.x/server-rest/examples/sites/update.md @@ -24,6 +24,8 @@ X-Appwrite-Key: "providerBranch": "", "providerSilentMode": false, "providerRootDirectory": "", + "providerBranches": [], + "providerPaths": [], "buildSpecification": "", "runtimeSpecification": "", "deploymentRetention": 0 diff --git a/examples/1.9.x/server-ruby/examples/account/create-anonymous-session.md b/examples/1.9.x/server-ruby/examples/account/create-anonymous-session.md index 0fce57505..8c77aca66 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-ruby/examples/account/create-anonymous-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-email-password-session.md b/examples/1.9.x/server-ruby/examples/account/create-email-password-session.md index 57ab742da..58498a7d0 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-ruby/examples/account/create-email-password-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-email-token.md b/examples/1.9.x/server-ruby/examples/account/create-email-token.md index e259f8132..8ea1e72d6 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-email-token.md +++ b/examples/1.9.x/server-ruby/examples/account/create-email-token.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-email-verification.md b/examples/1.9.x/server-ruby/examples/account/create-email-verification.md index b2351cc46..6a2b40456 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-ruby/examples/account/create-email-verification.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-jwt.md b/examples/1.9.x/server-ruby/examples/account/create-jwt.md index 2c722b019..9e48e284e 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-jwt.md +++ b/examples/1.9.x/server-ruby/examples/account/create-jwt.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-magic-url-token.md b/examples/1.9.x/server-ruby/examples/account/create-magic-url-token.md index e84c21512..20e387699 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-ruby/examples/account/create-magic-url-token.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-ruby/examples/account/create-mfa-authenticator.md index 5d80789dc..326c647e8 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-ruby/examples/account/create-mfa-authenticator.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-ruby/examples/account/create-mfa-challenge.md index 117f86f89..5d0bdcdfc 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-ruby/examples/account/create-mfa-challenge.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-ruby/examples/account/create-mfa-recovery-codes.md index 680f9df3e..c8a20b2e5 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-ruby/examples/account/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-ruby/examples/account/create-o-auth-2-token.md index 4dbba2f03..d2d2efac6 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-ruby/examples/account/create-o-auth-2-token.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-phone-token.md b/examples/1.9.x/server-ruby/examples/account/create-phone-token.md index e291fd0ed..6de25b38f 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-ruby/examples/account/create-phone-token.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-phone-verification.md b/examples/1.9.x/server-ruby/examples/account/create-phone-verification.md index 0bf3df115..4cc54093a 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-ruby/examples/account/create-phone-verification.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-recovery.md b/examples/1.9.x/server-ruby/examples/account/create-recovery.md index 380dde1d2..d26ddf27e 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-recovery.md +++ b/examples/1.9.x/server-ruby/examples/account/create-recovery.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-session.md b/examples/1.9.x/server-ruby/examples/account/create-session.md index dcc2bd7ef..a05d6ce31 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-session.md +++ b/examples/1.9.x/server-ruby/examples/account/create-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create-verification.md b/examples/1.9.x/server-ruby/examples/account/create-verification.md index 278198864..685216a6b 100644 --- a/examples/1.9.x/server-ruby/examples/account/create-verification.md +++ b/examples/1.9.x/server-ruby/examples/account/create-verification.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/create.md b/examples/1.9.x/server-ruby/examples/account/create.md index 673c8f3f0..85c8cf52f 100644 --- a/examples/1.9.x/server-ruby/examples/account/create.md +++ b/examples/1.9.x/server-ruby/examples/account/create.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/delete-identity.md b/examples/1.9.x/server-ruby/examples/account/delete-identity.md index fa6a2264f..c356af7aa 100644 --- a/examples/1.9.x/server-ruby/examples/account/delete-identity.md +++ b/examples/1.9.x/server-ruby/examples/account/delete-identity.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-ruby/examples/account/delete-mfa-authenticator.md index 76efdab1f..948721e12 100644 --- a/examples/1.9.x/server-ruby/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-ruby/examples/account/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/delete-session.md b/examples/1.9.x/server-ruby/examples/account/delete-session.md index 83a201ce3..381954d74 100644 --- a/examples/1.9.x/server-ruby/examples/account/delete-session.md +++ b/examples/1.9.x/server-ruby/examples/account/delete-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/delete-sessions.md b/examples/1.9.x/server-ruby/examples/account/delete-sessions.md index 3008032f0..a25c18111 100644 --- a/examples/1.9.x/server-ruby/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-ruby/examples/account/delete-sessions.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-ruby/examples/account/get-mfa-recovery-codes.md index 144abb0bd..003f94e91 100644 --- a/examples/1.9.x/server-ruby/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-ruby/examples/account/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/get-prefs.md b/examples/1.9.x/server-ruby/examples/account/get-prefs.md index 9cbebfea1..3049fca8d 100644 --- a/examples/1.9.x/server-ruby/examples/account/get-prefs.md +++ b/examples/1.9.x/server-ruby/examples/account/get-prefs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/get-session.md b/examples/1.9.x/server-ruby/examples/account/get-session.md index d8b68f099..44b2582af 100644 --- a/examples/1.9.x/server-ruby/examples/account/get-session.md +++ b/examples/1.9.x/server-ruby/examples/account/get-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/get.md b/examples/1.9.x/server-ruby/examples/account/get.md index 4615dab17..cfb15c413 100644 --- a/examples/1.9.x/server-ruby/examples/account/get.md +++ b/examples/1.9.x/server-ruby/examples/account/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/list-identities.md b/examples/1.9.x/server-ruby/examples/account/list-identities.md index e66dade30..582c3fa1f 100644 --- a/examples/1.9.x/server-ruby/examples/account/list-identities.md +++ b/examples/1.9.x/server-ruby/examples/account/list-identities.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/list-logs.md b/examples/1.9.x/server-ruby/examples/account/list-logs.md index 171d43064..7f81c22a3 100644 --- a/examples/1.9.x/server-ruby/examples/account/list-logs.md +++ b/examples/1.9.x/server-ruby/examples/account/list-logs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/list-mfa-factors.md b/examples/1.9.x/server-ruby/examples/account/list-mfa-factors.md index c172d71a7..4daac1d59 100644 --- a/examples/1.9.x/server-ruby/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-ruby/examples/account/list-mfa-factors.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/list-sessions.md b/examples/1.9.x/server-ruby/examples/account/list-sessions.md index 47d2c033c..71c264fc6 100644 --- a/examples/1.9.x/server-ruby/examples/account/list-sessions.md +++ b/examples/1.9.x/server-ruby/examples/account/list-sessions.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-email-verification.md b/examples/1.9.x/server-ruby/examples/account/update-email-verification.md index 143d7924f..03d8ab406 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-ruby/examples/account/update-email-verification.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-email.md b/examples/1.9.x/server-ruby/examples/account/update-email.md index 606a93651..a6165edf6 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-email.md +++ b/examples/1.9.x/server-ruby/examples/account/update-email.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-magic-url-session.md b/examples/1.9.x/server-ruby/examples/account/update-magic-url-session.md index e37318283..93c57ccde 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-ruby/examples/account/update-magic-url-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-ruby/examples/account/update-mfa-authenticator.md index 89c165264..93bbbc25c 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-ruby/examples/account/update-mfa-authenticator.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-ruby/examples/account/update-mfa-challenge.md index 60e271f45..8a62eb6d0 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-ruby/examples/account/update-mfa-challenge.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-ruby/examples/account/update-mfa-recovery-codes.md index e9bd85857..428670fb3 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-ruby/examples/account/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-mfa.md b/examples/1.9.x/server-ruby/examples/account/update-mfa.md index 1806f7c4a..c0a8c75c5 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-mfa.md +++ b/examples/1.9.x/server-ruby/examples/account/update-mfa.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-name.md b/examples/1.9.x/server-ruby/examples/account/update-name.md index 9904c8c40..357652aa9 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-name.md +++ b/examples/1.9.x/server-ruby/examples/account/update-name.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-password.md b/examples/1.9.x/server-ruby/examples/account/update-password.md index c9f935101..e13ebff99 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-password.md +++ b/examples/1.9.x/server-ruby/examples/account/update-password.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-phone-session.md b/examples/1.9.x/server-ruby/examples/account/update-phone-session.md index 318840494..9e36994de 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-ruby/examples/account/update-phone-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-phone-verification.md b/examples/1.9.x/server-ruby/examples/account/update-phone-verification.md index a3904a9a1..50760c7ff 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-ruby/examples/account/update-phone-verification.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-phone.md b/examples/1.9.x/server-ruby/examples/account/update-phone.md index 6501becc1..bc14524f4 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-phone.md +++ b/examples/1.9.x/server-ruby/examples/account/update-phone.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-prefs.md b/examples/1.9.x/server-ruby/examples/account/update-prefs.md index 847cff42d..0e9d53dc1 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-prefs.md +++ b/examples/1.9.x/server-ruby/examples/account/update-prefs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-recovery.md b/examples/1.9.x/server-ruby/examples/account/update-recovery.md index 198579aed..81e82298a 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-recovery.md +++ b/examples/1.9.x/server-ruby/examples/account/update-recovery.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-session.md b/examples/1.9.x/server-ruby/examples/account/update-session.md index 5919db026..4f8895133 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-session.md +++ b/examples/1.9.x/server-ruby/examples/account/update-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-status.md b/examples/1.9.x/server-ruby/examples/account/update-status.md index 725bd31ca..1d3c0f4f9 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-status.md +++ b/examples/1.9.x/server-ruby/examples/account/update-status.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/account/update-verification.md b/examples/1.9.x/server-ruby/examples/account/update-verification.md index bee759fc9..51da16858 100644 --- a/examples/1.9.x/server-ruby/examples/account/update-verification.md +++ b/examples/1.9.x/server-ruby/examples/account/update-verification.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/activities/get-event.md b/examples/1.9.x/server-ruby/examples/activities/get-event.md index b2cf05970..296339fe2 100644 --- a/examples/1.9.x/server-ruby/examples/activities/get-event.md +++ b/examples/1.9.x/server-ruby/examples/activities/get-event.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/activities/list-events.md b/examples/1.9.x/server-ruby/examples/activities/list-events.md index 1d7fddd62..a251052d0 100644 --- a/examples/1.9.x/server-ruby/examples/activities/list-events.md +++ b/examples/1.9.x/server-ruby/examples/activities/list-events.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/advisor/delete-report.md b/examples/1.9.x/server-ruby/examples/advisor/delete-report.md index 1139bb71e..7f9d8f100 100644 --- a/examples/1.9.x/server-ruby/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-ruby/examples/advisor/delete-report.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/advisor/get-insight.md b/examples/1.9.x/server-ruby/examples/advisor/get-insight.md index e9fd0ac31..fa7a3175f 100644 --- a/examples/1.9.x/server-ruby/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-ruby/examples/advisor/get-insight.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/advisor/get-report.md b/examples/1.9.x/server-ruby/examples/advisor/get-report.md index 919cc2850..eecf76489 100644 --- a/examples/1.9.x/server-ruby/examples/advisor/get-report.md +++ b/examples/1.9.x/server-ruby/examples/advisor/get-report.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/advisor/list-insights.md b/examples/1.9.x/server-ruby/examples/advisor/list-insights.md index 59e97ad87..5100ae050 100644 --- a/examples/1.9.x/server-ruby/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-ruby/examples/advisor/list-insights.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/advisor/list-reports.md b/examples/1.9.x/server-ruby/examples/advisor/list-reports.md index 11670c30a..589e4ec28 100644 --- a/examples/1.9.x/server-ruby/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-ruby/examples/advisor/list-reports.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/avatars/get-browser.md b/examples/1.9.x/server-ruby/examples/avatars/get-browser.md index 2c9c1272d..8caa19c05 100644 --- a/examples/1.9.x/server-ruby/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-ruby/examples/avatars/get-browser.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/avatars/get-credit-card.md b/examples/1.9.x/server-ruby/examples/avatars/get-credit-card.md index a912b9cd4..40d198154 100644 --- a/examples/1.9.x/server-ruby/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-ruby/examples/avatars/get-credit-card.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/avatars/get-favicon.md b/examples/1.9.x/server-ruby/examples/avatars/get-favicon.md index a50b91a85..097d7af26 100644 --- a/examples/1.9.x/server-ruby/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-ruby/examples/avatars/get-favicon.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/avatars/get-flag.md b/examples/1.9.x/server-ruby/examples/avatars/get-flag.md index a2f120672..aca6f29cb 100644 --- a/examples/1.9.x/server-ruby/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-ruby/examples/avatars/get-flag.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/avatars/get-image.md b/examples/1.9.x/server-ruby/examples/avatars/get-image.md index b3bcce331..f8afbb75f 100644 --- a/examples/1.9.x/server-ruby/examples/avatars/get-image.md +++ b/examples/1.9.x/server-ruby/examples/avatars/get-image.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/avatars/get-initials.md b/examples/1.9.x/server-ruby/examples/avatars/get-initials.md index 695ccf72d..df689246b 100644 --- a/examples/1.9.x/server-ruby/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-ruby/examples/avatars/get-initials.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/avatars/get-qr.md b/examples/1.9.x/server-ruby/examples/avatars/get-qr.md index 2ccde309a..060e7ad91 100644 --- a/examples/1.9.x/server-ruby/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-ruby/examples/avatars/get-qr.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/avatars/get-screenshot.md b/examples/1.9.x/server-ruby/examples/avatars/get-screenshot.md index 87c233f5c..fa243f4c8 100644 --- a/examples/1.9.x/server-ruby/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-ruby/examples/avatars/get-screenshot.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with @@ -20,7 +20,7 @@ result = avatars.get_screenshot( viewport_width: 1920, # optional viewport_height: 1080, # optional scale: 2, # optional - theme: Theme::DARK, # optional + theme: BrowserTheme::DARK, # optional user_agent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15', # optional fullpage: true, # optional locale: 'en-US', # optional diff --git a/examples/1.9.x/server-ruby/examples/backups/create-archive.md b/examples/1.9.x/server-ruby/examples/backups/create-archive.md index 95b0087ca..07de64225 100644 --- a/examples/1.9.x/server-ruby/examples/backups/create-archive.md +++ b/examples/1.9.x/server-ruby/examples/backups/create-archive.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/create-policy.md b/examples/1.9.x/server-ruby/examples/backups/create-policy.md index de2754793..50a262836 100644 --- a/examples/1.9.x/server-ruby/examples/backups/create-policy.md +++ b/examples/1.9.x/server-ruby/examples/backups/create-policy.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/create-restoration.md b/examples/1.9.x/server-ruby/examples/backups/create-restoration.md index f6509087d..2945d0ded 100644 --- a/examples/1.9.x/server-ruby/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-ruby/examples/backups/create-restoration.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/delete-archive.md b/examples/1.9.x/server-ruby/examples/backups/delete-archive.md index b9335ca6d..a239eb4fb 100644 --- a/examples/1.9.x/server-ruby/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-ruby/examples/backups/delete-archive.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/delete-policy.md b/examples/1.9.x/server-ruby/examples/backups/delete-policy.md index efcc9fd01..6d2349833 100644 --- a/examples/1.9.x/server-ruby/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-ruby/examples/backups/delete-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/get-archive.md b/examples/1.9.x/server-ruby/examples/backups/get-archive.md index da4833a8a..a27aa03d2 100644 --- a/examples/1.9.x/server-ruby/examples/backups/get-archive.md +++ b/examples/1.9.x/server-ruby/examples/backups/get-archive.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/get-policy.md b/examples/1.9.x/server-ruby/examples/backups/get-policy.md index 910d0eb2e..31a01f16c 100644 --- a/examples/1.9.x/server-ruby/examples/backups/get-policy.md +++ b/examples/1.9.x/server-ruby/examples/backups/get-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/get-restoration.md b/examples/1.9.x/server-ruby/examples/backups/get-restoration.md index 351c16fcf..30c34a94b 100644 --- a/examples/1.9.x/server-ruby/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-ruby/examples/backups/get-restoration.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/list-archives.md b/examples/1.9.x/server-ruby/examples/backups/list-archives.md index 71a855b19..358983fd9 100644 --- a/examples/1.9.x/server-ruby/examples/backups/list-archives.md +++ b/examples/1.9.x/server-ruby/examples/backups/list-archives.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/list-policies.md b/examples/1.9.x/server-ruby/examples/backups/list-policies.md index bb69fb334..c4abd9019 100644 --- a/examples/1.9.x/server-ruby/examples/backups/list-policies.md +++ b/examples/1.9.x/server-ruby/examples/backups/list-policies.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/list-restorations.md b/examples/1.9.x/server-ruby/examples/backups/list-restorations.md index e1a49eeee..8713afec6 100644 --- a/examples/1.9.x/server-ruby/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-ruby/examples/backups/list-restorations.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/backups/update-policy.md b/examples/1.9.x/server-ruby/examples/backups/update-policy.md index 65e81af78..8776e6b36 100644 --- a/examples/1.9.x/server-ruby/examples/backups/update-policy.md +++ b/examples/1.9.x/server-ruby/examples/backups/update-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-big-int-attribute.md index 38013d1e3..216cd33d5 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-big-int-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-boolean-attribute.md index a02b6079e..50e3ff67d 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-boolean-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-collection.md b/examples/1.9.x/server-ruby/examples/databases/create-collection.md index 3b21dc545..ad8fef9cc 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-collection.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-collection.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-datetime-attribute.md index 603230eb1..c0ae81e9f 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-datetime-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-document.md b/examples/1.9.x/server-ruby/examples/databases/create-document.md index 6398a210b..36d137910 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-document.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-document.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/databases/create-documents.md b/examples/1.9.x/server-ruby/examples/databases/create-documents.md index 60acd19f7..abd9e33fa 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-documents.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-documents.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-email-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-email-attribute.md index 705927466..a1f0ef13c 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-email-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-enum-attribute.md index c7737fc44..a77ddbda2 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-enum-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-float-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-float-attribute.md index 3c0a5f012..6026a6613 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-float-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-index.md b/examples/1.9.x/server-ruby/examples/databases/create-index.md index 454ba828a..32a0647db 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-index.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-index.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-integer-attribute.md index 7691bf012..066d9b42e 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-integer-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-ip-attribute.md index 9e783e338..38874f31c 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-ip-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-line-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-line-attribute.md index 1ade2aacf..0742c9474 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-line-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-longtext-attribute.md index b7a8f4d63..396816930 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-longtext-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-mediumtext-attribute.md index 5806ff6f8..0cba9fd32 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-mediumtext-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-operations.md b/examples/1.9.x/server-ruby/examples/databases/create-operations.md index 5fffcc05b..f04ac1d86 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-operations.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-operations.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-point-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-point-attribute.md index 12a0010f8..40ab646e2 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-point-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-polygon-attribute.md index 181c5e7a6..5bb49e982 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-polygon-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-relationship-attribute.md index bc6f32f1d..378fe89a4 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-relationship-attribute.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-string-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-string-attribute.md index 2aefa55fc..ef2bf6360 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-string-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-text-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-text-attribute.md index bc3f4fb65..0c57afc31 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-text-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-transaction.md b/examples/1.9.x/server-ruby/examples/databases/create-transaction.md index 86c61cd7f..52dcadfd8 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-transaction.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-url-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-url-attribute.md index f20c77cd5..20bd7ba6b 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-url-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-ruby/examples/databases/create-varchar-attribute.md index fe56f85ed..ff7f7a42d 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/create-varchar-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/create.md b/examples/1.9.x/server-ruby/examples/databases/create.md index c59b42306..99d671719 100644 --- a/examples/1.9.x/server-ruby/examples/databases/create.md +++ b/examples/1.9.x/server-ruby/examples/databases/create.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-ruby/examples/databases/decrement-document-attribute.md index fd97e5f33..b1fba10ad 100644 --- a/examples/1.9.x/server-ruby/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/decrement-document-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/databases/delete-attribute.md b/examples/1.9.x/server-ruby/examples/databases/delete-attribute.md index 089fdab39..a51f53931 100644 --- a/examples/1.9.x/server-ruby/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/delete-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/delete-collection.md b/examples/1.9.x/server-ruby/examples/databases/delete-collection.md index 1ec714e92..748574ce4 100644 --- a/examples/1.9.x/server-ruby/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-ruby/examples/databases/delete-collection.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/delete-document.md b/examples/1.9.x/server-ruby/examples/databases/delete-document.md index 4ca8c4e52..92e86d88a 100644 --- a/examples/1.9.x/server-ruby/examples/databases/delete-document.md +++ b/examples/1.9.x/server-ruby/examples/databases/delete-document.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/databases/delete-documents.md b/examples/1.9.x/server-ruby/examples/databases/delete-documents.md index c9309bd9d..2a499614a 100644 --- a/examples/1.9.x/server-ruby/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-ruby/examples/databases/delete-documents.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/delete-index.md b/examples/1.9.x/server-ruby/examples/databases/delete-index.md index 5b8052515..70a8c1991 100644 --- a/examples/1.9.x/server-ruby/examples/databases/delete-index.md +++ b/examples/1.9.x/server-ruby/examples/databases/delete-index.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/delete-transaction.md b/examples/1.9.x/server-ruby/examples/databases/delete-transaction.md index c181b3495..dbc77c266 100644 --- a/examples/1.9.x/server-ruby/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-ruby/examples/databases/delete-transaction.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/delete.md b/examples/1.9.x/server-ruby/examples/databases/delete.md index 054534cce..6c3bff222 100644 --- a/examples/1.9.x/server-ruby/examples/databases/delete.md +++ b/examples/1.9.x/server-ruby/examples/databases/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/get-attribute.md b/examples/1.9.x/server-ruby/examples/databases/get-attribute.md index 5b1c53ef3..d64b677e2 100644 --- a/examples/1.9.x/server-ruby/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/get-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/get-collection.md b/examples/1.9.x/server-ruby/examples/databases/get-collection.md index a3384568b..a637e2039 100644 --- a/examples/1.9.x/server-ruby/examples/databases/get-collection.md +++ b/examples/1.9.x/server-ruby/examples/databases/get-collection.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/get-document.md b/examples/1.9.x/server-ruby/examples/databases/get-document.md index 3a976514b..3567827df 100644 --- a/examples/1.9.x/server-ruby/examples/databases/get-document.md +++ b/examples/1.9.x/server-ruby/examples/databases/get-document.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/databases/get-index.md b/examples/1.9.x/server-ruby/examples/databases/get-index.md index 0e1892a14..a641c6dbb 100644 --- a/examples/1.9.x/server-ruby/examples/databases/get-index.md +++ b/examples/1.9.x/server-ruby/examples/databases/get-index.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/get-transaction.md b/examples/1.9.x/server-ruby/examples/databases/get-transaction.md index 33432aae3..1ac671e67 100644 --- a/examples/1.9.x/server-ruby/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-ruby/examples/databases/get-transaction.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/get.md b/examples/1.9.x/server-ruby/examples/databases/get.md index d8e46b69f..8913ccd42 100644 --- a/examples/1.9.x/server-ruby/examples/databases/get.md +++ b/examples/1.9.x/server-ruby/examples/databases/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-ruby/examples/databases/increment-document-attribute.md index ced8cc9df..6bcdffae4 100644 --- a/examples/1.9.x/server-ruby/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/increment-document-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/databases/list-attributes.md b/examples/1.9.x/server-ruby/examples/databases/list-attributes.md index 32374674f..bbd92d7f6 100644 --- a/examples/1.9.x/server-ruby/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-ruby/examples/databases/list-attributes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/list-collections.md b/examples/1.9.x/server-ruby/examples/databases/list-collections.md index d1ae8d985..3e867e0a2 100644 --- a/examples/1.9.x/server-ruby/examples/databases/list-collections.md +++ b/examples/1.9.x/server-ruby/examples/databases/list-collections.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/list-documents.md b/examples/1.9.x/server-ruby/examples/databases/list-documents.md index 0e471e298..f7cb6adf7 100644 --- a/examples/1.9.x/server-ruby/examples/databases/list-documents.md +++ b/examples/1.9.x/server-ruby/examples/databases/list-documents.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/databases/list-indexes.md b/examples/1.9.x/server-ruby/examples/databases/list-indexes.md index 17adc6049..2476473da 100644 --- a/examples/1.9.x/server-ruby/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-ruby/examples/databases/list-indexes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/list-transactions.md b/examples/1.9.x/server-ruby/examples/databases/list-transactions.md index 9071982e7..020963856 100644 --- a/examples/1.9.x/server-ruby/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-ruby/examples/databases/list-transactions.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/list.md b/examples/1.9.x/server-ruby/examples/databases/list.md index 9c747c5ce..734977d36 100644 --- a/examples/1.9.x/server-ruby/examples/databases/list.md +++ b/examples/1.9.x/server-ruby/examples/databases/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-big-int-attribute.md index ed0194b48..0976d09bb 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-big-int-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-boolean-attribute.md index 36d16afb3..96c011ba0 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-boolean-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-collection.md b/examples/1.9.x/server-ruby/examples/databases/update-collection.md index a3c190033..8fa20057d 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-collection.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-collection.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-datetime-attribute.md index 342314a7d..c79c74d54 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-datetime-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-document.md b/examples/1.9.x/server-ruby/examples/databases/update-document.md index 27747e3ba..a503f8545 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-document.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-document.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/databases/update-documents.md b/examples/1.9.x/server-ruby/examples/databases/update-documents.md index 5ebb951f9..c5598800a 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-documents.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-documents.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-email-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-email-attribute.md index 9b8f027d9..e61d4b8c2 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-email-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-enum-attribute.md index a5d253f63..4e4f0ca56 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-enum-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-float-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-float-attribute.md index 8c03c9a73..697ee1320 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-float-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-integer-attribute.md index 3a44c26ec..a19009098 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-integer-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-ip-attribute.md index d65ebec43..18732bfe9 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-ip-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-line-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-line-attribute.md index 93831f3a9..36f6089f0 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-line-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-longtext-attribute.md index bcab8edce..4cef24748 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-longtext-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-mediumtext-attribute.md index faab3a3f5..a6c9a50a9 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-mediumtext-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-point-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-point-attribute.md index df0ee6022..3248cd43b 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-point-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-polygon-attribute.md index 9424c3cfc..c401df41a 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-polygon-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-relationship-attribute.md index 766f30fa3..581c0b4cf 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-relationship-attribute.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-string-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-string-attribute.md index 8ab4e7f73..6ac49a58d 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-string-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-text-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-text-attribute.md index ec21c9744..09b14c68f 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-text-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-transaction.md b/examples/1.9.x/server-ruby/examples/databases/update-transaction.md index 18598015f..165a640f0 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-transaction.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-url-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-url-attribute.md index defe01c69..d2ec4ad84 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-url-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-ruby/examples/databases/update-varchar-attribute.md index 501d57db3..db7ad6773 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-ruby/examples/databases/update-varchar-attribute.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/update.md b/examples/1.9.x/server-ruby/examples/databases/update.md index a5c6d143b..9ba0e3119 100644 --- a/examples/1.9.x/server-ruby/examples/databases/update.md +++ b/examples/1.9.x/server-ruby/examples/databases/update.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/databases/upsert-document.md b/examples/1.9.x/server-ruby/examples/databases/upsert-document.md index d196769e6..0b258b94b 100644 --- a/examples/1.9.x/server-ruby/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-ruby/examples/databases/upsert-document.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/databases/upsert-documents.md b/examples/1.9.x/server-ruby/examples/databases/upsert-documents.md index 49432e01b..0a1d009ac 100644 --- a/examples/1.9.x/server-ruby/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-ruby/examples/databases/upsert-documents.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/create-deployment.md b/examples/1.9.x/server-ruby/examples/functions/create-deployment.md index 1bc2abdf9..7f14a3398 100644 --- a/examples/1.9.x/server-ruby/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-ruby/examples/functions/create-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-ruby/examples/functions/create-duplicate-deployment.md index c39e3a7ea..2350e8977 100644 --- a/examples/1.9.x/server-ruby/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-ruby/examples/functions/create-duplicate-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/create-execution.md b/examples/1.9.x/server-ruby/examples/functions/create-execution.md index 9c529150d..222dae9a6 100644 --- a/examples/1.9.x/server-ruby/examples/functions/create-execution.md +++ b/examples/1.9.x/server-ruby/examples/functions/create-execution.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/functions/create-template-deployment.md b/examples/1.9.x/server-ruby/examples/functions/create-template-deployment.md index 9f80f906d..65702fbe1 100644 --- a/examples/1.9.x/server-ruby/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-ruby/examples/functions/create-template-deployment.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/create-variable.md b/examples/1.9.x/server-ruby/examples/functions/create-variable.md index de8f763d5..9a32ef95b 100644 --- a/examples/1.9.x/server-ruby/examples/functions/create-variable.md +++ b/examples/1.9.x/server-ruby/examples/functions/create-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-ruby/examples/functions/create-vcs-deployment.md index fe8d9917c..268e7f92b 100644 --- a/examples/1.9.x/server-ruby/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-ruby/examples/functions/create-vcs-deployment.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/create.md b/examples/1.9.x/server-ruby/examples/functions/create.md index 6ca65e3fe..4f4d47243 100644 --- a/examples/1.9.x/server-ruby/examples/functions/create.md +++ b/examples/1.9.x/server-ruby/examples/functions/create.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key @@ -14,7 +14,7 @@ functions = Functions.new(client) result = functions.create( function_id: '', name: '', - runtime: Runtime::NODE_14_5, + runtime: FunctionRuntime::NODE_14_5, execute: ["any"], # optional events: [], # optional schedule: '', # optional @@ -23,12 +23,14 @@ result = functions.create( logging: false, # optional entrypoint: '', # optional commands: '', # optional - scopes: [Scopes::PROJECT_READ], # optional + scopes: [ProjectKeyScopes::PROJECT_READ], # optional installation_id: '', # optional provider_repository_id: '', # optional provider_branch: '', # optional provider_silent_mode: false, # optional provider_root_directory: '', # optional + provider_branches: [], # optional + provider_paths: [], # optional build_specification: '', # optional runtime_specification: '', # optional deployment_retention: 0 # optional diff --git a/examples/1.9.x/server-ruby/examples/functions/delete-deployment.md b/examples/1.9.x/server-ruby/examples/functions/delete-deployment.md index 42ee16cbc..5a24866e6 100644 --- a/examples/1.9.x/server-ruby/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-ruby/examples/functions/delete-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/delete-execution.md b/examples/1.9.x/server-ruby/examples/functions/delete-execution.md index 8d125bcf1..867065ea9 100644 --- a/examples/1.9.x/server-ruby/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-ruby/examples/functions/delete-execution.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/delete-variable.md b/examples/1.9.x/server-ruby/examples/functions/delete-variable.md index bd8e79e25..067dc2b1f 100644 --- a/examples/1.9.x/server-ruby/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-ruby/examples/functions/delete-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/delete.md b/examples/1.9.x/server-ruby/examples/functions/delete.md index f895cd650..c0be53736 100644 --- a/examples/1.9.x/server-ruby/examples/functions/delete.md +++ b/examples/1.9.x/server-ruby/examples/functions/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/get-deployment-download.md b/examples/1.9.x/server-ruby/examples/functions/get-deployment-download.md index 728cfca6b..ff3004b07 100644 --- a/examples/1.9.x/server-ruby/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-ruby/examples/functions/get-deployment-download.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/get-deployment.md b/examples/1.9.x/server-ruby/examples/functions/get-deployment.md index 1711df1e6..aacd844f0 100644 --- a/examples/1.9.x/server-ruby/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-ruby/examples/functions/get-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/get-execution.md b/examples/1.9.x/server-ruby/examples/functions/get-execution.md index 240606c65..b7d2c7607 100644 --- a/examples/1.9.x/server-ruby/examples/functions/get-execution.md +++ b/examples/1.9.x/server-ruby/examples/functions/get-execution.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/functions/get-variable.md b/examples/1.9.x/server-ruby/examples/functions/get-variable.md index e06337ea4..b9f602798 100644 --- a/examples/1.9.x/server-ruby/examples/functions/get-variable.md +++ b/examples/1.9.x/server-ruby/examples/functions/get-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/get.md b/examples/1.9.x/server-ruby/examples/functions/get.md index 8b4b1b13e..d63e1cb5a 100644 --- a/examples/1.9.x/server-ruby/examples/functions/get.md +++ b/examples/1.9.x/server-ruby/examples/functions/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/list-deployments.md b/examples/1.9.x/server-ruby/examples/functions/list-deployments.md index d4f88ba61..8d0bd6c1d 100644 --- a/examples/1.9.x/server-ruby/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-ruby/examples/functions/list-deployments.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/list-executions.md b/examples/1.9.x/server-ruby/examples/functions/list-executions.md index f9b138ecf..e6a9b04a8 100644 --- a/examples/1.9.x/server-ruby/examples/functions/list-executions.md +++ b/examples/1.9.x/server-ruby/examples/functions/list-executions.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/functions/list-runtimes.md b/examples/1.9.x/server-ruby/examples/functions/list-runtimes.md index 98a754662..de7aebdc5 100644 --- a/examples/1.9.x/server-ruby/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-ruby/examples/functions/list-runtimes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/list-specifications.md b/examples/1.9.x/server-ruby/examples/functions/list-specifications.md index b018ccdf3..460dccf21 100644 --- a/examples/1.9.x/server-ruby/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-ruby/examples/functions/list-specifications.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/list-variables.md b/examples/1.9.x/server-ruby/examples/functions/list-variables.md index 3e4b1ca63..14562e253 100644 --- a/examples/1.9.x/server-ruby/examples/functions/list-variables.md +++ b/examples/1.9.x/server-ruby/examples/functions/list-variables.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/list.md b/examples/1.9.x/server-ruby/examples/functions/list.md index b9ffba05e..ce73ae7fc 100644 --- a/examples/1.9.x/server-ruby/examples/functions/list.md +++ b/examples/1.9.x/server-ruby/examples/functions/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/update-deployment-status.md b/examples/1.9.x/server-ruby/examples/functions/update-deployment-status.md index b70d5f0f0..a5cdd93b4 100644 --- a/examples/1.9.x/server-ruby/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-ruby/examples/functions/update-deployment-status.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/update-function-deployment.md b/examples/1.9.x/server-ruby/examples/functions/update-function-deployment.md index be7eff9c5..9ab77d4d7 100644 --- a/examples/1.9.x/server-ruby/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-ruby/examples/functions/update-function-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/update-variable.md b/examples/1.9.x/server-ruby/examples/functions/update-variable.md index d3a2a8deb..a63ac878b 100644 --- a/examples/1.9.x/server-ruby/examples/functions/update-variable.md +++ b/examples/1.9.x/server-ruby/examples/functions/update-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/functions/update.md b/examples/1.9.x/server-ruby/examples/functions/update.md index 78c70dff1..e997e6ff9 100644 --- a/examples/1.9.x/server-ruby/examples/functions/update.md +++ b/examples/1.9.x/server-ruby/examples/functions/update.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key @@ -14,7 +14,7 @@ functions = Functions.new(client) result = functions.update( function_id: '', name: '', - runtime: Runtime::NODE_14_5, # optional + runtime: FunctionRuntime::NODE_14_5, # optional execute: ["any"], # optional events: [], # optional schedule: '', # optional @@ -23,12 +23,14 @@ result = functions.update( logging: false, # optional entrypoint: '', # optional commands: '', # optional - scopes: [Scopes::PROJECT_READ], # optional + scopes: [ProjectKeyScopes::PROJECT_READ], # optional installation_id: '', # optional provider_repository_id: '', # optional provider_branch: '', # optional provider_silent_mode: false, # optional provider_root_directory: '', # optional + provider_branches: [], # optional + provider_paths: [], # optional build_specification: '', # optional runtime_specification: '', # optional deployment_retention: 0 # optional diff --git a/examples/1.9.x/server-ruby/examples/graphql/mutation.md b/examples/1.9.x/server-ruby/examples/graphql/mutation.md index a71a8bd61..b10e3dfc3 100644 --- a/examples/1.9.x/server-ruby/examples/graphql/mutation.md +++ b/examples/1.9.x/server-ruby/examples/graphql/mutation.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/graphql/query.md b/examples/1.9.x/server-ruby/examples/graphql/query.md index 49561b158..454108fcc 100644 --- a/examples/1.9.x/server-ruby/examples/graphql/query.md +++ b/examples/1.9.x/server-ruby/examples/graphql/query.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-antivirus.md b/examples/1.9.x/server-ruby/examples/health/get-antivirus.md index 1c29b76d3..fd5435e86 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-ruby/examples/health/get-antivirus.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-cache.md b/examples/1.9.x/server-ruby/examples/health/get-cache.md index a9390d692..34a000ca6 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-cache.md +++ b/examples/1.9.x/server-ruby/examples/health/get-cache.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-certificate.md b/examples/1.9.x/server-ruby/examples/health/get-certificate.md index f88145aac..fd1798fb8 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-certificate.md +++ b/examples/1.9.x/server-ruby/examples/health/get-certificate.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-console-pausing.md b/examples/1.9.x/server-ruby/examples/health/get-console-pausing.md index 1e6513ffd..667077527 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-ruby/examples/health/get-console-pausing.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-db.md b/examples/1.9.x/server-ruby/examples/health/get-db.md index 6f06ad89c..69d9358d0 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-db.md +++ b/examples/1.9.x/server-ruby/examples/health/get-db.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-failed-jobs.md b/examples/1.9.x/server-ruby/examples/health/get-failed-jobs.md index 9d792a02c..369523c2d 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-ruby/examples/health/get-failed-jobs.md @@ -5,14 +5,14 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key health = Health.new(client) result = health.get_failed_jobs( - name: Name::V1_DATABASE, + name: HealthQueueName::V1_DATABASE, threshold: null # optional ) ``` diff --git a/examples/1.9.x/server-ruby/examples/health/get-pub-sub.md b/examples/1.9.x/server-ruby/examples/health/get-pub-sub.md index 7c90a55cd..4713fe6c5 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-ruby/examples/health/get-pub-sub.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-audits.md b/examples/1.9.x/server-ruby/examples/health/get-queue-audits.md index 2320ba160..38d088606 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-audits.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-builds.md b/examples/1.9.x/server-ruby/examples/health/get-queue-builds.md index 40acf3244..2e2d42567 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-builds.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-certificates.md b/examples/1.9.x/server-ruby/examples/health/get-queue-certificates.md index 9d512bc39..b9aa4e2a9 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-certificates.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-databases.md b/examples/1.9.x/server-ruby/examples/health/get-queue-databases.md index 23eff71ba..208430873 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-databases.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-deletes.md b/examples/1.9.x/server-ruby/examples/health/get-queue-deletes.md index f3664b618..beab8b7a9 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-deletes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-functions.md b/examples/1.9.x/server-ruby/examples/health/get-queue-functions.md index cdf3d01bb..2d7ae777e 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-functions.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-logs.md b/examples/1.9.x/server-ruby/examples/health/get-queue-logs.md index ee0b393e4..925473683 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-logs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-mails.md b/examples/1.9.x/server-ruby/examples/health/get-queue-mails.md index 26ef282c1..882306f67 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-mails.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-messaging.md b/examples/1.9.x/server-ruby/examples/health/get-queue-messaging.md index 03d51a3f5..a1d398cb0 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-messaging.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-migrations.md b/examples/1.9.x/server-ruby/examples/health/get-queue-migrations.md index a0b8d2211..2b1d7eee5 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-migrations.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-ruby/examples/health/get-queue-stats-resources.md index cc0b19f8b..3c14fdcbf 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-stats-resources.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-usage.md b/examples/1.9.x/server-ruby/examples/health/get-queue-usage.md index b9f36fb4b..7d5f20fd6 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-usage.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-ruby/examples/health/get-queue-webhooks.md index 2982e65f7..1e53bebf9 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-ruby/examples/health/get-queue-webhooks.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-storage-local.md b/examples/1.9.x/server-ruby/examples/health/get-storage-local.md index 4175f277b..b3ea14af7 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-ruby/examples/health/get-storage-local.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-storage.md b/examples/1.9.x/server-ruby/examples/health/get-storage.md index d187656da..b31ece672 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-storage.md +++ b/examples/1.9.x/server-ruby/examples/health/get-storage.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get-time.md b/examples/1.9.x/server-ruby/examples/health/get-time.md index 4486ef15b..ea19df2bb 100644 --- a/examples/1.9.x/server-ruby/examples/health/get-time.md +++ b/examples/1.9.x/server-ruby/examples/health/get-time.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/health/get.md b/examples/1.9.x/server-ruby/examples/health/get.md index 54a191b85..e14aa37a7 100644 --- a/examples/1.9.x/server-ruby/examples/health/get.md +++ b/examples/1.9.x/server-ruby/examples/health/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/locale/get.md b/examples/1.9.x/server-ruby/examples/locale/get.md index e6fa23f9a..a33cfb5f9 100644 --- a/examples/1.9.x/server-ruby/examples/locale/get.md +++ b/examples/1.9.x/server-ruby/examples/locale/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/locale/list-codes.md b/examples/1.9.x/server-ruby/examples/locale/list-codes.md index cf31d3af0..189d98d2d 100644 --- a/examples/1.9.x/server-ruby/examples/locale/list-codes.md +++ b/examples/1.9.x/server-ruby/examples/locale/list-codes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/locale/list-continents.md b/examples/1.9.x/server-ruby/examples/locale/list-continents.md index 1470c7d16..e6bb196b2 100644 --- a/examples/1.9.x/server-ruby/examples/locale/list-continents.md +++ b/examples/1.9.x/server-ruby/examples/locale/list-continents.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/locale/list-countries-eu.md b/examples/1.9.x/server-ruby/examples/locale/list-countries-eu.md index 7ca1e985d..92b1d051e 100644 --- a/examples/1.9.x/server-ruby/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-ruby/examples/locale/list-countries-eu.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/locale/list-countries-phones.md b/examples/1.9.x/server-ruby/examples/locale/list-countries-phones.md index 43c80c6ac..9f1ce3ad2 100644 --- a/examples/1.9.x/server-ruby/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-ruby/examples/locale/list-countries-phones.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/locale/list-countries.md b/examples/1.9.x/server-ruby/examples/locale/list-countries.md index a5a81c7ba..bdde97b4b 100644 --- a/examples/1.9.x/server-ruby/examples/locale/list-countries.md +++ b/examples/1.9.x/server-ruby/examples/locale/list-countries.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/locale/list-currencies.md b/examples/1.9.x/server-ruby/examples/locale/list-currencies.md index a5316f2bf..a7ad75261 100644 --- a/examples/1.9.x/server-ruby/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-ruby/examples/locale/list-currencies.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/locale/list-languages.md b/examples/1.9.x/server-ruby/examples/locale/list-languages.md index 9c8655f4e..5a5bc512b 100644 --- a/examples/1.9.x/server-ruby/examples/locale/list-languages.md +++ b/examples/1.9.x/server-ruby/examples/locale/list-languages.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-apns-provider.md index 0d4534fee..11538c898 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-apns-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-email.md b/examples/1.9.x/server-ruby/examples/messaging/create-email.md index e661a8a35..50138b8d7 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-email.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-email.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-fcm-provider.md index 2ff771b6c..c233a7fa5 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-fcm-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-mailgun-provider.md index 3e6261dc8..189e8204d 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-mailgun-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-msg-91-provider.md index 2553f1c1c..d839c332b 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-msg-91-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-push.md b/examples/1.9.x/server-ruby/examples/messaging/create-push.md index beff76397..faba36035 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-push.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-push.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-resend-provider.md index 417142fe7..982ad070f 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-resend-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-sendgrid-provider.md index d57c79f17..37b0c774d 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-sendgrid-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-sms.md b/examples/1.9.x/server-ruby/examples/messaging/create-sms.md index c59279fd8..d29fdcaa2 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-sms.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-smtp-provider.md index f3fd75d99..289831945 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-smtp-provider.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-subscriber.md b/examples/1.9.x/server-ruby/examples/messaging/create-subscriber.md index 2038711f2..935148f40 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-subscriber.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_jwt('') # Your secret JSON Web Token diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-telesign-provider.md index 49e43a7c0..725d2c4b7 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-telesign-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-textmagic-provider.md index ff7b9116e..1e72ecb21 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-textmagic-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-topic.md b/examples/1.9.x/server-ruby/examples/messaging/create-topic.md index 85cc5d76b..95e4238ab 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-topic.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-twilio-provider.md index fa86a8354..35b99482b 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-twilio-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-ruby/examples/messaging/create-vonage-provider.md index f3fa1beb8..e652f6128 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/create-vonage-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/delete-provider.md b/examples/1.9.x/server-ruby/examples/messaging/delete-provider.md index 67273651b..79ceacea9 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/delete-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-ruby/examples/messaging/delete-subscriber.md index 11b31bac9..bcfe7549e 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-ruby/examples/messaging/delete-subscriber.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_jwt('') # Your secret JSON Web Token diff --git a/examples/1.9.x/server-ruby/examples/messaging/delete-topic.md b/examples/1.9.x/server-ruby/examples/messaging/delete-topic.md index fb1c13840..44cb56bdc 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-ruby/examples/messaging/delete-topic.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/delete.md b/examples/1.9.x/server-ruby/examples/messaging/delete.md index 0e238dee8..dedcde5e2 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/delete.md +++ b/examples/1.9.x/server-ruby/examples/messaging/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/get-message.md b/examples/1.9.x/server-ruby/examples/messaging/get-message.md index ae854c3c5..993a67d82 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/get-message.md +++ b/examples/1.9.x/server-ruby/examples/messaging/get-message.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/get-provider.md b/examples/1.9.x/server-ruby/examples/messaging/get-provider.md index b66144fc9..8ca6a45f1 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/get-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/get-subscriber.md b/examples/1.9.x/server-ruby/examples/messaging/get-subscriber.md index 800f60c1c..b6bb540e0 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-ruby/examples/messaging/get-subscriber.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/get-topic.md b/examples/1.9.x/server-ruby/examples/messaging/get-topic.md index c34d6e05d..987955b08 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-ruby/examples/messaging/get-topic.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-message-logs.md b/examples/1.9.x/server-ruby/examples/messaging/list-message-logs.md index 3a55506d5..21a00383a 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-message-logs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-messages.md b/examples/1.9.x/server-ruby/examples/messaging/list-messages.md index 250e57fa5..c45457d4a 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-messages.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-ruby/examples/messaging/list-provider-logs.md index 8696e4a5b..2d75e5a8a 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-provider-logs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-providers.md b/examples/1.9.x/server-ruby/examples/messaging/list-providers.md index 4faa0bd6e..f7f5aa05c 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-providers.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-ruby/examples/messaging/list-subscriber-logs.md index 1db126a6c..3f552ab0d 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-subscriber-logs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-subscribers.md b/examples/1.9.x/server-ruby/examples/messaging/list-subscribers.md index ac594e86a..049f9237c 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-subscribers.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-targets.md b/examples/1.9.x/server-ruby/examples/messaging/list-targets.md index ea2ad4a82..ce1883481 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-targets.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-ruby/examples/messaging/list-topic-logs.md index c75290419..04bb91745 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-topic-logs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/list-topics.md b/examples/1.9.x/server-ruby/examples/messaging/list-topics.md index 8778e95e7..492ad798e 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-ruby/examples/messaging/list-topics.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-apns-provider.md index 2ef7cc625..8f513a04a 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-apns-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-email.md b/examples/1.9.x/server-ruby/examples/messaging/update-email.md index 727fdbc23..5ce7bf0b7 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-email.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-email.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-fcm-provider.md index 003d016d3..ba20e0132 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-fcm-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-mailgun-provider.md index d09607a12..a6ba09ced 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-mailgun-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-msg-91-provider.md index d091ee297..9ba092c9f 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-msg-91-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-push.md b/examples/1.9.x/server-ruby/examples/messaging/update-push.md index e00176b9e..946c07202 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-push.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-push.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-resend-provider.md index bafa99c98..800d5060a 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-resend-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-sendgrid-provider.md index f18e9ebeb..18f1ebd34 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-sendgrid-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-sms.md b/examples/1.9.x/server-ruby/examples/messaging/update-sms.md index 233ffb819..7b9213445 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-sms.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-smtp-provider.md index 3c810609b..4720c7b3e 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-smtp-provider.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-telesign-provider.md index 25dc144c6..2083c0693 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-telesign-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-textmagic-provider.md index 5f41c6ac3..d3a6041fb 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-textmagic-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-topic.md b/examples/1.9.x/server-ruby/examples/messaging/update-topic.md index af1ed82fb..5fbe0ff0c 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-topic.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-twilio-provider.md index 952d185b0..2ce311204 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-twilio-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-ruby/examples/messaging/update-vonage-provider.md index 3fb4558c1..ea427e307 100644 --- a/examples/1.9.x/server-ruby/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-ruby/examples/messaging/update-vonage-provider.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/organization/create-key.md b/examples/1.9.x/server-ruby/examples/organization/create-key.md new file mode 100644 index 000000000..65f686f23 --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/create-key.md @@ -0,0 +1,20 @@ +```ruby +require 'appwrite' + +include Appwrite +include Appwrite::Enums + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.create_key( + key_id: '', + name: '', + scopes: [OrganizationKeyScopes::PROJECTS_READ], + expire: '2020-10-15T06:38:00.000+00:00' # optional +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/create-project.md b/examples/1.9.x/server-ruby/examples/organization/create-project.md new file mode 100644 index 000000000..09b6eb1c7 --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/create-project.md @@ -0,0 +1,19 @@ +```ruby +require 'appwrite' + +include Appwrite +include Appwrite::Enums + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.create_project( + project_id: '', + name: '', + region: Region::FRA # optional +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/delete-key.md b/examples/1.9.x/server-ruby/examples/organization/delete-key.md new file mode 100644 index 000000000..2610dec09 --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/delete-key.md @@ -0,0 +1,16 @@ +```ruby +require 'appwrite' + +include Appwrite + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.delete_key( + key_id: '' +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/delete-project.md b/examples/1.9.x/server-ruby/examples/organization/delete-project.md new file mode 100644 index 000000000..c174680c1 --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/delete-project.md @@ -0,0 +1,16 @@ +```ruby +require 'appwrite' + +include Appwrite + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.delete_project( + project_id: '' +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/get-key.md b/examples/1.9.x/server-ruby/examples/organization/get-key.md new file mode 100644 index 000000000..666bbda4e --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/get-key.md @@ -0,0 +1,16 @@ +```ruby +require 'appwrite' + +include Appwrite + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.get_key( + key_id: '' +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/get-project.md b/examples/1.9.x/server-ruby/examples/organization/get-project.md new file mode 100644 index 000000000..6d0d9caa7 --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/get-project.md @@ -0,0 +1,16 @@ +```ruby +require 'appwrite' + +include Appwrite + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.get_project( + project_id: '' +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/list-keys.md b/examples/1.9.x/server-ruby/examples/organization/list-keys.md new file mode 100644 index 000000000..da580c78d --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/list-keys.md @@ -0,0 +1,17 @@ +```ruby +require 'appwrite' + +include Appwrite + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.list_keys( + queries: [], # optional + total: false # optional +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/list-projects.md b/examples/1.9.x/server-ruby/examples/organization/list-projects.md new file mode 100644 index 000000000..0a23aeded --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/list-projects.md @@ -0,0 +1,18 @@ +```ruby +require 'appwrite' + +include Appwrite + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.list_projects( + queries: [], # optional + search: '', # optional + total: false # optional +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/update-key.md b/examples/1.9.x/server-ruby/examples/organization/update-key.md new file mode 100644 index 000000000..77840b48b --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/update-key.md @@ -0,0 +1,20 @@ +```ruby +require 'appwrite' + +include Appwrite +include Appwrite::Enums + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.update_key( + key_id: '', + name: '', + scopes: [OrganizationKeyScopes::PROJECTS_READ], + expire: '2020-10-15T06:38:00.000+00:00' # optional +) +``` diff --git a/examples/1.9.x/server-ruby/examples/organization/update-project.md b/examples/1.9.x/server-ruby/examples/organization/update-project.md new file mode 100644 index 000000000..927830ee3 --- /dev/null +++ b/examples/1.9.x/server-ruby/examples/organization/update-project.md @@ -0,0 +1,17 @@ +```ruby +require 'appwrite' + +include Appwrite + +client = Client.new + .set_endpoint('') # Your API Endpoint + .set_project('') # Your project ID + .set_key('') # Your secret API key + +organization = Organization.new(client) + +result = organization.update_project( + project_id: '', + name: '' +) +``` diff --git a/examples/1.9.x/server-ruby/examples/presences/delete.md b/examples/1.9.x/server-ruby/examples/presences/delete.md index b9b015269..ef5077173 100644 --- a/examples/1.9.x/server-ruby/examples/presences/delete.md +++ b/examples/1.9.x/server-ruby/examples/presences/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/presences/get.md b/examples/1.9.x/server-ruby/examples/presences/get.md index 18307cfd8..0685abf83 100644 --- a/examples/1.9.x/server-ruby/examples/presences/get.md +++ b/examples/1.9.x/server-ruby/examples/presences/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/presences/list.md b/examples/1.9.x/server-ruby/examples/presences/list.md index ff2ad46fe..c336f0510 100644 --- a/examples/1.9.x/server-ruby/examples/presences/list.md +++ b/examples/1.9.x/server-ruby/examples/presences/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/presences/update-presence.md b/examples/1.9.x/server-ruby/examples/presences/update-presence.md index c54e6ac93..af5888aee 100644 --- a/examples/1.9.x/server-ruby/examples/presences/update-presence.md +++ b/examples/1.9.x/server-ruby/examples/presences/update-presence.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/presences/upsert.md b/examples/1.9.x/server-ruby/examples/presences/upsert.md index cc0801af5..50ec12375 100644 --- a/examples/1.9.x/server-ruby/examples/presences/upsert.md +++ b/examples/1.9.x/server-ruby/examples/presences/upsert.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-android-platform.md b/examples/1.9.x/server-ruby/examples/project/create-android-platform.md index 31c9725ed..36c1e8398 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/create-android-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-apple-platform.md b/examples/1.9.x/server-ruby/examples/project/create-apple-platform.md index d720b22c3..b463cafe2 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/create-apple-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-ruby/examples/project/create-ephemeral-key.md index 6f0d9b660..81a893bc9 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-ruby/examples/project/create-ephemeral-key.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-key.md b/examples/1.9.x/server-ruby/examples/project/create-key.md index 0721a6b24..8b58b0c39 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-key.md +++ b/examples/1.9.x/server-ruby/examples/project/create-key.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-linux-platform.md b/examples/1.9.x/server-ruby/examples/project/create-linux-platform.md index 11af48743..5f3ef4b48 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/create-linux-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-mock-phone.md b/examples/1.9.x/server-ruby/examples/project/create-mock-phone.md index 73cb15a44..d41372aed 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-ruby/examples/project/create-mock-phone.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-smtp-test.md b/examples/1.9.x/server-ruby/examples/project/create-smtp-test.md index 1e1d1eae0..cafd4e27d 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-ruby/examples/project/create-smtp-test.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-variable.md b/examples/1.9.x/server-ruby/examples/project/create-variable.md index 782cb51fe..c84113c14 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-variable.md +++ b/examples/1.9.x/server-ruby/examples/project/create-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-web-platform.md b/examples/1.9.x/server-ruby/examples/project/create-web-platform.md index 9abfe8e99..b02b74de9 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/create-web-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/create-windows-platform.md b/examples/1.9.x/server-ruby/examples/project/create-windows-platform.md index 8f53f16a8..574b42a59 100644 --- a/examples/1.9.x/server-ruby/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/create-windows-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/delete-key.md b/examples/1.9.x/server-ruby/examples/project/delete-key.md index ed80903cc..1db825ecb 100644 --- a/examples/1.9.x/server-ruby/examples/project/delete-key.md +++ b/examples/1.9.x/server-ruby/examples/project/delete-key.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/delete-mock-phone.md b/examples/1.9.x/server-ruby/examples/project/delete-mock-phone.md index 1800c0ec6..1e31a9376 100644 --- a/examples/1.9.x/server-ruby/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-ruby/examples/project/delete-mock-phone.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/delete-platform.md b/examples/1.9.x/server-ruby/examples/project/delete-platform.md index bf8c2e5ba..d8c50ab10 100644 --- a/examples/1.9.x/server-ruby/examples/project/delete-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/delete-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/delete-variable.md b/examples/1.9.x/server-ruby/examples/project/delete-variable.md index 71c5bd804..eab721492 100644 --- a/examples/1.9.x/server-ruby/examples/project/delete-variable.md +++ b/examples/1.9.x/server-ruby/examples/project/delete-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/delete.md b/examples/1.9.x/server-ruby/examples/project/delete.md index bc8b3a1a2..b254265ac 100644 --- a/examples/1.9.x/server-ruby/examples/project/delete.md +++ b/examples/1.9.x/server-ruby/examples/project/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/get-email-template.md b/examples/1.9.x/server-ruby/examples/project/get-email-template.md index 1bb1a4bc6..da326df26 100644 --- a/examples/1.9.x/server-ruby/examples/project/get-email-template.md +++ b/examples/1.9.x/server-ruby/examples/project/get-email-template.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/get-key.md b/examples/1.9.x/server-ruby/examples/project/get-key.md index 2d19eae2c..f0ccf7638 100644 --- a/examples/1.9.x/server-ruby/examples/project/get-key.md +++ b/examples/1.9.x/server-ruby/examples/project/get-key.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/get-mock-phone.md b/examples/1.9.x/server-ruby/examples/project/get-mock-phone.md index 03ef044ba..b3c4d1cfc 100644 --- a/examples/1.9.x/server-ruby/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-ruby/examples/project/get-mock-phone.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-ruby/examples/project/get-o-auth-2-provider.md index d5bde47f7..46774cd2b 100644 --- a/examples/1.9.x/server-ruby/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-ruby/examples/project/get-o-auth-2-provider.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/get-platform.md b/examples/1.9.x/server-ruby/examples/project/get-platform.md index 276901c55..3be87491d 100644 --- a/examples/1.9.x/server-ruby/examples/project/get-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/get-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/get-policy.md b/examples/1.9.x/server-ruby/examples/project/get-policy.md index 57b186f22..a1accc311 100644 --- a/examples/1.9.x/server-ruby/examples/project/get-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/get-policy.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/get-variable.md b/examples/1.9.x/server-ruby/examples/project/get-variable.md index 7bea5e9de..a72062f88 100644 --- a/examples/1.9.x/server-ruby/examples/project/get-variable.md +++ b/examples/1.9.x/server-ruby/examples/project/get-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/get.md b/examples/1.9.x/server-ruby/examples/project/get.md index 3a702dec3..a7d82899d 100644 --- a/examples/1.9.x/server-ruby/examples/project/get.md +++ b/examples/1.9.x/server-ruby/examples/project/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/list-email-templates.md b/examples/1.9.x/server-ruby/examples/project/list-email-templates.md index 3286a5db4..e4c36423e 100644 --- a/examples/1.9.x/server-ruby/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-ruby/examples/project/list-email-templates.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/list-keys.md b/examples/1.9.x/server-ruby/examples/project/list-keys.md index fe8823573..94165abd7 100644 --- a/examples/1.9.x/server-ruby/examples/project/list-keys.md +++ b/examples/1.9.x/server-ruby/examples/project/list-keys.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/list-mock-phones.md b/examples/1.9.x/server-ruby/examples/project/list-mock-phones.md index e0f0b35d5..14b4fcd96 100644 --- a/examples/1.9.x/server-ruby/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-ruby/examples/project/list-mock-phones.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-ruby/examples/project/list-o-auth-2-providers.md index b91088014..5a6eebfba 100644 --- a/examples/1.9.x/server-ruby/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-ruby/examples/project/list-o-auth-2-providers.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/list-platforms.md b/examples/1.9.x/server-ruby/examples/project/list-platforms.md index 3685c81ce..eb756a6cb 100644 --- a/examples/1.9.x/server-ruby/examples/project/list-platforms.md +++ b/examples/1.9.x/server-ruby/examples/project/list-platforms.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/list-policies.md b/examples/1.9.x/server-ruby/examples/project/list-policies.md index b5ac0bd25..fa048a0f9 100644 --- a/examples/1.9.x/server-ruby/examples/project/list-policies.md +++ b/examples/1.9.x/server-ruby/examples/project/list-policies.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/list-variables.md b/examples/1.9.x/server-ruby/examples/project/list-variables.md index a6af08204..2c97ffdcb 100644 --- a/examples/1.9.x/server-ruby/examples/project/list-variables.md +++ b/examples/1.9.x/server-ruby/examples/project/list-variables.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-android-platform.md b/examples/1.9.x/server-ruby/examples/project/update-android-platform.md index 07e177d28..7e16520a7 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/update-android-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-apple-platform.md b/examples/1.9.x/server-ruby/examples/project/update-apple-platform.md index 9faa5c138..c91dd13ac 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/update-apple-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-auth-method.md b/examples/1.9.x/server-ruby/examples/project/update-auth-method.md index a717e1051..844f3a742 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-ruby/examples/project/update-auth-method.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-ruby/examples/project/update-deny-aliased-email-policy.md index f1ce424d5..66a3ca75e 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-deny-aliased-email-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-ruby/examples/project/update-deny-disposable-email-policy.md index 39725fb80..ea52dc5d9 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-deny-disposable-email-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-ruby/examples/project/update-deny-free-email-policy.md index 7a373db60..5b16e5838 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-deny-free-email-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-email-template.md b/examples/1.9.x/server-ruby/examples/project/update-email-template.md index d845017e9..43326b814 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-email-template.md +++ b/examples/1.9.x/server-ruby/examples/project/update-email-template.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-key.md b/examples/1.9.x/server-ruby/examples/project/update-key.md index b192315d7..bb35e1e24 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-key.md +++ b/examples/1.9.x/server-ruby/examples/project/update-key.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-labels.md b/examples/1.9.x/server-ruby/examples/project/update-labels.md index f57cec70e..b34748d9c 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-labels.md +++ b/examples/1.9.x/server-ruby/examples/project/update-labels.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-linux-platform.md b/examples/1.9.x/server-ruby/examples/project/update-linux-platform.md index 9714dced8..3640a455e 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/update-linux-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-ruby/examples/project/update-membership-privacy-policy.md index e29b6b937..b441f8a3a 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-membership-privacy-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-mock-phone.md b/examples/1.9.x/server-ruby/examples/project/update-mock-phone.md index 028cb481f..097c01087 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-ruby/examples/project/update-mock-phone.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-amazon.md index 29861e692..207fc4d1e 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-amazon.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-apple.md index adb2c8d6e..383539c06 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-apple.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-auth-0.md index e8d11dbf3..b407734bb 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-auth-0.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-authentik.md index d0ec2396d..2c32f7d2c 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-authentik.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-autodesk.md index 41e2e475f..6eefeede3 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-autodesk.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-bitbucket.md index 46c7e20f4..7a10d9b1e 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-bitbucket.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-bitly.md index 12a8ab63c..79dc4c6ca 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-bitly.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-box.md index 5d390fead..81338bcb7 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-box.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-dailymotion.md index 7ae5ac7b5..29a8867de 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-dailymotion.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-discord.md index 01bacd7cb..d0a9da68c 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-discord.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-disqus.md index 38784b107..8c4be7e4c 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-disqus.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-dropbox.md index 29247c56d..8484a3c6e 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-dropbox.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-etsy.md index e3fdb3882..0c2057525 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-etsy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-facebook.md index 474e4b5a6..799d91a56 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-facebook.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-figma.md index 78ce11092..9c3e59833 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-figma.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-fusion-auth.md index 5350351e3..ed9370e1f 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-fusion-auth.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-git-hub.md index e63370f78..abf637c66 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-git-hub.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-gitlab.md index 6073bc86a..1b290d227 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-gitlab.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-google.md index be38c0f39..540c80e0e 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-google.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-keycloak.md index 63d60d122..41cb8feb6 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-keycloak.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-kick.md index 4a36804b0..e56291d94 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-kick.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-linkedin.md index 7a9109cec..98a55e7ed 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-linkedin.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-microsoft.md index 0a5563f7a..f4a5e85e3 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-microsoft.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-notion.md index f679d2872..854682d92 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-notion.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-oidc.md index 44e48c726..69ac42b9b 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-oidc.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-okta.md index a020227c6..cfc64e051 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-okta.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-paypal-sandbox.md index 34a5cbf11..badb91b81 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-paypal-sandbox.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-paypal.md index 054a5c919..f9d053f8d 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-paypal.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-podio.md index 5f58dbe8a..3724fb2e6 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-podio.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-salesforce.md index f573693fb..a7f7c2e8e 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-salesforce.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-slack.md index fb5055df9..a2af80ffa 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-slack.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-spotify.md index fc95bff49..eb9283324 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-spotify.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-stripe.md index 21db796dc..f3f6446c2 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-stripe.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-tradeshift-sandbox.md index a79d0a91e..7a6471246 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-tradeshift.md index eb4536caa..f032813fc 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-tradeshift.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-twitch.md index c110abaf2..a6d9b21a2 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-twitch.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-word-press.md index 90da17ab1..e7b70b307 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-word-press.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-yahoo.md index 8e2498a37..88bb6ddb0 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-yahoo.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-yandex.md index 73461da23..ea08b234e 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-yandex.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-zoho.md index 2fbd5fed3..54ef7ff0a 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-zoho.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-zoom.md index c61ddd9b4..eb18f57b4 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2-zoom.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2x.md index 3d06d8443..bc4216e2d 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-ruby/examples/project/update-o-auth-2x.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-ruby/examples/project/update-password-dictionary-policy.md index e3f152e60..116cbaedb 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-password-dictionary-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-password-history-policy.md b/examples/1.9.x/server-ruby/examples/project/update-password-history-policy.md index 462ab8a85..e7e853bf9 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-password-history-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-ruby/examples/project/update-password-personal-data-policy.md index 226ecc821..d8d57a569 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-password-personal-data-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-protocol.md b/examples/1.9.x/server-ruby/examples/project/update-protocol.md index 6ff3cc123..3be6313e8 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-protocol.md +++ b/examples/1.9.x/server-ruby/examples/project/update-protocol.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-service.md b/examples/1.9.x/server-ruby/examples/project/update-service.md index 0cabe6ac5..aae0fe0ff 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-service.md +++ b/examples/1.9.x/server-ruby/examples/project/update-service.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-ruby/examples/project/update-session-alert-policy.md index 2fd2fe15d..91375fd14 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-session-alert-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-ruby/examples/project/update-session-duration-policy.md index 5a27a77ca..39874f759 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-session-duration-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-ruby/examples/project/update-session-invalidation-policy.md index e48d0e318..991659c46 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-session-invalidation-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-ruby/examples/project/update-session-limit-policy.md index 38a4dfdd4..f73b08397 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-session-limit-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-smtp.md b/examples/1.9.x/server-ruby/examples/project/update-smtp.md index ca53c6b53..467cfafcd 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-smtp.md +++ b/examples/1.9.x/server-ruby/examples/project/update-smtp.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-ruby/examples/project/update-user-limit-policy.md index 1116435e5..059d1ecf8 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-ruby/examples/project/update-user-limit-policy.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-variable.md b/examples/1.9.x/server-ruby/examples/project/update-variable.md index fcfcac625..cbace574a 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-variable.md +++ b/examples/1.9.x/server-ruby/examples/project/update-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-web-platform.md b/examples/1.9.x/server-ruby/examples/project/update-web-platform.md index 46fe9cfd3..06e1b5a8a 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/update-web-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/project/update-windows-platform.md b/examples/1.9.x/server-ruby/examples/project/update-windows-platform.md index 5e2b10694..70338ca42 100644 --- a/examples/1.9.x/server-ruby/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-ruby/examples/project/update-windows-platform.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/proxy/create-api-rule.md b/examples/1.9.x/server-ruby/examples/proxy/create-api-rule.md index 8fe085ae9..da5e38bb6 100644 --- a/examples/1.9.x/server-ruby/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-ruby/examples/proxy/create-api-rule.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/proxy/create-function-rule.md b/examples/1.9.x/server-ruby/examples/proxy/create-function-rule.md index b8202a038..dff6613da 100644 --- a/examples/1.9.x/server-ruby/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-ruby/examples/proxy/create-function-rule.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-ruby/examples/proxy/create-redirect-rule.md index 5f1425e9b..4a4f6e862 100644 --- a/examples/1.9.x/server-ruby/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-ruby/examples/proxy/create-redirect-rule.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key @@ -14,7 +14,7 @@ proxy = Proxy.new(client) result = proxy.create_redirect_rule( domain: '', url: 'https://example.com', - status_code: StatusCode::MOVED_PERMANENTLY_301, + status_code: RedirectStatusCode::MOVEDPERMANENTLY, resource_id: '', resource_type: ProxyResourceType::SITE ) diff --git a/examples/1.9.x/server-ruby/examples/proxy/create-site-rule.md b/examples/1.9.x/server-ruby/examples/proxy/create-site-rule.md index 098ca4e57..e1bef2277 100644 --- a/examples/1.9.x/server-ruby/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-ruby/examples/proxy/create-site-rule.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/proxy/delete-rule.md b/examples/1.9.x/server-ruby/examples/proxy/delete-rule.md index 960cd399e..4121ff8a2 100644 --- a/examples/1.9.x/server-ruby/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-ruby/examples/proxy/delete-rule.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/proxy/get-rule.md b/examples/1.9.x/server-ruby/examples/proxy/get-rule.md index 47c03f1e2..951e356e8 100644 --- a/examples/1.9.x/server-ruby/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-ruby/examples/proxy/get-rule.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/proxy/list-rules.md b/examples/1.9.x/server-ruby/examples/proxy/list-rules.md index 858fc6c83..fc808d6d4 100644 --- a/examples/1.9.x/server-ruby/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-ruby/examples/proxy/list-rules.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/proxy/update-rule-status.md b/examples/1.9.x/server-ruby/examples/proxy/update-rule-status.md index 13192b411..0b099c725 100644 --- a/examples/1.9.x/server-ruby/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-ruby/examples/proxy/update-rule-status.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/create-deployment.md b/examples/1.9.x/server-ruby/examples/sites/create-deployment.md index 14bb26adb..58b147a06 100644 --- a/examples/1.9.x/server-ruby/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-ruby/examples/sites/create-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-ruby/examples/sites/create-duplicate-deployment.md index b0d11d214..28155967a 100644 --- a/examples/1.9.x/server-ruby/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-ruby/examples/sites/create-duplicate-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/create-template-deployment.md b/examples/1.9.x/server-ruby/examples/sites/create-template-deployment.md index 81a92c474..060e9241b 100644 --- a/examples/1.9.x/server-ruby/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-ruby/examples/sites/create-template-deployment.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/create-variable.md b/examples/1.9.x/server-ruby/examples/sites/create-variable.md index 8c878439b..cbcf5d3d7 100644 --- a/examples/1.9.x/server-ruby/examples/sites/create-variable.md +++ b/examples/1.9.x/server-ruby/examples/sites/create-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-ruby/examples/sites/create-vcs-deployment.md index bdda14c10..08f7e1427 100644 --- a/examples/1.9.x/server-ruby/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-ruby/examples/sites/create-vcs-deployment.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/create.md b/examples/1.9.x/server-ruby/examples/sites/create.md index eb28cbfee..66b458bbe 100644 --- a/examples/1.9.x/server-ruby/examples/sites/create.md +++ b/examples/1.9.x/server-ruby/examples/sites/create.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key @@ -14,8 +14,8 @@ sites = Sites.new(client) result = sites.create( site_id: '', name: '', - framework: Framework::ANALOG, - build_runtime: BuildRuntime::NODE_14_5, + framework: SiteFramework::ANALOG, + build_runtime: SiteBuildRuntime::NODE_14_5, enabled: false, # optional logging: false, # optional timeout: 1, # optional @@ -23,13 +23,15 @@ result = sites.create( build_command: '', # optional start_command: '', # optional output_directory: '', # optional - adapter: Adapter::STATIC, # optional + adapter: SiteAdapter::STATIC, # optional installation_id: '', # optional fallback_file: '', # optional provider_repository_id: '', # optional provider_branch: '', # optional provider_silent_mode: false, # optional provider_root_directory: '', # optional + provider_branches: [], # optional + provider_paths: [], # optional build_specification: '', # optional runtime_specification: '', # optional deployment_retention: 0 # optional diff --git a/examples/1.9.x/server-ruby/examples/sites/delete-deployment.md b/examples/1.9.x/server-ruby/examples/sites/delete-deployment.md index 3c381a41a..6de42ba91 100644 --- a/examples/1.9.x/server-ruby/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-ruby/examples/sites/delete-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/delete-log.md b/examples/1.9.x/server-ruby/examples/sites/delete-log.md index 65f5f67a3..921c9cc4e 100644 --- a/examples/1.9.x/server-ruby/examples/sites/delete-log.md +++ b/examples/1.9.x/server-ruby/examples/sites/delete-log.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/delete-variable.md b/examples/1.9.x/server-ruby/examples/sites/delete-variable.md index a841882db..34c24f05b 100644 --- a/examples/1.9.x/server-ruby/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-ruby/examples/sites/delete-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/delete.md b/examples/1.9.x/server-ruby/examples/sites/delete.md index 55011140f..74014d24c 100644 --- a/examples/1.9.x/server-ruby/examples/sites/delete.md +++ b/examples/1.9.x/server-ruby/examples/sites/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/get-deployment-download.md b/examples/1.9.x/server-ruby/examples/sites/get-deployment-download.md index 0fe19a3c4..96913436f 100644 --- a/examples/1.9.x/server-ruby/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-ruby/examples/sites/get-deployment-download.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/get-deployment.md b/examples/1.9.x/server-ruby/examples/sites/get-deployment.md index 585e8724b..1f2c161f9 100644 --- a/examples/1.9.x/server-ruby/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-ruby/examples/sites/get-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/get-log.md b/examples/1.9.x/server-ruby/examples/sites/get-log.md index 2b02488a1..37bc6548d 100644 --- a/examples/1.9.x/server-ruby/examples/sites/get-log.md +++ b/examples/1.9.x/server-ruby/examples/sites/get-log.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/get-variable.md b/examples/1.9.x/server-ruby/examples/sites/get-variable.md index ab2862656..5593047c3 100644 --- a/examples/1.9.x/server-ruby/examples/sites/get-variable.md +++ b/examples/1.9.x/server-ruby/examples/sites/get-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/get.md b/examples/1.9.x/server-ruby/examples/sites/get.md index b2005fb80..12b6b925e 100644 --- a/examples/1.9.x/server-ruby/examples/sites/get.md +++ b/examples/1.9.x/server-ruby/examples/sites/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/list-deployments.md b/examples/1.9.x/server-ruby/examples/sites/list-deployments.md index 11a0b002e..fbf354204 100644 --- a/examples/1.9.x/server-ruby/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-ruby/examples/sites/list-deployments.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/list-frameworks.md b/examples/1.9.x/server-ruby/examples/sites/list-frameworks.md index a33303a27..9aa7dd53b 100644 --- a/examples/1.9.x/server-ruby/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-ruby/examples/sites/list-frameworks.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/list-logs.md b/examples/1.9.x/server-ruby/examples/sites/list-logs.md index e02b3536d..44bc32d3a 100644 --- a/examples/1.9.x/server-ruby/examples/sites/list-logs.md +++ b/examples/1.9.x/server-ruby/examples/sites/list-logs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/list-specifications.md b/examples/1.9.x/server-ruby/examples/sites/list-specifications.md index 132a6e9c0..9176d74ab 100644 --- a/examples/1.9.x/server-ruby/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-ruby/examples/sites/list-specifications.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/list-variables.md b/examples/1.9.x/server-ruby/examples/sites/list-variables.md index ad4daf113..bc7c3f366 100644 --- a/examples/1.9.x/server-ruby/examples/sites/list-variables.md +++ b/examples/1.9.x/server-ruby/examples/sites/list-variables.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/list.md b/examples/1.9.x/server-ruby/examples/sites/list.md index aa32f1baa..01198c32e 100644 --- a/examples/1.9.x/server-ruby/examples/sites/list.md +++ b/examples/1.9.x/server-ruby/examples/sites/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/update-deployment-status.md b/examples/1.9.x/server-ruby/examples/sites/update-deployment-status.md index d3f2ff9ed..320c84b88 100644 --- a/examples/1.9.x/server-ruby/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-ruby/examples/sites/update-deployment-status.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/update-site-deployment.md b/examples/1.9.x/server-ruby/examples/sites/update-site-deployment.md index f52453516..652066052 100644 --- a/examples/1.9.x/server-ruby/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-ruby/examples/sites/update-site-deployment.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/update-variable.md b/examples/1.9.x/server-ruby/examples/sites/update-variable.md index f2736136c..b7d73cfd7 100644 --- a/examples/1.9.x/server-ruby/examples/sites/update-variable.md +++ b/examples/1.9.x/server-ruby/examples/sites/update-variable.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/sites/update.md b/examples/1.9.x/server-ruby/examples/sites/update.md index 2476c3caa..f449a372d 100644 --- a/examples/1.9.x/server-ruby/examples/sites/update.md +++ b/examples/1.9.x/server-ruby/examples/sites/update.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key @@ -14,7 +14,7 @@ sites = Sites.new(client) result = sites.update( site_id: '', name: '', - framework: Framework::ANALOG, + framework: SiteFramework::ANALOG, enabled: false, # optional logging: false, # optional timeout: 1, # optional @@ -22,14 +22,16 @@ result = sites.update( build_command: '', # optional start_command: '', # optional output_directory: '', # optional - build_runtime: BuildRuntime::NODE_14_5, # optional - adapter: Adapter::STATIC, # optional + build_runtime: SiteBuildRuntime::NODE_14_5, # optional + adapter: SiteAdapter::STATIC, # optional fallback_file: '', # optional installation_id: '', # optional provider_repository_id: '', # optional provider_branch: '', # optional provider_silent_mode: false, # optional provider_root_directory: '', # optional + provider_branches: [], # optional + provider_paths: [], # optional build_specification: '', # optional runtime_specification: '', # optional deployment_retention: 0 # optional diff --git a/examples/1.9.x/server-ruby/examples/storage/create-bucket.md b/examples/1.9.x/server-ruby/examples/storage/create-bucket.md index 47287c4ae..3ba906897 100644 --- a/examples/1.9.x/server-ruby/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-ruby/examples/storage/create-bucket.md @@ -7,7 +7,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/storage/create-file.md b/examples/1.9.x/server-ruby/examples/storage/create-file.md index 0e03b082e..4f49acf04 100644 --- a/examples/1.9.x/server-ruby/examples/storage/create-file.md +++ b/examples/1.9.x/server-ruby/examples/storage/create-file.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/storage/delete-bucket.md b/examples/1.9.x/server-ruby/examples/storage/delete-bucket.md index 5ff3c4bcf..f7b95e3cf 100644 --- a/examples/1.9.x/server-ruby/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-ruby/examples/storage/delete-bucket.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/storage/delete-file.md b/examples/1.9.x/server-ruby/examples/storage/delete-file.md index 1175afbb3..06baf9a7b 100644 --- a/examples/1.9.x/server-ruby/examples/storage/delete-file.md +++ b/examples/1.9.x/server-ruby/examples/storage/delete-file.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/storage/get-bucket.md b/examples/1.9.x/server-ruby/examples/storage/get-bucket.md index 7a401b8c4..60b30e6f0 100644 --- a/examples/1.9.x/server-ruby/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-ruby/examples/storage/get-bucket.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/storage/get-file-download.md b/examples/1.9.x/server-ruby/examples/storage/get-file-download.md index 33324990c..474a49c70 100644 --- a/examples/1.9.x/server-ruby/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-ruby/examples/storage/get-file-download.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/storage/get-file-preview.md b/examples/1.9.x/server-ruby/examples/storage/get-file-preview.md index 8db54e015..a098c3242 100644 --- a/examples/1.9.x/server-ruby/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-ruby/examples/storage/get-file-preview.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/storage/get-file-view.md b/examples/1.9.x/server-ruby/examples/storage/get-file-view.md index ed3e898e1..7029a6f6b 100644 --- a/examples/1.9.x/server-ruby/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-ruby/examples/storage/get-file-view.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/storage/get-file.md b/examples/1.9.x/server-ruby/examples/storage/get-file.md index dbcfcb6a8..88d2d02f0 100644 --- a/examples/1.9.x/server-ruby/examples/storage/get-file.md +++ b/examples/1.9.x/server-ruby/examples/storage/get-file.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/storage/list-buckets.md b/examples/1.9.x/server-ruby/examples/storage/list-buckets.md index 712d4ed08..539d6e696 100644 --- a/examples/1.9.x/server-ruby/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-ruby/examples/storage/list-buckets.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/storage/list-files.md b/examples/1.9.x/server-ruby/examples/storage/list-files.md index 0247abb24..6018d9dbf 100644 --- a/examples/1.9.x/server-ruby/examples/storage/list-files.md +++ b/examples/1.9.x/server-ruby/examples/storage/list-files.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/storage/update-bucket.md b/examples/1.9.x/server-ruby/examples/storage/update-bucket.md index 8c6c1962f..38f49e00e 100644 --- a/examples/1.9.x/server-ruby/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-ruby/examples/storage/update-bucket.md @@ -7,7 +7,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/storage/update-file.md b/examples/1.9.x/server-ruby/examples/storage/update-file.md index f7fa78165..4ed889cf5 100644 --- a/examples/1.9.x/server-ruby/examples/storage/update-file.md +++ b/examples/1.9.x/server-ruby/examples/storage/update-file.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-big-int-column.md index 76c95298c..9006bc313 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-big-int-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-boolean-column.md index 4b7f65f3d..3ffe07456 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-boolean-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-datetime-column.md index 6599526e2..8b65f91b0 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-datetime-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-email-column.md index cd63c7802..65f2d7231 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-email-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-enum-column.md index e04eb0d86..d05a97474 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-enum-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-float-column.md index cc3bf7873..f85c479d1 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-float-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-index.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-index.md index 7756a1699..bc9bf08ed 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-index.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-integer-column.md index 347c1e007..a10a3ccb3 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-integer-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-ip-column.md index 5b0608c13..e077d58ee 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-ip-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-line-column.md index 96e4d471e..b1b35827f 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-line-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-longtext-column.md index 0dac5eb89..b06ff1f4f 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-longtext-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-mediumtext-column.md index d7fdd0474..2cccdecba 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-mediumtext-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-operations.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-operations.md index 576e9f224..bf8bc3c95 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-operations.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-point-column.md index 8eeec983a..b31791f75 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-point-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-polygon-column.md index ab659f5cf..5e16c9004 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-polygon-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-relationship-column.md index d2ca56fcf..43ac71aaa 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-relationship-column.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-row.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-row.md index 60aa4e9da..0b58e6815 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-row.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-rows.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-rows.md index 2fc8a2b16..87a12b671 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-rows.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-string-column.md index 11782e067..e135f2a88 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-string-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-table.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-table.md index d89b2be59..8a1583ec1 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-table.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-text-column.md index e1133b194..5fbd0d16c 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-text-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-transaction.md index 61d6077cf..1ff0a5360 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-transaction.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-url-column.md index 385a830df..3e0eb3114 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-url-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/create-varchar-column.md index 04fc6c6a3..8f19a156a 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create-varchar-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/create.md b/examples/1.9.x/server-ruby/examples/tablesdb/create.md index 4eba90afb..b86eb222b 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/create.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/create.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/decrement-row-column.md index ff196104e..512a2d725 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/decrement-row-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/delete-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/delete-column.md index 0d056da10..2e5a5a96d 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/delete-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/delete-index.md b/examples/1.9.x/server-ruby/examples/tablesdb/delete-index.md index cb46c8043..859f5b00c 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/delete-index.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/delete-row.md b/examples/1.9.x/server-ruby/examples/tablesdb/delete-row.md index a6074a4f1..28aaf5177 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/delete-row.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-ruby/examples/tablesdb/delete-rows.md index 69ab29e8a..99709325c 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/delete-rows.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/delete-table.md b/examples/1.9.x/server-ruby/examples/tablesdb/delete-table.md index 30c7587c0..643df6519 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/delete-table.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-ruby/examples/tablesdb/delete-transaction.md index 336fabba5..2b93bfda7 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/delete-transaction.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/delete.md b/examples/1.9.x/server-ruby/examples/tablesdb/delete.md index 92cb3b59f..11422fbc6 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/get-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/get-column.md index 65360e193..a7940e13c 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/get-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/get-index.md b/examples/1.9.x/server-ruby/examples/tablesdb/get-index.md index 4404234dd..7255c3ac3 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/get-index.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/get-row.md b/examples/1.9.x/server-ruby/examples/tablesdb/get-row.md index f16225a2b..6e72386a6 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/get-row.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/get-table.md b/examples/1.9.x/server-ruby/examples/tablesdb/get-table.md index 9c464793f..3fbafc92d 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/get-table.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-ruby/examples/tablesdb/get-transaction.md index a9cd7d2f3..1239ed9cd 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/get-transaction.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/get.md b/examples/1.9.x/server-ruby/examples/tablesdb/get.md index b45c2ca05..2cf17ef5c 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/get.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/increment-row-column.md index 20af30ab7..ee5a030c5 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/increment-row-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/list-columns.md b/examples/1.9.x/server-ruby/examples/tablesdb/list-columns.md index 0214923ed..7cf22032b 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/list-columns.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-ruby/examples/tablesdb/list-indexes.md index 1a2a19d85..33c71687a 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/list-indexes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/list-rows.md b/examples/1.9.x/server-ruby/examples/tablesdb/list-rows.md index 6d5669317..a6ceb634d 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/list-rows.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/list-tables.md b/examples/1.9.x/server-ruby/examples/tablesdb/list-tables.md index 9517913cc..d07698d10 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/list-tables.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-ruby/examples/tablesdb/list-transactions.md index f8800dd78..17491fb43 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/list-transactions.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/list.md b/examples/1.9.x/server-ruby/examples/tablesdb/list.md index d9b52f250..c62ee6df4 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/list.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-big-int-column.md index 2ce0077b4..b21652c7b 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-big-int-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-boolean-column.md index ef9358400..e990af910 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-boolean-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-datetime-column.md index 295139beb..bff5094a7 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-datetime-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-email-column.md index 1eda71c58..977a1527d 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-email-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-enum-column.md index 0a25c964b..0aa8f47e3 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-enum-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-float-column.md index 588ad1de3..cc8e1f74b 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-float-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-integer-column.md index 28d143973..9666be8b0 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-integer-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-ip-column.md index 097a3a27f..e15a3ad4a 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-ip-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-line-column.md index f6ca84c92..f902f25a1 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-line-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-longtext-column.md index 1e7e027c3..154326de8 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-longtext-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-mediumtext-column.md index 507e4bc33..778bbd87e 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-mediumtext-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-point-column.md index 1abaabcd4..069daa908 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-point-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-polygon-column.md index 47d452b6a..d5588e012 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-polygon-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-relationship-column.md index 289d675e5..c93ecce7e 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-relationship-column.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-row.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-row.md index e801cb240..7c0125db1 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-row.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-rows.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-rows.md index 0eb800bd3..c323c4659 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-rows.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-string-column.md index ae5edad2b..8295cea0e 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-string-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-table.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-table.md index a560d718e..6816b1c36 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-table.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-text-column.md index b3d21cb59..67bcc83f5 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-text-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-transaction.md index 057bff9ff..5d7a91eb4 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-transaction.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-url-column.md index dfe2bd547..f847ffaba 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-url-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-ruby/examples/tablesdb/update-varchar-column.md index 223a68198..785c3f186 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update-varchar-column.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/update.md b/examples/1.9.x/server-ruby/examples/tablesdb/update.md index 28377a61d..22eb3977f 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/update.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/update.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-ruby/examples/tablesdb/upsert-row.md index 7802e672f..ecdfae65a 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/upsert-row.md @@ -6,7 +6,7 @@ include Appwrite::Permission include Appwrite::Role client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-ruby/examples/tablesdb/upsert-rows.md index d450971f9..065e69c42 100644 --- a/examples/1.9.x/server-ruby/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-ruby/examples/tablesdb/upsert-rows.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/teams/create-membership.md b/examples/1.9.x/server-ruby/examples/teams/create-membership.md index 7df704e71..0f1900312 100644 --- a/examples/1.9.x/server-ruby/examples/teams/create-membership.md +++ b/examples/1.9.x/server-ruby/examples/teams/create-membership.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/create.md b/examples/1.9.x/server-ruby/examples/teams/create.md index 4cec586c5..79b395cec 100644 --- a/examples/1.9.x/server-ruby/examples/teams/create.md +++ b/examples/1.9.x/server-ruby/examples/teams/create.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/delete-membership.md b/examples/1.9.x/server-ruby/examples/teams/delete-membership.md index a53369d0d..aa0fcea1b 100644 --- a/examples/1.9.x/server-ruby/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-ruby/examples/teams/delete-membership.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/delete.md b/examples/1.9.x/server-ruby/examples/teams/delete.md index 926087d69..ac3898f7c 100644 --- a/examples/1.9.x/server-ruby/examples/teams/delete.md +++ b/examples/1.9.x/server-ruby/examples/teams/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/get-membership.md b/examples/1.9.x/server-ruby/examples/teams/get-membership.md index 1e4ac1169..9e1e02598 100644 --- a/examples/1.9.x/server-ruby/examples/teams/get-membership.md +++ b/examples/1.9.x/server-ruby/examples/teams/get-membership.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/get-prefs.md b/examples/1.9.x/server-ruby/examples/teams/get-prefs.md index 13f9394d4..da51f1e6e 100644 --- a/examples/1.9.x/server-ruby/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-ruby/examples/teams/get-prefs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/get.md b/examples/1.9.x/server-ruby/examples/teams/get.md index 46c30add2..05d611cb9 100644 --- a/examples/1.9.x/server-ruby/examples/teams/get.md +++ b/examples/1.9.x/server-ruby/examples/teams/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/list-memberships.md b/examples/1.9.x/server-ruby/examples/teams/list-memberships.md index af1145cb5..4f73a8d26 100644 --- a/examples/1.9.x/server-ruby/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-ruby/examples/teams/list-memberships.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/list.md b/examples/1.9.x/server-ruby/examples/teams/list.md index dcebb72db..686431de0 100644 --- a/examples/1.9.x/server-ruby/examples/teams/list.md +++ b/examples/1.9.x/server-ruby/examples/teams/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/update-membership-status.md b/examples/1.9.x/server-ruby/examples/teams/update-membership-status.md index 4762f5aa6..0a21e8eaf 100644 --- a/examples/1.9.x/server-ruby/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-ruby/examples/teams/update-membership-status.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/update-membership.md b/examples/1.9.x/server-ruby/examples/teams/update-membership.md index f94e3879e..d8d4e05e9 100644 --- a/examples/1.9.x/server-ruby/examples/teams/update-membership.md +++ b/examples/1.9.x/server-ruby/examples/teams/update-membership.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/update-name.md b/examples/1.9.x/server-ruby/examples/teams/update-name.md index 7c2fda631..64b75df1f 100644 --- a/examples/1.9.x/server-ruby/examples/teams/update-name.md +++ b/examples/1.9.x/server-ruby/examples/teams/update-name.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/teams/update-prefs.md b/examples/1.9.x/server-ruby/examples/teams/update-prefs.md index 4410e91a6..d3093a4e3 100644 --- a/examples/1.9.x/server-ruby/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-ruby/examples/teams/update-prefs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_session('') # The user session to authenticate with diff --git a/examples/1.9.x/server-ruby/examples/tokens/create-file-token.md b/examples/1.9.x/server-ruby/examples/tokens/create-file-token.md index c734e65f2..c45402eb3 100644 --- a/examples/1.9.x/server-ruby/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-ruby/examples/tokens/create-file-token.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tokens/delete.md b/examples/1.9.x/server-ruby/examples/tokens/delete.md index c17c4f452..29b2a3e4c 100644 --- a/examples/1.9.x/server-ruby/examples/tokens/delete.md +++ b/examples/1.9.x/server-ruby/examples/tokens/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tokens/get.md b/examples/1.9.x/server-ruby/examples/tokens/get.md index b4342f660..5372e269b 100644 --- a/examples/1.9.x/server-ruby/examples/tokens/get.md +++ b/examples/1.9.x/server-ruby/examples/tokens/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tokens/list.md b/examples/1.9.x/server-ruby/examples/tokens/list.md index c407e970c..a770c551a 100644 --- a/examples/1.9.x/server-ruby/examples/tokens/list.md +++ b/examples/1.9.x/server-ruby/examples/tokens/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/tokens/update.md b/examples/1.9.x/server-ruby/examples/tokens/update.md index 84a9ddfad..ced726892 100644 --- a/examples/1.9.x/server-ruby/examples/tokens/update.md +++ b/examples/1.9.x/server-ruby/examples/tokens/update.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/usage/list-events.md b/examples/1.9.x/server-ruby/examples/usage/list-events.md index ec26a6dbd..d61ad2199 100644 --- a/examples/1.9.x/server-ruby/examples/usage/list-events.md +++ b/examples/1.9.x/server-ruby/examples/usage/list-events.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/usage/list-gauges.md b/examples/1.9.x/server-ruby/examples/usage/list-gauges.md index ba3061fbe..8b969cfec 100644 --- a/examples/1.9.x/server-ruby/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-ruby/examples/usage/list-gauges.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-argon-2-user.md b/examples/1.9.x/server-ruby/examples/users/create-argon-2-user.md index 26ad7f224..0523370f0 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-ruby/examples/users/create-argon-2-user.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-ruby/examples/users/create-bcrypt-user.md index 9e3fd9bab..306ad2be4 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-ruby/examples/users/create-bcrypt-user.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-jwt.md b/examples/1.9.x/server-ruby/examples/users/create-jwt.md index 7df95fb7b..10d8f064c 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-jwt.md +++ b/examples/1.9.x/server-ruby/examples/users/create-jwt.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-md-5-user.md b/examples/1.9.x/server-ruby/examples/users/create-md-5-user.md index 8ad1535fe..c9341e46a 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-ruby/examples/users/create-md-5-user.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-ruby/examples/users/create-mfa-recovery-codes.md index e2763ebfd..14b1e7341 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-ruby/examples/users/create-mfa-recovery-codes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-ruby/examples/users/create-ph-pass-user.md index c4e1b541a..2f3e84260 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-ruby/examples/users/create-ph-pass-user.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-ruby/examples/users/create-scrypt-modified-user.md index 42138bd7f..ca599f25d 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-ruby/examples/users/create-scrypt-modified-user.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-scrypt-user.md b/examples/1.9.x/server-ruby/examples/users/create-scrypt-user.md index 91a200c12..4fe35ffa1 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-ruby/examples/users/create-scrypt-user.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-session.md b/examples/1.9.x/server-ruby/examples/users/create-session.md index e44a0d845..53a67a3eb 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-session.md +++ b/examples/1.9.x/server-ruby/examples/users/create-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-sha-user.md b/examples/1.9.x/server-ruby/examples/users/create-sha-user.md index 6dbdece85..e97a13427 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-ruby/examples/users/create-sha-user.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-target.md b/examples/1.9.x/server-ruby/examples/users/create-target.md index 624b56f9d..a64f9257b 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-target.md +++ b/examples/1.9.x/server-ruby/examples/users/create-target.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create-token.md b/examples/1.9.x/server-ruby/examples/users/create-token.md index fbcbc6eeb..eb957f685 100644 --- a/examples/1.9.x/server-ruby/examples/users/create-token.md +++ b/examples/1.9.x/server-ruby/examples/users/create-token.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/create.md b/examples/1.9.x/server-ruby/examples/users/create.md index 06e308890..8fbaf905b 100644 --- a/examples/1.9.x/server-ruby/examples/users/create.md +++ b/examples/1.9.x/server-ruby/examples/users/create.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/delete-identity.md b/examples/1.9.x/server-ruby/examples/users/delete-identity.md index 36625931b..aadeb7c49 100644 --- a/examples/1.9.x/server-ruby/examples/users/delete-identity.md +++ b/examples/1.9.x/server-ruby/examples/users/delete-identity.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-ruby/examples/users/delete-mfa-authenticator.md index 94af17b8b..3273d0946 100644 --- a/examples/1.9.x/server-ruby/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-ruby/examples/users/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ include Appwrite include Appwrite::Enums client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/delete-session.md b/examples/1.9.x/server-ruby/examples/users/delete-session.md index e4f55cf0f..604bb3b4f 100644 --- a/examples/1.9.x/server-ruby/examples/users/delete-session.md +++ b/examples/1.9.x/server-ruby/examples/users/delete-session.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/delete-sessions.md b/examples/1.9.x/server-ruby/examples/users/delete-sessions.md index 578366c54..206fb410e 100644 --- a/examples/1.9.x/server-ruby/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-ruby/examples/users/delete-sessions.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/delete-target.md b/examples/1.9.x/server-ruby/examples/users/delete-target.md index 08b774487..e24649ff4 100644 --- a/examples/1.9.x/server-ruby/examples/users/delete-target.md +++ b/examples/1.9.x/server-ruby/examples/users/delete-target.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/delete.md b/examples/1.9.x/server-ruby/examples/users/delete.md index 600fe7729..4da423776 100644 --- a/examples/1.9.x/server-ruby/examples/users/delete.md +++ b/examples/1.9.x/server-ruby/examples/users/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-ruby/examples/users/get-mfa-recovery-codes.md index 92e172291..cf177b907 100644 --- a/examples/1.9.x/server-ruby/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-ruby/examples/users/get-mfa-recovery-codes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/get-prefs.md b/examples/1.9.x/server-ruby/examples/users/get-prefs.md index 58271f0e0..e36ff2531 100644 --- a/examples/1.9.x/server-ruby/examples/users/get-prefs.md +++ b/examples/1.9.x/server-ruby/examples/users/get-prefs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/get-target.md b/examples/1.9.x/server-ruby/examples/users/get-target.md index d7d8a0976..f8ffc7c73 100644 --- a/examples/1.9.x/server-ruby/examples/users/get-target.md +++ b/examples/1.9.x/server-ruby/examples/users/get-target.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/get.md b/examples/1.9.x/server-ruby/examples/users/get.md index b54a2a685..7564dd55d 100644 --- a/examples/1.9.x/server-ruby/examples/users/get.md +++ b/examples/1.9.x/server-ruby/examples/users/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/list-identities.md b/examples/1.9.x/server-ruby/examples/users/list-identities.md index cbfdaa4fb..581eaa782 100644 --- a/examples/1.9.x/server-ruby/examples/users/list-identities.md +++ b/examples/1.9.x/server-ruby/examples/users/list-identities.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/list-logs.md b/examples/1.9.x/server-ruby/examples/users/list-logs.md index dd9809e31..a5db5e289 100644 --- a/examples/1.9.x/server-ruby/examples/users/list-logs.md +++ b/examples/1.9.x/server-ruby/examples/users/list-logs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/list-memberships.md b/examples/1.9.x/server-ruby/examples/users/list-memberships.md index 15f3bb817..1eeb74813 100644 --- a/examples/1.9.x/server-ruby/examples/users/list-memberships.md +++ b/examples/1.9.x/server-ruby/examples/users/list-memberships.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/list-mfa-factors.md b/examples/1.9.x/server-ruby/examples/users/list-mfa-factors.md index ac66333fd..14a39d712 100644 --- a/examples/1.9.x/server-ruby/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-ruby/examples/users/list-mfa-factors.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/list-sessions.md b/examples/1.9.x/server-ruby/examples/users/list-sessions.md index f32fb1184..d2cff85c2 100644 --- a/examples/1.9.x/server-ruby/examples/users/list-sessions.md +++ b/examples/1.9.x/server-ruby/examples/users/list-sessions.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/list-targets.md b/examples/1.9.x/server-ruby/examples/users/list-targets.md index ac582c3be..532206e1e 100644 --- a/examples/1.9.x/server-ruby/examples/users/list-targets.md +++ b/examples/1.9.x/server-ruby/examples/users/list-targets.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/list.md b/examples/1.9.x/server-ruby/examples/users/list.md index e3ee048e6..ec438b6e8 100644 --- a/examples/1.9.x/server-ruby/examples/users/list.md +++ b/examples/1.9.x/server-ruby/examples/users/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-email-verification.md b/examples/1.9.x/server-ruby/examples/users/update-email-verification.md index 32bd4dcb3..9138ff322 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-ruby/examples/users/update-email-verification.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-email.md b/examples/1.9.x/server-ruby/examples/users/update-email.md index 0d8e7d461..53aa13fc8 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-email.md +++ b/examples/1.9.x/server-ruby/examples/users/update-email.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-impersonator.md b/examples/1.9.x/server-ruby/examples/users/update-impersonator.md index b11d61f49..a58f255cc 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-ruby/examples/users/update-impersonator.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-labels.md b/examples/1.9.x/server-ruby/examples/users/update-labels.md index 0110cb9e5..b396f578c 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-labels.md +++ b/examples/1.9.x/server-ruby/examples/users/update-labels.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-ruby/examples/users/update-mfa-recovery-codes.md index ca2a9adf7..918448ce5 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-ruby/examples/users/update-mfa-recovery-codes.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-mfa.md b/examples/1.9.x/server-ruby/examples/users/update-mfa.md index d46a61334..9b200c39d 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-mfa.md +++ b/examples/1.9.x/server-ruby/examples/users/update-mfa.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-name.md b/examples/1.9.x/server-ruby/examples/users/update-name.md index 79bd5c2d8..d8a96ac0a 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-name.md +++ b/examples/1.9.x/server-ruby/examples/users/update-name.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-password.md b/examples/1.9.x/server-ruby/examples/users/update-password.md index b7779e638..ea796039a 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-password.md +++ b/examples/1.9.x/server-ruby/examples/users/update-password.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-phone-verification.md b/examples/1.9.x/server-ruby/examples/users/update-phone-verification.md index 0dfed2c86..eb93c638f 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-ruby/examples/users/update-phone-verification.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-phone.md b/examples/1.9.x/server-ruby/examples/users/update-phone.md index 2788ed071..9a9294cf1 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-phone.md +++ b/examples/1.9.x/server-ruby/examples/users/update-phone.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-prefs.md b/examples/1.9.x/server-ruby/examples/users/update-prefs.md index 452fe9aa2..46eeb0387 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-prefs.md +++ b/examples/1.9.x/server-ruby/examples/users/update-prefs.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-status.md b/examples/1.9.x/server-ruby/examples/users/update-status.md index 75b7f375b..3e9e83bc6 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-status.md +++ b/examples/1.9.x/server-ruby/examples/users/update-status.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/users/update-target.md b/examples/1.9.x/server-ruby/examples/users/update-target.md index 9c4c1c091..73b359b52 100644 --- a/examples/1.9.x/server-ruby/examples/users/update-target.md +++ b/examples/1.9.x/server-ruby/examples/users/update-target.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/webhooks/create.md b/examples/1.9.x/server-ruby/examples/webhooks/create.md index e55391087..ef843674d 100644 --- a/examples/1.9.x/server-ruby/examples/webhooks/create.md +++ b/examples/1.9.x/server-ruby/examples/webhooks/create.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/webhooks/delete.md b/examples/1.9.x/server-ruby/examples/webhooks/delete.md index 5951b7cab..cbcf32b41 100644 --- a/examples/1.9.x/server-ruby/examples/webhooks/delete.md +++ b/examples/1.9.x/server-ruby/examples/webhooks/delete.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/webhooks/get.md b/examples/1.9.x/server-ruby/examples/webhooks/get.md index d81c12995..26b134c19 100644 --- a/examples/1.9.x/server-ruby/examples/webhooks/get.md +++ b/examples/1.9.x/server-ruby/examples/webhooks/get.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/webhooks/list.md b/examples/1.9.x/server-ruby/examples/webhooks/list.md index 541604073..6ac007284 100644 --- a/examples/1.9.x/server-ruby/examples/webhooks/list.md +++ b/examples/1.9.x/server-ruby/examples/webhooks/list.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/webhooks/update-secret.md b/examples/1.9.x/server-ruby/examples/webhooks/update-secret.md index 7aadac164..a63aa28cc 100644 --- a/examples/1.9.x/server-ruby/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-ruby/examples/webhooks/update-secret.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-ruby/examples/webhooks/update.md b/examples/1.9.x/server-ruby/examples/webhooks/update.md index 1de7c044a..c3402d701 100644 --- a/examples/1.9.x/server-ruby/examples/webhooks/update.md +++ b/examples/1.9.x/server-ruby/examples/webhooks/update.md @@ -4,7 +4,7 @@ require 'appwrite' include Appwrite client = Client.new - .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint + .set_endpoint('') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key diff --git a/examples/1.9.x/server-rust/examples/account/create-anonymous-session.md b/examples/1.9.x/server-rust/examples/account/create-anonymous-session.md index 0d1b46780..c9b042ea9 100644 --- a/examples/1.9.x/server-rust/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-rust/examples/account/create-anonymous-session.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-email-password-session.md b/examples/1.9.x/server-rust/examples/account/create-email-password-session.md index ac72db12b..a6ca84a05 100644 --- a/examples/1.9.x/server-rust/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-rust/examples/account/create-email-password-session.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-email-token.md b/examples/1.9.x/server-rust/examples/account/create-email-token.md index 4c9d6f4c2..a3ec00c32 100644 --- a/examples/1.9.x/server-rust/examples/account/create-email-token.md +++ b/examples/1.9.x/server-rust/examples/account/create-email-token.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-email-verification.md b/examples/1.9.x/server-rust/examples/account/create-email-verification.md index 044e55088..2d64dabea 100644 --- a/examples/1.9.x/server-rust/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-rust/examples/account/create-email-verification.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-jwt.md b/examples/1.9.x/server-rust/examples/account/create-jwt.md index 206febdec..0fe7a3832 100644 --- a/examples/1.9.x/server-rust/examples/account/create-jwt.md +++ b/examples/1.9.x/server-rust/examples/account/create-jwt.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-magic-url-token.md b/examples/1.9.x/server-rust/examples/account/create-magic-url-token.md index 26f6992ed..eb91cbc44 100644 --- a/examples/1.9.x/server-rust/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-rust/examples/account/create-magic-url-token.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-rust/examples/account/create-mfa-authenticator.md index 1c44d6bd4..5a175c630 100644 --- a/examples/1.9.x/server-rust/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-rust/examples/account/create-mfa-authenticator.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-rust/examples/account/create-mfa-challenge.md index b9a315b89..91adb083d 100644 --- a/examples/1.9.x/server-rust/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-rust/examples/account/create-mfa-challenge.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-rust/examples/account/create-mfa-recovery-codes.md index 6bee9337a..d3fcc4c19 100644 --- a/examples/1.9.x/server-rust/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-rust/examples/account/create-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-rust/examples/account/create-o-auth-2-token.md index 3fdb0c527..4d30369a5 100644 --- a/examples/1.9.x/server-rust/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-rust/examples/account/create-o-auth-2-token.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-phone-token.md b/examples/1.9.x/server-rust/examples/account/create-phone-token.md index 870d1698b..342839b91 100644 --- a/examples/1.9.x/server-rust/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-rust/examples/account/create-phone-token.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-phone-verification.md b/examples/1.9.x/server-rust/examples/account/create-phone-verification.md index 4032be23e..4288900cb 100644 --- a/examples/1.9.x/server-rust/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-rust/examples/account/create-phone-verification.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-recovery.md b/examples/1.9.x/server-rust/examples/account/create-recovery.md index ddd6c8d38..93a8c5cda 100644 --- a/examples/1.9.x/server-rust/examples/account/create-recovery.md +++ b/examples/1.9.x/server-rust/examples/account/create-recovery.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-session.md b/examples/1.9.x/server-rust/examples/account/create-session.md index 70f220957..6abbe8223 100644 --- a/examples/1.9.x/server-rust/examples/account/create-session.md +++ b/examples/1.9.x/server-rust/examples/account/create-session.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create-verification.md b/examples/1.9.x/server-rust/examples/account/create-verification.md index 2a6e2e626..d2cf47160 100644 --- a/examples/1.9.x/server-rust/examples/account/create-verification.md +++ b/examples/1.9.x/server-rust/examples/account/create-verification.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/create.md b/examples/1.9.x/server-rust/examples/account/create.md index 27143111a..f043b8af4 100644 --- a/examples/1.9.x/server-rust/examples/account/create.md +++ b/examples/1.9.x/server-rust/examples/account/create.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/delete-identity.md b/examples/1.9.x/server-rust/examples/account/delete-identity.md index 9e0de14d6..bf6932c04 100644 --- a/examples/1.9.x/server-rust/examples/account/delete-identity.md +++ b/examples/1.9.x/server-rust/examples/account/delete-identity.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-rust/examples/account/delete-mfa-authenticator.md index 93e8f2d4f..0c12ccf80 100644 --- a/examples/1.9.x/server-rust/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-rust/examples/account/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/delete-session.md b/examples/1.9.x/server-rust/examples/account/delete-session.md index 5e1cef5f8..b7b1445c6 100644 --- a/examples/1.9.x/server-rust/examples/account/delete-session.md +++ b/examples/1.9.x/server-rust/examples/account/delete-session.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/delete-sessions.md b/examples/1.9.x/server-rust/examples/account/delete-sessions.md index ee557af60..6924e798e 100644 --- a/examples/1.9.x/server-rust/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-rust/examples/account/delete-sessions.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-rust/examples/account/get-mfa-recovery-codes.md index 453b3854c..53d5c166f 100644 --- a/examples/1.9.x/server-rust/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-rust/examples/account/get-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/get-prefs.md b/examples/1.9.x/server-rust/examples/account/get-prefs.md index dad334c7a..138dca22c 100644 --- a/examples/1.9.x/server-rust/examples/account/get-prefs.md +++ b/examples/1.9.x/server-rust/examples/account/get-prefs.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/get-session.md b/examples/1.9.x/server-rust/examples/account/get-session.md index e0659e942..54013c02a 100644 --- a/examples/1.9.x/server-rust/examples/account/get-session.md +++ b/examples/1.9.x/server-rust/examples/account/get-session.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/get.md b/examples/1.9.x/server-rust/examples/account/get.md index c132a21ed..c9d33c031 100644 --- a/examples/1.9.x/server-rust/examples/account/get.md +++ b/examples/1.9.x/server-rust/examples/account/get.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/list-identities.md b/examples/1.9.x/server-rust/examples/account/list-identities.md index 59c6bfbc7..e53e7effe 100644 --- a/examples/1.9.x/server-rust/examples/account/list-identities.md +++ b/examples/1.9.x/server-rust/examples/account/list-identities.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/list-logs.md b/examples/1.9.x/server-rust/examples/account/list-logs.md index 8f332bfdf..1fa84f60c 100644 --- a/examples/1.9.x/server-rust/examples/account/list-logs.md +++ b/examples/1.9.x/server-rust/examples/account/list-logs.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/list-mfa-factors.md b/examples/1.9.x/server-rust/examples/account/list-mfa-factors.md index 65e05f467..371ed1669 100644 --- a/examples/1.9.x/server-rust/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-rust/examples/account/list-mfa-factors.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/list-sessions.md b/examples/1.9.x/server-rust/examples/account/list-sessions.md index 5a2af5974..4f18052eb 100644 --- a/examples/1.9.x/server-rust/examples/account/list-sessions.md +++ b/examples/1.9.x/server-rust/examples/account/list-sessions.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-email-verification.md b/examples/1.9.x/server-rust/examples/account/update-email-verification.md index ce125bdf3..9e147c311 100644 --- a/examples/1.9.x/server-rust/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-rust/examples/account/update-email-verification.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-email.md b/examples/1.9.x/server-rust/examples/account/update-email.md index 054da7721..616af5dd9 100644 --- a/examples/1.9.x/server-rust/examples/account/update-email.md +++ b/examples/1.9.x/server-rust/examples/account/update-email.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-magic-url-session.md b/examples/1.9.x/server-rust/examples/account/update-magic-url-session.md index a540c4c7e..ec4b78e9b 100644 --- a/examples/1.9.x/server-rust/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-rust/examples/account/update-magic-url-session.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-rust/examples/account/update-mfa-authenticator.md index 32610e12a..cae5dc8d1 100644 --- a/examples/1.9.x/server-rust/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-rust/examples/account/update-mfa-authenticator.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-rust/examples/account/update-mfa-challenge.md index d903fa60d..68cba6326 100644 --- a/examples/1.9.x/server-rust/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-rust/examples/account/update-mfa-challenge.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-rust/examples/account/update-mfa-recovery-codes.md index df849273b..9d6d69de8 100644 --- a/examples/1.9.x/server-rust/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-rust/examples/account/update-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-mfa.md b/examples/1.9.x/server-rust/examples/account/update-mfa.md index d9769d9d2..3986711a6 100644 --- a/examples/1.9.x/server-rust/examples/account/update-mfa.md +++ b/examples/1.9.x/server-rust/examples/account/update-mfa.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-name.md b/examples/1.9.x/server-rust/examples/account/update-name.md index 46ceffc2f..619adbf0d 100644 --- a/examples/1.9.x/server-rust/examples/account/update-name.md +++ b/examples/1.9.x/server-rust/examples/account/update-name.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-password.md b/examples/1.9.x/server-rust/examples/account/update-password.md index c6c4d5ca0..36e34f7cc 100644 --- a/examples/1.9.x/server-rust/examples/account/update-password.md +++ b/examples/1.9.x/server-rust/examples/account/update-password.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-phone-session.md b/examples/1.9.x/server-rust/examples/account/update-phone-session.md index cd39e140f..36ee21c85 100644 --- a/examples/1.9.x/server-rust/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-rust/examples/account/update-phone-session.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-phone-verification.md b/examples/1.9.x/server-rust/examples/account/update-phone-verification.md index 5c6beca90..a770b706b 100644 --- a/examples/1.9.x/server-rust/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-rust/examples/account/update-phone-verification.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-phone.md b/examples/1.9.x/server-rust/examples/account/update-phone.md index f17c0f5c5..1d52827bc 100644 --- a/examples/1.9.x/server-rust/examples/account/update-phone.md +++ b/examples/1.9.x/server-rust/examples/account/update-phone.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-prefs.md b/examples/1.9.x/server-rust/examples/account/update-prefs.md index 830abd9e0..d9022a34c 100644 --- a/examples/1.9.x/server-rust/examples/account/update-prefs.md +++ b/examples/1.9.x/server-rust/examples/account/update-prefs.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-recovery.md b/examples/1.9.x/server-rust/examples/account/update-recovery.md index 8c1c814a5..4ee08f50d 100644 --- a/examples/1.9.x/server-rust/examples/account/update-recovery.md +++ b/examples/1.9.x/server-rust/examples/account/update-recovery.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-session.md b/examples/1.9.x/server-rust/examples/account/update-session.md index 8ed7a2293..17ad48f2f 100644 --- a/examples/1.9.x/server-rust/examples/account/update-session.md +++ b/examples/1.9.x/server-rust/examples/account/update-session.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-status.md b/examples/1.9.x/server-rust/examples/account/update-status.md index 66ddfe17c..9f054729b 100644 --- a/examples/1.9.x/server-rust/examples/account/update-status.md +++ b/examples/1.9.x/server-rust/examples/account/update-status.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/account/update-verification.md b/examples/1.9.x/server-rust/examples/account/update-verification.md index cbe7e8447..71a69fa40 100644 --- a/examples/1.9.x/server-rust/examples/account/update-verification.md +++ b/examples/1.9.x/server-rust/examples/account/update-verification.md @@ -5,7 +5,7 @@ use appwrite::services::Account; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/activities/get-event.md b/examples/1.9.x/server-rust/examples/activities/get-event.md index afeaae165..12ab42af5 100644 --- a/examples/1.9.x/server-rust/examples/activities/get-event.md +++ b/examples/1.9.x/server-rust/examples/activities/get-event.md @@ -5,7 +5,7 @@ use appwrite::services::Activities; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/activities/list-events.md b/examples/1.9.x/server-rust/examples/activities/list-events.md index 6d12f87d6..dcba5a5f9 100644 --- a/examples/1.9.x/server-rust/examples/activities/list-events.md +++ b/examples/1.9.x/server-rust/examples/activities/list-events.md @@ -5,7 +5,7 @@ use appwrite::services::Activities; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/advisor/delete-report.md b/examples/1.9.x/server-rust/examples/advisor/delete-report.md index e0a205aae..93e7c1208 100644 --- a/examples/1.9.x/server-rust/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-rust/examples/advisor/delete-report.md @@ -5,7 +5,7 @@ use appwrite::services::Advisor; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/advisor/get-insight.md b/examples/1.9.x/server-rust/examples/advisor/get-insight.md index 7926f5f84..c1c217749 100644 --- a/examples/1.9.x/server-rust/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-rust/examples/advisor/get-insight.md @@ -5,7 +5,7 @@ use appwrite::services::Advisor; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/advisor/get-report.md b/examples/1.9.x/server-rust/examples/advisor/get-report.md index 9cfe34e79..071390483 100644 --- a/examples/1.9.x/server-rust/examples/advisor/get-report.md +++ b/examples/1.9.x/server-rust/examples/advisor/get-report.md @@ -5,7 +5,7 @@ use appwrite::services::Advisor; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/advisor/list-insights.md b/examples/1.9.x/server-rust/examples/advisor/list-insights.md index a67a7ddc3..fba711e7d 100644 --- a/examples/1.9.x/server-rust/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-rust/examples/advisor/list-insights.md @@ -5,7 +5,7 @@ use appwrite::services::Advisor; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/advisor/list-reports.md b/examples/1.9.x/server-rust/examples/advisor/list-reports.md index f0620dc50..ebc352bb6 100644 --- a/examples/1.9.x/server-rust/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-rust/examples/advisor/list-reports.md @@ -5,7 +5,7 @@ use appwrite::services::Advisor; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/avatars/get-browser.md b/examples/1.9.x/server-rust/examples/avatars/get-browser.md index e61031416..aac1e07a2 100644 --- a/examples/1.9.x/server-rust/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-rust/examples/avatars/get-browser.md @@ -5,7 +5,7 @@ use appwrite::services::Avatars; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/avatars/get-credit-card.md b/examples/1.9.x/server-rust/examples/avatars/get-credit-card.md index 2fb6fef00..5505e44c6 100644 --- a/examples/1.9.x/server-rust/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-rust/examples/avatars/get-credit-card.md @@ -5,7 +5,7 @@ use appwrite::services::Avatars; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/avatars/get-favicon.md b/examples/1.9.x/server-rust/examples/avatars/get-favicon.md index 74c33216a..35e382f95 100644 --- a/examples/1.9.x/server-rust/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-rust/examples/avatars/get-favicon.md @@ -5,7 +5,7 @@ use appwrite::services::Avatars; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/avatars/get-flag.md b/examples/1.9.x/server-rust/examples/avatars/get-flag.md index 621d2c13e..2a513c193 100644 --- a/examples/1.9.x/server-rust/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-rust/examples/avatars/get-flag.md @@ -5,7 +5,7 @@ use appwrite::services::Avatars; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/avatars/get-image.md b/examples/1.9.x/server-rust/examples/avatars/get-image.md index b7175c7bf..f19361860 100644 --- a/examples/1.9.x/server-rust/examples/avatars/get-image.md +++ b/examples/1.9.x/server-rust/examples/avatars/get-image.md @@ -5,7 +5,7 @@ use appwrite::services::Avatars; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/avatars/get-initials.md b/examples/1.9.x/server-rust/examples/avatars/get-initials.md index 47209751c..43d62995e 100644 --- a/examples/1.9.x/server-rust/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-rust/examples/avatars/get-initials.md @@ -5,7 +5,7 @@ use appwrite::services::Avatars; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/avatars/get-qr.md b/examples/1.9.x/server-rust/examples/avatars/get-qr.md index 585f63a04..65a9f2cb8 100644 --- a/examples/1.9.x/server-rust/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-rust/examples/avatars/get-qr.md @@ -5,7 +5,7 @@ use appwrite::services::Avatars; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/avatars/get-screenshot.md b/examples/1.9.x/server-rust/examples/avatars/get-screenshot.md index 7ccbc8693..81674c535 100644 --- a/examples/1.9.x/server-rust/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-rust/examples/avatars/get-screenshot.md @@ -5,7 +5,7 @@ use appwrite::services::Avatars; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with @@ -17,7 +17,7 @@ async fn main() -> Result<(), Box> { Some(1920), // optional Some(1080), // optional Some(2), // optional - Some(appwrite::enums::Theme::Dark), // optional + Some(appwrite::enums::BrowserTheme::Dark), // optional Some("Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15"), // optional Some(true), // optional Some("en-US"), // optional diff --git a/examples/1.9.x/server-rust/examples/backups/create-archive.md b/examples/1.9.x/server-rust/examples/backups/create-archive.md index 0fef16eba..f2ddaea6b 100644 --- a/examples/1.9.x/server-rust/examples/backups/create-archive.md +++ b/examples/1.9.x/server-rust/examples/backups/create-archive.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/create-policy.md b/examples/1.9.x/server-rust/examples/backups/create-policy.md index a732e2741..9ab18492b 100644 --- a/examples/1.9.x/server-rust/examples/backups/create-policy.md +++ b/examples/1.9.x/server-rust/examples/backups/create-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/create-restoration.md b/examples/1.9.x/server-rust/examples/backups/create-restoration.md index b11c70699..f4e15c353 100644 --- a/examples/1.9.x/server-rust/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-rust/examples/backups/create-restoration.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/delete-archive.md b/examples/1.9.x/server-rust/examples/backups/delete-archive.md index 5929752f9..acd9cfc03 100644 --- a/examples/1.9.x/server-rust/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-rust/examples/backups/delete-archive.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/delete-policy.md b/examples/1.9.x/server-rust/examples/backups/delete-policy.md index 2368cc217..88407b8b3 100644 --- a/examples/1.9.x/server-rust/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-rust/examples/backups/delete-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/get-archive.md b/examples/1.9.x/server-rust/examples/backups/get-archive.md index c9a745e36..786a3ebbd 100644 --- a/examples/1.9.x/server-rust/examples/backups/get-archive.md +++ b/examples/1.9.x/server-rust/examples/backups/get-archive.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/get-policy.md b/examples/1.9.x/server-rust/examples/backups/get-policy.md index 45375894a..149dec97d 100644 --- a/examples/1.9.x/server-rust/examples/backups/get-policy.md +++ b/examples/1.9.x/server-rust/examples/backups/get-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/get-restoration.md b/examples/1.9.x/server-rust/examples/backups/get-restoration.md index 8a6c96c02..9fc6e3980 100644 --- a/examples/1.9.x/server-rust/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-rust/examples/backups/get-restoration.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/list-archives.md b/examples/1.9.x/server-rust/examples/backups/list-archives.md index ba01f5895..0530fb2c9 100644 --- a/examples/1.9.x/server-rust/examples/backups/list-archives.md +++ b/examples/1.9.x/server-rust/examples/backups/list-archives.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/list-policies.md b/examples/1.9.x/server-rust/examples/backups/list-policies.md index 16313ac6e..78e85f5fe 100644 --- a/examples/1.9.x/server-rust/examples/backups/list-policies.md +++ b/examples/1.9.x/server-rust/examples/backups/list-policies.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/list-restorations.md b/examples/1.9.x/server-rust/examples/backups/list-restorations.md index ef03b0203..e15c9835a 100644 --- a/examples/1.9.x/server-rust/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-rust/examples/backups/list-restorations.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/backups/update-policy.md b/examples/1.9.x/server-rust/examples/backups/update-policy.md index e86b8a2d8..83448396a 100644 --- a/examples/1.9.x/server-rust/examples/backups/update-policy.md +++ b/examples/1.9.x/server-rust/examples/backups/update-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Backups; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-big-int-attribute.md index c6d91a87e..8d821e949 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-big-int-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-boolean-attribute.md index 33210215e..fec13bbce 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-boolean-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-collection.md b/examples/1.9.x/server-rust/examples/databases/create-collection.md index 57bf5f810..329f7f98a 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-collection.md +++ b/examples/1.9.x/server-rust/examples/databases/create-collection.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-datetime-attribute.md index b88be51e6..df5697e65 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-datetime-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-document.md b/examples/1.9.x/server-rust/examples/databases/create-document.md index 6e3321d35..806a2db6b 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-document.md +++ b/examples/1.9.x/server-rust/examples/databases/create-document.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/databases/create-documents.md b/examples/1.9.x/server-rust/examples/databases/create-documents.md index f46917840..38697b195 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-documents.md +++ b/examples/1.9.x/server-rust/examples/databases/create-documents.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-email-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-email-attribute.md index 481b94325..9eda27569 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-email-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-enum-attribute.md index 5ab052367..9af942ca2 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-enum-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-float-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-float-attribute.md index 4d8a8daf3..1da0960a5 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-float-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-index.md b/examples/1.9.x/server-rust/examples/databases/create-index.md index 1145097ba..aa4fe7e47 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-index.md +++ b/examples/1.9.x/server-rust/examples/databases/create-index.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-integer-attribute.md index 481a8cef2..82c4d77e7 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-integer-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-ip-attribute.md index 42523f22a..3f64b0a03 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-ip-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-line-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-line-attribute.md index f0adbaaac..8a9f9b654 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-line-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-longtext-attribute.md index e92114f72..a9cb2c1f3 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-longtext-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-mediumtext-attribute.md index 8baaea469..0817a7518 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-mediumtext-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-operations.md b/examples/1.9.x/server-rust/examples/databases/create-operations.md index 7e4204a52..04b87de34 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-operations.md +++ b/examples/1.9.x/server-rust/examples/databases/create-operations.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-point-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-point-attribute.md index dc7f9fc0c..f0f40724a 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-point-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-polygon-attribute.md index 6f7507031..ce1809a83 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-polygon-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-relationship-attribute.md index 84c494712..f1653bb85 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-relationship-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-string-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-string-attribute.md index f46f7998d..593d85fd2 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-string-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-text-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-text-attribute.md index 370d32a9c..eb521afe1 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-text-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-transaction.md b/examples/1.9.x/server-rust/examples/databases/create-transaction.md index 13ec21f87..391acd172 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-rust/examples/databases/create-transaction.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-url-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-url-attribute.md index ad75f4e62..7b8708faa 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-url-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-rust/examples/databases/create-varchar-attribute.md index 5a0bffc11..212f53304 100644 --- a/examples/1.9.x/server-rust/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/create-varchar-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/create.md b/examples/1.9.x/server-rust/examples/databases/create.md index 58ff3e5e8..53f22ce3f 100644 --- a/examples/1.9.x/server-rust/examples/databases/create.md +++ b/examples/1.9.x/server-rust/examples/databases/create.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-rust/examples/databases/decrement-document-attribute.md index 5d373be06..71ce521d6 100644 --- a/examples/1.9.x/server-rust/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/decrement-document-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/databases/delete-attribute.md b/examples/1.9.x/server-rust/examples/databases/delete-attribute.md index 7cda5ecf2..56ba9424e 100644 --- a/examples/1.9.x/server-rust/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/delete-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/delete-collection.md b/examples/1.9.x/server-rust/examples/databases/delete-collection.md index 1b7a38577..ca180ca20 100644 --- a/examples/1.9.x/server-rust/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-rust/examples/databases/delete-collection.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/delete-document.md b/examples/1.9.x/server-rust/examples/databases/delete-document.md index 4762af670..b53055b5b 100644 --- a/examples/1.9.x/server-rust/examples/databases/delete-document.md +++ b/examples/1.9.x/server-rust/examples/databases/delete-document.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/databases/delete-documents.md b/examples/1.9.x/server-rust/examples/databases/delete-documents.md index 2d75876c5..7d327f3df 100644 --- a/examples/1.9.x/server-rust/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-rust/examples/databases/delete-documents.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/delete-index.md b/examples/1.9.x/server-rust/examples/databases/delete-index.md index 7465144fb..bcaa4b8d2 100644 --- a/examples/1.9.x/server-rust/examples/databases/delete-index.md +++ b/examples/1.9.x/server-rust/examples/databases/delete-index.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/delete-transaction.md b/examples/1.9.x/server-rust/examples/databases/delete-transaction.md index 45308f71f..8a66aca0b 100644 --- a/examples/1.9.x/server-rust/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-rust/examples/databases/delete-transaction.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/delete.md b/examples/1.9.x/server-rust/examples/databases/delete.md index 268bad5c5..86bcfa3f9 100644 --- a/examples/1.9.x/server-rust/examples/databases/delete.md +++ b/examples/1.9.x/server-rust/examples/databases/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/get-attribute.md b/examples/1.9.x/server-rust/examples/databases/get-attribute.md index ef118d231..199c580fe 100644 --- a/examples/1.9.x/server-rust/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/get-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/get-collection.md b/examples/1.9.x/server-rust/examples/databases/get-collection.md index cdc1f8705..8e7c093ad 100644 --- a/examples/1.9.x/server-rust/examples/databases/get-collection.md +++ b/examples/1.9.x/server-rust/examples/databases/get-collection.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/get-document.md b/examples/1.9.x/server-rust/examples/databases/get-document.md index 06b72cc95..7b087d375 100644 --- a/examples/1.9.x/server-rust/examples/databases/get-document.md +++ b/examples/1.9.x/server-rust/examples/databases/get-document.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/databases/get-index.md b/examples/1.9.x/server-rust/examples/databases/get-index.md index d9bce54b8..c0c63b6b1 100644 --- a/examples/1.9.x/server-rust/examples/databases/get-index.md +++ b/examples/1.9.x/server-rust/examples/databases/get-index.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/get-transaction.md b/examples/1.9.x/server-rust/examples/databases/get-transaction.md index b035332ad..d1b7b5906 100644 --- a/examples/1.9.x/server-rust/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-rust/examples/databases/get-transaction.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/get.md b/examples/1.9.x/server-rust/examples/databases/get.md index 9a2aeb5bb..bed810d0c 100644 --- a/examples/1.9.x/server-rust/examples/databases/get.md +++ b/examples/1.9.x/server-rust/examples/databases/get.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-rust/examples/databases/increment-document-attribute.md index 7b403bd70..79b564b0b 100644 --- a/examples/1.9.x/server-rust/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/increment-document-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/databases/list-attributes.md b/examples/1.9.x/server-rust/examples/databases/list-attributes.md index 156c43fd3..dc28d9116 100644 --- a/examples/1.9.x/server-rust/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-rust/examples/databases/list-attributes.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/list-collections.md b/examples/1.9.x/server-rust/examples/databases/list-collections.md index 5b1cd663f..81a8e8e7c 100644 --- a/examples/1.9.x/server-rust/examples/databases/list-collections.md +++ b/examples/1.9.x/server-rust/examples/databases/list-collections.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/list-documents.md b/examples/1.9.x/server-rust/examples/databases/list-documents.md index 2dd664c6e..9aa7aa141 100644 --- a/examples/1.9.x/server-rust/examples/databases/list-documents.md +++ b/examples/1.9.x/server-rust/examples/databases/list-documents.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/databases/list-indexes.md b/examples/1.9.x/server-rust/examples/databases/list-indexes.md index 94b4d636c..f2925963a 100644 --- a/examples/1.9.x/server-rust/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-rust/examples/databases/list-indexes.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/list-transactions.md b/examples/1.9.x/server-rust/examples/databases/list-transactions.md index 6570a83a7..2adb4b8c4 100644 --- a/examples/1.9.x/server-rust/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-rust/examples/databases/list-transactions.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/list.md b/examples/1.9.x/server-rust/examples/databases/list.md index 9967ae58a..bd8e3a889 100644 --- a/examples/1.9.x/server-rust/examples/databases/list.md +++ b/examples/1.9.x/server-rust/examples/databases/list.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-big-int-attribute.md index 0f221bfc4..e36f1db14 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-big-int-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-boolean-attribute.md index b3477b3a4..3e4624d88 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-boolean-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-collection.md b/examples/1.9.x/server-rust/examples/databases/update-collection.md index af0a82c4a..aa2a9b3a4 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-collection.md +++ b/examples/1.9.x/server-rust/examples/databases/update-collection.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-datetime-attribute.md index 0f431d17c..90b81dda3 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-datetime-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-document.md b/examples/1.9.x/server-rust/examples/databases/update-document.md index 3729c1a32..b29cb31d1 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-document.md +++ b/examples/1.9.x/server-rust/examples/databases/update-document.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/databases/update-documents.md b/examples/1.9.x/server-rust/examples/databases/update-documents.md index e0dd2373e..a1318d598 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-documents.md +++ b/examples/1.9.x/server-rust/examples/databases/update-documents.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-email-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-email-attribute.md index 417681b39..04e35ef2e 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-email-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-enum-attribute.md index 66d5e718d..c0398196b 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-enum-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-float-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-float-attribute.md index e63c364ca..efa3b0f24 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-float-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-integer-attribute.md index 9e6d0bc1f..b23a57ed0 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-integer-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-ip-attribute.md index 7f3416ee5..a5b6f4130 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-ip-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-line-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-line-attribute.md index 4e4c0f9bb..a374cef3f 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-line-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-longtext-attribute.md index 3936d9058..599f2129d 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-longtext-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-mediumtext-attribute.md index e208ed776..96ac962b2 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-mediumtext-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-point-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-point-attribute.md index 1669c24eb..f560b0964 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-point-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-polygon-attribute.md index 453fe7688..8f8f0f28f 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-polygon-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-relationship-attribute.md index 5eedeac37..3bf2f8d7b 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-relationship-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-string-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-string-attribute.md index d30640a18..612f98660 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-string-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-text-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-text-attribute.md index eaf9a1753..2000daa2a 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-text-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-transaction.md b/examples/1.9.x/server-rust/examples/databases/update-transaction.md index 0edecca22..f76180d80 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-rust/examples/databases/update-transaction.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-url-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-url-attribute.md index 5d384f560..b300cc9f7 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-url-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-rust/examples/databases/update-varchar-attribute.md index 5ca0b248a..b612ca176 100644 --- a/examples/1.9.x/server-rust/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-rust/examples/databases/update-varchar-attribute.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/update.md b/examples/1.9.x/server-rust/examples/databases/update.md index 1f8f57b07..3d7747414 100644 --- a/examples/1.9.x/server-rust/examples/databases/update.md +++ b/examples/1.9.x/server-rust/examples/databases/update.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/databases/upsert-document.md b/examples/1.9.x/server-rust/examples/databases/upsert-document.md index 88e96676e..1b61660dc 100644 --- a/examples/1.9.x/server-rust/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-rust/examples/databases/upsert-document.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/databases/upsert-documents.md b/examples/1.9.x/server-rust/examples/databases/upsert-documents.md index 6ef035f6e..4301d1117 100644 --- a/examples/1.9.x/server-rust/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-rust/examples/databases/upsert-documents.md @@ -5,7 +5,7 @@ use appwrite::services::Databases; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/create-deployment.md b/examples/1.9.x/server-rust/examples/functions/create-deployment.md index a3fbf94cd..e131b94db 100644 --- a/examples/1.9.x/server-rust/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-rust/examples/functions/create-deployment.md @@ -6,7 +6,7 @@ use appwrite::InputFile; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-rust/examples/functions/create-duplicate-deployment.md index d6d923247..9ce000477 100644 --- a/examples/1.9.x/server-rust/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-rust/examples/functions/create-duplicate-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/create-execution.md b/examples/1.9.x/server-rust/examples/functions/create-execution.md index c614af524..7c5eeb346 100644 --- a/examples/1.9.x/server-rust/examples/functions/create-execution.md +++ b/examples/1.9.x/server-rust/examples/functions/create-execution.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/functions/create-template-deployment.md b/examples/1.9.x/server-rust/examples/functions/create-template-deployment.md index 998338d14..607a3dc3c 100644 --- a/examples/1.9.x/server-rust/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-rust/examples/functions/create-template-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/create-variable.md b/examples/1.9.x/server-rust/examples/functions/create-variable.md index 3f7ec5477..2a4b27e99 100644 --- a/examples/1.9.x/server-rust/examples/functions/create-variable.md +++ b/examples/1.9.x/server-rust/examples/functions/create-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-rust/examples/functions/create-vcs-deployment.md index 28ce87815..dae8974e9 100644 --- a/examples/1.9.x/server-rust/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-rust/examples/functions/create-vcs-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/create.md b/examples/1.9.x/server-rust/examples/functions/create.md index b0b9cad5f..173e359eb 100644 --- a/examples/1.9.x/server-rust/examples/functions/create.md +++ b/examples/1.9.x/server-rust/examples/functions/create.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key @@ -14,7 +14,7 @@ async fn main() -> Result<(), Box> { let result = functions.create( "", "", - appwrite::enums::Runtime::Node145, + appwrite::enums::FunctionRuntime::Node145, Some(vec!["any".into()]), // optional Some(vec![]), // optional Some(""), // optional @@ -23,12 +23,14 @@ async fn main() -> Result<(), Box> { Some(false), // optional Some(""), // optional Some(""), // optional - Some(vec![appwrite::enums::Scopes::ProjectRead]), // optional + Some(vec![appwrite::enums::ProjectKeyScopes::ProjectRead]), // optional Some(""), // optional Some(""), // optional Some(""), // optional Some(false), // optional Some(""), // optional + Some(vec![]), // optional + Some(vec![]), // optional Some(""), // optional Some(""), // optional Some(0) // optional diff --git a/examples/1.9.x/server-rust/examples/functions/delete-deployment.md b/examples/1.9.x/server-rust/examples/functions/delete-deployment.md index 2e9ca5661..ee75490b2 100644 --- a/examples/1.9.x/server-rust/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-rust/examples/functions/delete-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/delete-execution.md b/examples/1.9.x/server-rust/examples/functions/delete-execution.md index 6cc451cca..34810b864 100644 --- a/examples/1.9.x/server-rust/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-rust/examples/functions/delete-execution.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/delete-variable.md b/examples/1.9.x/server-rust/examples/functions/delete-variable.md index db03d2537..b1d5d0644 100644 --- a/examples/1.9.x/server-rust/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-rust/examples/functions/delete-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/delete.md b/examples/1.9.x/server-rust/examples/functions/delete.md index 55dfb6051..d260ee349 100644 --- a/examples/1.9.x/server-rust/examples/functions/delete.md +++ b/examples/1.9.x/server-rust/examples/functions/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/get-deployment-download.md b/examples/1.9.x/server-rust/examples/functions/get-deployment-download.md index 9ff7cb83e..1cfd55dc9 100644 --- a/examples/1.9.x/server-rust/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-rust/examples/functions/get-deployment-download.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/get-deployment.md b/examples/1.9.x/server-rust/examples/functions/get-deployment.md index 0fc911e11..ff9338109 100644 --- a/examples/1.9.x/server-rust/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-rust/examples/functions/get-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/get-execution.md b/examples/1.9.x/server-rust/examples/functions/get-execution.md index 9b934827a..267ddcd77 100644 --- a/examples/1.9.x/server-rust/examples/functions/get-execution.md +++ b/examples/1.9.x/server-rust/examples/functions/get-execution.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/functions/get-variable.md b/examples/1.9.x/server-rust/examples/functions/get-variable.md index 74bc9c26c..fae0c286d 100644 --- a/examples/1.9.x/server-rust/examples/functions/get-variable.md +++ b/examples/1.9.x/server-rust/examples/functions/get-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/get.md b/examples/1.9.x/server-rust/examples/functions/get.md index b89adba92..d807d03db 100644 --- a/examples/1.9.x/server-rust/examples/functions/get.md +++ b/examples/1.9.x/server-rust/examples/functions/get.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/list-deployments.md b/examples/1.9.x/server-rust/examples/functions/list-deployments.md index 3d8b44538..26e56ee06 100644 --- a/examples/1.9.x/server-rust/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-rust/examples/functions/list-deployments.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/list-executions.md b/examples/1.9.x/server-rust/examples/functions/list-executions.md index 87ac99d6b..7d8272bda 100644 --- a/examples/1.9.x/server-rust/examples/functions/list-executions.md +++ b/examples/1.9.x/server-rust/examples/functions/list-executions.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/functions/list-runtimes.md b/examples/1.9.x/server-rust/examples/functions/list-runtimes.md index abeffc758..291149322 100644 --- a/examples/1.9.x/server-rust/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-rust/examples/functions/list-runtimes.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/list-specifications.md b/examples/1.9.x/server-rust/examples/functions/list-specifications.md index db103ae6f..3cf308e23 100644 --- a/examples/1.9.x/server-rust/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-rust/examples/functions/list-specifications.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/list-variables.md b/examples/1.9.x/server-rust/examples/functions/list-variables.md index 3b149293c..f9faedcb7 100644 --- a/examples/1.9.x/server-rust/examples/functions/list-variables.md +++ b/examples/1.9.x/server-rust/examples/functions/list-variables.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/list.md b/examples/1.9.x/server-rust/examples/functions/list.md index ef9d71d62..eb8fa0474 100644 --- a/examples/1.9.x/server-rust/examples/functions/list.md +++ b/examples/1.9.x/server-rust/examples/functions/list.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/update-deployment-status.md b/examples/1.9.x/server-rust/examples/functions/update-deployment-status.md index c0964401a..44d8adfdc 100644 --- a/examples/1.9.x/server-rust/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-rust/examples/functions/update-deployment-status.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/update-function-deployment.md b/examples/1.9.x/server-rust/examples/functions/update-function-deployment.md index 5fd072800..c2ae29d55 100644 --- a/examples/1.9.x/server-rust/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-rust/examples/functions/update-function-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/update-variable.md b/examples/1.9.x/server-rust/examples/functions/update-variable.md index 0ee9606d9..a14acef0f 100644 --- a/examples/1.9.x/server-rust/examples/functions/update-variable.md +++ b/examples/1.9.x/server-rust/examples/functions/update-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/functions/update.md b/examples/1.9.x/server-rust/examples/functions/update.md index b49460920..01a50a000 100644 --- a/examples/1.9.x/server-rust/examples/functions/update.md +++ b/examples/1.9.x/server-rust/examples/functions/update.md @@ -5,7 +5,7 @@ use appwrite::services::Functions; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key @@ -14,7 +14,7 @@ async fn main() -> Result<(), Box> { let result = functions.update( "", "", - Some(appwrite::enums::Runtime::Node145), // optional + Some(appwrite::enums::FunctionRuntime::Node145), // optional Some(vec!["any".into()]), // optional Some(vec![]), // optional Some(""), // optional @@ -23,12 +23,14 @@ async fn main() -> Result<(), Box> { Some(false), // optional Some(""), // optional Some(""), // optional - Some(vec![appwrite::enums::Scopes::ProjectRead]), // optional + Some(vec![appwrite::enums::ProjectKeyScopes::ProjectRead]), // optional Some(""), // optional Some(""), // optional Some(""), // optional Some(false), // optional Some(""), // optional + Some(vec![]), // optional + Some(vec![]), // optional Some(""), // optional Some(""), // optional Some(0) // optional diff --git a/examples/1.9.x/server-rust/examples/graphql/mutation.md b/examples/1.9.x/server-rust/examples/graphql/mutation.md index d9d7fa28c..6ec8d6c7a 100644 --- a/examples/1.9.x/server-rust/examples/graphql/mutation.md +++ b/examples/1.9.x/server-rust/examples/graphql/mutation.md @@ -5,7 +5,7 @@ use appwrite::services::Graphql; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/graphql/query.md b/examples/1.9.x/server-rust/examples/graphql/query.md index 506e4371a..c5920876b 100644 --- a/examples/1.9.x/server-rust/examples/graphql/query.md +++ b/examples/1.9.x/server-rust/examples/graphql/query.md @@ -5,7 +5,7 @@ use appwrite::services::Graphql; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-antivirus.md b/examples/1.9.x/server-rust/examples/health/get-antivirus.md index 0bcfa0ded..2dfe1d173 100644 --- a/examples/1.9.x/server-rust/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-rust/examples/health/get-antivirus.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-cache.md b/examples/1.9.x/server-rust/examples/health/get-cache.md index 36035f0c2..2e8bce698 100644 --- a/examples/1.9.x/server-rust/examples/health/get-cache.md +++ b/examples/1.9.x/server-rust/examples/health/get-cache.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-certificate.md b/examples/1.9.x/server-rust/examples/health/get-certificate.md index d2641929b..7c216576c 100644 --- a/examples/1.9.x/server-rust/examples/health/get-certificate.md +++ b/examples/1.9.x/server-rust/examples/health/get-certificate.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-console-pausing.md b/examples/1.9.x/server-rust/examples/health/get-console-pausing.md index 274a274d5..64dc4fbdd 100644 --- a/examples/1.9.x/server-rust/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-rust/examples/health/get-console-pausing.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-db.md b/examples/1.9.x/server-rust/examples/health/get-db.md index 74d84465d..11d79a109 100644 --- a/examples/1.9.x/server-rust/examples/health/get-db.md +++ b/examples/1.9.x/server-rust/examples/health/get-db.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-failed-jobs.md b/examples/1.9.x/server-rust/examples/health/get-failed-jobs.md index bcba1f3cf..1f28af927 100644 --- a/examples/1.9.x/server-rust/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-rust/examples/health/get-failed-jobs.md @@ -5,14 +5,14 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key let health = Health::new(&client); let result = health.get_failed_jobs( - appwrite::enums::Name::V1Database, + appwrite::enums::HealthQueueName::V1Database, Some(0) // optional ).await?; diff --git a/examples/1.9.x/server-rust/examples/health/get-pub-sub.md b/examples/1.9.x/server-rust/examples/health/get-pub-sub.md index b676a626c..88238598c 100644 --- a/examples/1.9.x/server-rust/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-rust/examples/health/get-pub-sub.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-audits.md b/examples/1.9.x/server-rust/examples/health/get-queue-audits.md index 6fac1c4a9..4574470fe 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-audits.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-builds.md b/examples/1.9.x/server-rust/examples/health/get-queue-builds.md index 068f0e147..cddbd62c1 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-builds.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-certificates.md b/examples/1.9.x/server-rust/examples/health/get-queue-certificates.md index 3af495c82..47145e7bd 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-certificates.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-databases.md b/examples/1.9.x/server-rust/examples/health/get-queue-databases.md index 5be3600d3..d97efdd17 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-databases.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-deletes.md b/examples/1.9.x/server-rust/examples/health/get-queue-deletes.md index 7075d7c65..5df6727a0 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-deletes.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-functions.md b/examples/1.9.x/server-rust/examples/health/get-queue-functions.md index 9ed181d38..e211b1551 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-functions.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-logs.md b/examples/1.9.x/server-rust/examples/health/get-queue-logs.md index d5bb715e9..1317feba4 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-logs.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-mails.md b/examples/1.9.x/server-rust/examples/health/get-queue-mails.md index 12cda7bcc..f1c54d5da 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-mails.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-messaging.md b/examples/1.9.x/server-rust/examples/health/get-queue-messaging.md index 99824f954..7228ca81d 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-messaging.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-migrations.md b/examples/1.9.x/server-rust/examples/health/get-queue-migrations.md index 821761862..faa7bda75 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-migrations.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-rust/examples/health/get-queue-stats-resources.md index 699080f36..6fde8c8d7 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-stats-resources.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-usage.md b/examples/1.9.x/server-rust/examples/health/get-queue-usage.md index 695dd3c85..6a5355547 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-usage.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-rust/examples/health/get-queue-webhooks.md index 4706231a2..5344c286d 100644 --- a/examples/1.9.x/server-rust/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-rust/examples/health/get-queue-webhooks.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-storage-local.md b/examples/1.9.x/server-rust/examples/health/get-storage-local.md index 1402d570a..ce64411e1 100644 --- a/examples/1.9.x/server-rust/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-rust/examples/health/get-storage-local.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-storage.md b/examples/1.9.x/server-rust/examples/health/get-storage.md index c389e6ef1..2ff9aafc0 100644 --- a/examples/1.9.x/server-rust/examples/health/get-storage.md +++ b/examples/1.9.x/server-rust/examples/health/get-storage.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get-time.md b/examples/1.9.x/server-rust/examples/health/get-time.md index 60e778d87..1b36b1980 100644 --- a/examples/1.9.x/server-rust/examples/health/get-time.md +++ b/examples/1.9.x/server-rust/examples/health/get-time.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/health/get.md b/examples/1.9.x/server-rust/examples/health/get.md index 52018c67f..a7aaeb1ec 100644 --- a/examples/1.9.x/server-rust/examples/health/get.md +++ b/examples/1.9.x/server-rust/examples/health/get.md @@ -5,7 +5,7 @@ use appwrite::services::Health; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/locale/get.md b/examples/1.9.x/server-rust/examples/locale/get.md index c4665a6c8..6f43f37cc 100644 --- a/examples/1.9.x/server-rust/examples/locale/get.md +++ b/examples/1.9.x/server-rust/examples/locale/get.md @@ -5,7 +5,7 @@ use appwrite::services::Locale; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/locale/list-codes.md b/examples/1.9.x/server-rust/examples/locale/list-codes.md index f920bf615..80c9f5f46 100644 --- a/examples/1.9.x/server-rust/examples/locale/list-codes.md +++ b/examples/1.9.x/server-rust/examples/locale/list-codes.md @@ -5,7 +5,7 @@ use appwrite::services::Locale; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/locale/list-continents.md b/examples/1.9.x/server-rust/examples/locale/list-continents.md index b4f8d46ba..5fedaa473 100644 --- a/examples/1.9.x/server-rust/examples/locale/list-continents.md +++ b/examples/1.9.x/server-rust/examples/locale/list-continents.md @@ -5,7 +5,7 @@ use appwrite::services::Locale; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/locale/list-countries-eu.md b/examples/1.9.x/server-rust/examples/locale/list-countries-eu.md index c959aa1ca..e6df00130 100644 --- a/examples/1.9.x/server-rust/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-rust/examples/locale/list-countries-eu.md @@ -5,7 +5,7 @@ use appwrite::services::Locale; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/locale/list-countries-phones.md b/examples/1.9.x/server-rust/examples/locale/list-countries-phones.md index 6c0238bfc..8ed98123c 100644 --- a/examples/1.9.x/server-rust/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-rust/examples/locale/list-countries-phones.md @@ -5,7 +5,7 @@ use appwrite::services::Locale; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/locale/list-countries.md b/examples/1.9.x/server-rust/examples/locale/list-countries.md index bd8f795e0..488718fac 100644 --- a/examples/1.9.x/server-rust/examples/locale/list-countries.md +++ b/examples/1.9.x/server-rust/examples/locale/list-countries.md @@ -5,7 +5,7 @@ use appwrite::services::Locale; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/locale/list-currencies.md b/examples/1.9.x/server-rust/examples/locale/list-currencies.md index b382da677..e73b52083 100644 --- a/examples/1.9.x/server-rust/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-rust/examples/locale/list-currencies.md @@ -5,7 +5,7 @@ use appwrite::services::Locale; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/locale/list-languages.md b/examples/1.9.x/server-rust/examples/locale/list-languages.md index fb7c78a53..74bafd3f6 100644 --- a/examples/1.9.x/server-rust/examples/locale/list-languages.md +++ b/examples/1.9.x/server-rust/examples/locale/list-languages.md @@ -5,7 +5,7 @@ use appwrite::services::Locale; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-apns-provider.md index d20edfadd..3b41bae34 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-apns-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-email.md b/examples/1.9.x/server-rust/examples/messaging/create-email.md index 74ffddcc4..5f4ea41ad 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-email.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-email.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-fcm-provider.md index 3b62c549a..e60057d5d 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-fcm-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-mailgun-provider.md index a3bb30c59..0f398331b 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-mailgun-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-msg-91-provider.md index 1a1484599..61c307012 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-msg-91-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-push.md b/examples/1.9.x/server-rust/examples/messaging/create-push.md index 5262d3953..b0cbcc258 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-push.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-push.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-resend-provider.md index 0632c50cf..b85795e8a 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-resend-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-sendgrid-provider.md index 93fc064b4..eb7099060 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-sendgrid-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-sms.md b/examples/1.9.x/server-rust/examples/messaging/create-sms.md index f190adc8c..c7980cf3c 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-sms.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-smtp-provider.md index 9a3209895..b083a49c7 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-smtp-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-subscriber.md b/examples/1.9.x/server-rust/examples/messaging/create-subscriber.md index 064875dc5..d6ec7520a 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-subscriber.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_jwt(""); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-rust/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-telesign-provider.md index 88860228a..93295eb9a 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-telesign-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-textmagic-provider.md index d6a7b1378..46b19cd0b 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-textmagic-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-topic.md b/examples/1.9.x/server-rust/examples/messaging/create-topic.md index 9b2108f6e..238f5aec9 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-topic.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-twilio-provider.md index 2a28b8308..6d71d9334 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-twilio-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-rust/examples/messaging/create-vonage-provider.md index 6e35af111..72ba40645 100644 --- a/examples/1.9.x/server-rust/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/create-vonage-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/delete-provider.md b/examples/1.9.x/server-rust/examples/messaging/delete-provider.md index 9c6d65d0f..2bae9d2fe 100644 --- a/examples/1.9.x/server-rust/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/delete-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-rust/examples/messaging/delete-subscriber.md index faf142559..27c42b646 100644 --- a/examples/1.9.x/server-rust/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-rust/examples/messaging/delete-subscriber.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_jwt(""); // Your secret JSON Web Token diff --git a/examples/1.9.x/server-rust/examples/messaging/delete-topic.md b/examples/1.9.x/server-rust/examples/messaging/delete-topic.md index e9384ce92..dee32a5fd 100644 --- a/examples/1.9.x/server-rust/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-rust/examples/messaging/delete-topic.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/delete.md b/examples/1.9.x/server-rust/examples/messaging/delete.md index 45530838a..129cfc5e9 100644 --- a/examples/1.9.x/server-rust/examples/messaging/delete.md +++ b/examples/1.9.x/server-rust/examples/messaging/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/get-message.md b/examples/1.9.x/server-rust/examples/messaging/get-message.md index c73f09070..d713066c2 100644 --- a/examples/1.9.x/server-rust/examples/messaging/get-message.md +++ b/examples/1.9.x/server-rust/examples/messaging/get-message.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/get-provider.md b/examples/1.9.x/server-rust/examples/messaging/get-provider.md index be30b3a79..9c92afdee 100644 --- a/examples/1.9.x/server-rust/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/get-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/get-subscriber.md b/examples/1.9.x/server-rust/examples/messaging/get-subscriber.md index 5bd199452..2fd38266e 100644 --- a/examples/1.9.x/server-rust/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-rust/examples/messaging/get-subscriber.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/get-topic.md b/examples/1.9.x/server-rust/examples/messaging/get-topic.md index bf3cdfff1..4cd3c0a30 100644 --- a/examples/1.9.x/server-rust/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-rust/examples/messaging/get-topic.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-message-logs.md b/examples/1.9.x/server-rust/examples/messaging/list-message-logs.md index 6456e1e3a..a75b48e20 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-message-logs.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-messages.md b/examples/1.9.x/server-rust/examples/messaging/list-messages.md index 2a8b10cb4..91f596105 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-messages.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-rust/examples/messaging/list-provider-logs.md index 3bf6648f8..04ba83c12 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-provider-logs.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-providers.md b/examples/1.9.x/server-rust/examples/messaging/list-providers.md index d49e39756..4603660e2 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-providers.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-rust/examples/messaging/list-subscriber-logs.md index 9906f0031..239816777 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-subscriber-logs.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-subscribers.md b/examples/1.9.x/server-rust/examples/messaging/list-subscribers.md index 7bea96f97..036f38e4e 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-subscribers.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-targets.md b/examples/1.9.x/server-rust/examples/messaging/list-targets.md index c1c8ef44b..9c4ea406a 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-targets.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-rust/examples/messaging/list-topic-logs.md index 37a6133a8..6d7ea19e3 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-topic-logs.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/list-topics.md b/examples/1.9.x/server-rust/examples/messaging/list-topics.md index ec0d15aee..ec5751e4e 100644 --- a/examples/1.9.x/server-rust/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-rust/examples/messaging/list-topics.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-apns-provider.md index c6b5c9bee..5200b58d1 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-apns-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-email.md b/examples/1.9.x/server-rust/examples/messaging/update-email.md index 0728e91c2..a531fffd1 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-email.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-email.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-fcm-provider.md index 6739579a6..11a6c077b 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-fcm-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-mailgun-provider.md index 56cca3af6..e91b393ae 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-mailgun-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-msg-91-provider.md index 64b167b2d..b13bf0221 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-msg-91-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-push.md b/examples/1.9.x/server-rust/examples/messaging/update-push.md index a24e71f38..bfcd14c77 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-push.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-push.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-resend-provider.md index 28f63a6b4..195f9e77e 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-resend-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-sendgrid-provider.md index 89be552df..f453c2291 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-sendgrid-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-sms.md b/examples/1.9.x/server-rust/examples/messaging/update-sms.md index ede80793e..d304070cc 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-sms.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-smtp-provider.md index 9d105ffe7..09c1d0ee1 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-smtp-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-telesign-provider.md index 6aafea8f9..d39776eac 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-telesign-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-textmagic-provider.md index d5ff9add7..4f9819bac 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-textmagic-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-topic.md b/examples/1.9.x/server-rust/examples/messaging/update-topic.md index 9f112ffbe..2198c44c0 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-topic.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-twilio-provider.md index a9c7778d7..3f694843e 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-twilio-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-rust/examples/messaging/update-vonage-provider.md index 4ca9b38a5..edd1d4591 100644 --- a/examples/1.9.x/server-rust/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-rust/examples/messaging/update-vonage-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Messaging; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/organization/create-key.md b/examples/1.9.x/server-rust/examples/organization/create-key.md new file mode 100644 index 000000000..24d49e22f --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/create-key.md @@ -0,0 +1,25 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + let result = organization.create_key( + "", + "", + vec![appwrite::enums::OrganizationKeyScopes::ProjectsRead], + Some("2020-10-15T06:38:00.000+00:00") // optional + ).await?; + + let _ = result; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/create-project.md b/examples/1.9.x/server-rust/examples/organization/create-project.md new file mode 100644 index 000000000..6577a5ce7 --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/create-project.md @@ -0,0 +1,24 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + let result = organization.create_project( + "", + "", + Some(appwrite::enums::Region::Fra) // optional + ).await?; + + let _ = result; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/delete-key.md b/examples/1.9.x/server-rust/examples/organization/delete-key.md new file mode 100644 index 000000000..498fbbe6b --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/delete-key.md @@ -0,0 +1,20 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + organization.delete_key( + "" + ).await?; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/delete-project.md b/examples/1.9.x/server-rust/examples/organization/delete-project.md new file mode 100644 index 000000000..da5abc026 --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/delete-project.md @@ -0,0 +1,20 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + organization.delete_project( + "" + ).await?; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/get-key.md b/examples/1.9.x/server-rust/examples/organization/get-key.md new file mode 100644 index 000000000..add4ef891 --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/get-key.md @@ -0,0 +1,22 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + let result = organization.get_key( + "" + ).await?; + + let _ = result; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/get-project.md b/examples/1.9.x/server-rust/examples/organization/get-project.md new file mode 100644 index 000000000..af335cdb4 --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/get-project.md @@ -0,0 +1,22 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + let result = organization.get_project( + "" + ).await?; + + let _ = result; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/list-keys.md b/examples/1.9.x/server-rust/examples/organization/list-keys.md new file mode 100644 index 000000000..0a3cf4659 --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/list-keys.md @@ -0,0 +1,23 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + let result = organization.list_keys( + Some(vec![]), // optional + Some(false) // optional + ).await?; + + let _ = result; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/list-projects.md b/examples/1.9.x/server-rust/examples/organization/list-projects.md new file mode 100644 index 000000000..f5aad0d39 --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/list-projects.md @@ -0,0 +1,24 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + let result = organization.list_projects( + Some(vec![]), // optional + Some(""), // optional + Some(false) // optional + ).await?; + + let _ = result; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/update-key.md b/examples/1.9.x/server-rust/examples/organization/update-key.md new file mode 100644 index 000000000..969906917 --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/update-key.md @@ -0,0 +1,25 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + let result = organization.update_key( + "", + "", + vec![appwrite::enums::OrganizationKeyScopes::ProjectsRead], + Some("2020-10-15T06:38:00.000+00:00") // optional + ).await?; + + let _ = result; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/organization/update-project.md b/examples/1.9.x/server-rust/examples/organization/update-project.md new file mode 100644 index 000000000..1bceae08b --- /dev/null +++ b/examples/1.9.x/server-rust/examples/organization/update-project.md @@ -0,0 +1,23 @@ +```rust +use appwrite::Client; +use appwrite::services::Organization; + +#[tokio::main] +async fn main() -> Result<(), Box> { + let client = Client::new(); + client.set_endpoint(""); // Your API Endpoint + client.set_project(""); // Your project ID + client.set_key(""); // Your secret API key + + let organization = Organization::new(&client); + + let result = organization.update_project( + "", + "" + ).await?; + + let _ = result; + + Ok(()) +} +``` diff --git a/examples/1.9.x/server-rust/examples/presences/delete.md b/examples/1.9.x/server-rust/examples/presences/delete.md index 6802abd1f..824d1819f 100644 --- a/examples/1.9.x/server-rust/examples/presences/delete.md +++ b/examples/1.9.x/server-rust/examples/presences/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Presences; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/presences/get.md b/examples/1.9.x/server-rust/examples/presences/get.md index 5bba380a3..7649b9181 100644 --- a/examples/1.9.x/server-rust/examples/presences/get.md +++ b/examples/1.9.x/server-rust/examples/presences/get.md @@ -5,7 +5,7 @@ use appwrite::services::Presences; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/presences/list.md b/examples/1.9.x/server-rust/examples/presences/list.md index 413209655..1b827bd55 100644 --- a/examples/1.9.x/server-rust/examples/presences/list.md +++ b/examples/1.9.x/server-rust/examples/presences/list.md @@ -5,7 +5,7 @@ use appwrite::services::Presences; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/presences/update-presence.md b/examples/1.9.x/server-rust/examples/presences/update-presence.md index fe0b22301..a4170b89b 100644 --- a/examples/1.9.x/server-rust/examples/presences/update-presence.md +++ b/examples/1.9.x/server-rust/examples/presences/update-presence.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/presences/upsert.md b/examples/1.9.x/server-rust/examples/presences/upsert.md index e1d5745f4..40c4ca942 100644 --- a/examples/1.9.x/server-rust/examples/presences/upsert.md +++ b/examples/1.9.x/server-rust/examples/presences/upsert.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-android-platform.md b/examples/1.9.x/server-rust/examples/project/create-android-platform.md index 98c013fe2..9dfe486fc 100644 --- a/examples/1.9.x/server-rust/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-rust/examples/project/create-android-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-apple-platform.md b/examples/1.9.x/server-rust/examples/project/create-apple-platform.md index 5c7f0c8aa..2e3508bef 100644 --- a/examples/1.9.x/server-rust/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-rust/examples/project/create-apple-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-rust/examples/project/create-ephemeral-key.md index 93d1dc4a1..34f18644f 100644 --- a/examples/1.9.x/server-rust/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-rust/examples/project/create-ephemeral-key.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-key.md b/examples/1.9.x/server-rust/examples/project/create-key.md index 65ba5117f..c8fd2a8a4 100644 --- a/examples/1.9.x/server-rust/examples/project/create-key.md +++ b/examples/1.9.x/server-rust/examples/project/create-key.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-linux-platform.md b/examples/1.9.x/server-rust/examples/project/create-linux-platform.md index be6274afe..14d5f82e9 100644 --- a/examples/1.9.x/server-rust/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-rust/examples/project/create-linux-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-mock-phone.md b/examples/1.9.x/server-rust/examples/project/create-mock-phone.md index f867b96f6..f41be9234 100644 --- a/examples/1.9.x/server-rust/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-rust/examples/project/create-mock-phone.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-smtp-test.md b/examples/1.9.x/server-rust/examples/project/create-smtp-test.md index cb5f2ceda..6678999a8 100644 --- a/examples/1.9.x/server-rust/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-rust/examples/project/create-smtp-test.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-variable.md b/examples/1.9.x/server-rust/examples/project/create-variable.md index 39356ece3..8d74aba0d 100644 --- a/examples/1.9.x/server-rust/examples/project/create-variable.md +++ b/examples/1.9.x/server-rust/examples/project/create-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-web-platform.md b/examples/1.9.x/server-rust/examples/project/create-web-platform.md index 07e13a747..c94663c48 100644 --- a/examples/1.9.x/server-rust/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-rust/examples/project/create-web-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/create-windows-platform.md b/examples/1.9.x/server-rust/examples/project/create-windows-platform.md index 0921cf898..5d9b06a24 100644 --- a/examples/1.9.x/server-rust/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-rust/examples/project/create-windows-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/delete-key.md b/examples/1.9.x/server-rust/examples/project/delete-key.md index e0ff21281..f083af526 100644 --- a/examples/1.9.x/server-rust/examples/project/delete-key.md +++ b/examples/1.9.x/server-rust/examples/project/delete-key.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/delete-mock-phone.md b/examples/1.9.x/server-rust/examples/project/delete-mock-phone.md index f3b8744be..507c627f6 100644 --- a/examples/1.9.x/server-rust/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-rust/examples/project/delete-mock-phone.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/delete-platform.md b/examples/1.9.x/server-rust/examples/project/delete-platform.md index 335ab49e5..e8be73bb2 100644 --- a/examples/1.9.x/server-rust/examples/project/delete-platform.md +++ b/examples/1.9.x/server-rust/examples/project/delete-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/delete-variable.md b/examples/1.9.x/server-rust/examples/project/delete-variable.md index dc79ce977..939635a1d 100644 --- a/examples/1.9.x/server-rust/examples/project/delete-variable.md +++ b/examples/1.9.x/server-rust/examples/project/delete-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/delete.md b/examples/1.9.x/server-rust/examples/project/delete.md index aef1dcf76..37cb70de3 100644 --- a/examples/1.9.x/server-rust/examples/project/delete.md +++ b/examples/1.9.x/server-rust/examples/project/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/get-email-template.md b/examples/1.9.x/server-rust/examples/project/get-email-template.md index b163f0f41..105798c14 100644 --- a/examples/1.9.x/server-rust/examples/project/get-email-template.md +++ b/examples/1.9.x/server-rust/examples/project/get-email-template.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/get-key.md b/examples/1.9.x/server-rust/examples/project/get-key.md index 61d58e894..ec22f7aa4 100644 --- a/examples/1.9.x/server-rust/examples/project/get-key.md +++ b/examples/1.9.x/server-rust/examples/project/get-key.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/get-mock-phone.md b/examples/1.9.x/server-rust/examples/project/get-mock-phone.md index 1c44f0729..044ef5aed 100644 --- a/examples/1.9.x/server-rust/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-rust/examples/project/get-mock-phone.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-rust/examples/project/get-o-auth-2-provider.md index ea5dd53bc..5a0369d95 100644 --- a/examples/1.9.x/server-rust/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-rust/examples/project/get-o-auth-2-provider.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/get-platform.md b/examples/1.9.x/server-rust/examples/project/get-platform.md index 559fb7309..ab800aa81 100644 --- a/examples/1.9.x/server-rust/examples/project/get-platform.md +++ b/examples/1.9.x/server-rust/examples/project/get-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/get-policy.md b/examples/1.9.x/server-rust/examples/project/get-policy.md index 53781fb9b..f8917f76e 100644 --- a/examples/1.9.x/server-rust/examples/project/get-policy.md +++ b/examples/1.9.x/server-rust/examples/project/get-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/get-variable.md b/examples/1.9.x/server-rust/examples/project/get-variable.md index b86d29f2a..0d678fe96 100644 --- a/examples/1.9.x/server-rust/examples/project/get-variable.md +++ b/examples/1.9.x/server-rust/examples/project/get-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/get.md b/examples/1.9.x/server-rust/examples/project/get.md index 5c249b48e..c0102d8f5 100644 --- a/examples/1.9.x/server-rust/examples/project/get.md +++ b/examples/1.9.x/server-rust/examples/project/get.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/list-email-templates.md b/examples/1.9.x/server-rust/examples/project/list-email-templates.md index edbaf99f8..129330657 100644 --- a/examples/1.9.x/server-rust/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-rust/examples/project/list-email-templates.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/list-keys.md b/examples/1.9.x/server-rust/examples/project/list-keys.md index 9d8031704..acc4b3304 100644 --- a/examples/1.9.x/server-rust/examples/project/list-keys.md +++ b/examples/1.9.x/server-rust/examples/project/list-keys.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/list-mock-phones.md b/examples/1.9.x/server-rust/examples/project/list-mock-phones.md index 4057971d9..2f1914f07 100644 --- a/examples/1.9.x/server-rust/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-rust/examples/project/list-mock-phones.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-rust/examples/project/list-o-auth-2-providers.md index e2bc1c7e6..8d48f46f5 100644 --- a/examples/1.9.x/server-rust/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-rust/examples/project/list-o-auth-2-providers.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/list-platforms.md b/examples/1.9.x/server-rust/examples/project/list-platforms.md index effb3c377..e4839e505 100644 --- a/examples/1.9.x/server-rust/examples/project/list-platforms.md +++ b/examples/1.9.x/server-rust/examples/project/list-platforms.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/list-policies.md b/examples/1.9.x/server-rust/examples/project/list-policies.md index 3abb2ab69..329f154b9 100644 --- a/examples/1.9.x/server-rust/examples/project/list-policies.md +++ b/examples/1.9.x/server-rust/examples/project/list-policies.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/list-variables.md b/examples/1.9.x/server-rust/examples/project/list-variables.md index 75c3b61f5..e6b4bc868 100644 --- a/examples/1.9.x/server-rust/examples/project/list-variables.md +++ b/examples/1.9.x/server-rust/examples/project/list-variables.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-android-platform.md b/examples/1.9.x/server-rust/examples/project/update-android-platform.md index 4240a36d0..6f6dc1c4b 100644 --- a/examples/1.9.x/server-rust/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-rust/examples/project/update-android-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-apple-platform.md b/examples/1.9.x/server-rust/examples/project/update-apple-platform.md index 9034653b9..8d2c6ac76 100644 --- a/examples/1.9.x/server-rust/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-rust/examples/project/update-apple-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-auth-method.md b/examples/1.9.x/server-rust/examples/project/update-auth-method.md index 7b8bd77ba..2641df79f 100644 --- a/examples/1.9.x/server-rust/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-rust/examples/project/update-auth-method.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-rust/examples/project/update-deny-aliased-email-policy.md index 27609f346..0c65c0a7f 100644 --- a/examples/1.9.x/server-rust/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-deny-aliased-email-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-rust/examples/project/update-deny-disposable-email-policy.md index 95b145912..1e0a02ada 100644 --- a/examples/1.9.x/server-rust/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-deny-disposable-email-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-rust/examples/project/update-deny-free-email-policy.md index 03b57cb36..f6906b113 100644 --- a/examples/1.9.x/server-rust/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-deny-free-email-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-email-template.md b/examples/1.9.x/server-rust/examples/project/update-email-template.md index 4ec7ce96e..fe224f82d 100644 --- a/examples/1.9.x/server-rust/examples/project/update-email-template.md +++ b/examples/1.9.x/server-rust/examples/project/update-email-template.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-key.md b/examples/1.9.x/server-rust/examples/project/update-key.md index 12b0282ab..1bfc1a561 100644 --- a/examples/1.9.x/server-rust/examples/project/update-key.md +++ b/examples/1.9.x/server-rust/examples/project/update-key.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-labels.md b/examples/1.9.x/server-rust/examples/project/update-labels.md index 541993e9a..1342e9395 100644 --- a/examples/1.9.x/server-rust/examples/project/update-labels.md +++ b/examples/1.9.x/server-rust/examples/project/update-labels.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-linux-platform.md b/examples/1.9.x/server-rust/examples/project/update-linux-platform.md index 4d0c98353..d92f3d8bb 100644 --- a/examples/1.9.x/server-rust/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-rust/examples/project/update-linux-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-rust/examples/project/update-membership-privacy-policy.md index 754d8b727..e75d491f0 100644 --- a/examples/1.9.x/server-rust/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-membership-privacy-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-mock-phone.md b/examples/1.9.x/server-rust/examples/project/update-mock-phone.md index cd55b55b3..d76af3c84 100644 --- a/examples/1.9.x/server-rust/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-rust/examples/project/update-mock-phone.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-amazon.md index 4c02d8b5d..2b1c43216 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-amazon.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-apple.md index 428de09e8..f6eaf3bda 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-apple.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-auth-0.md index 811a8c8fc..e3991d60c 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-auth-0.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-authentik.md index a4566e112..f040e58e2 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-authentik.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-autodesk.md index 62ad0944c..3539ad42c 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-autodesk.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-bitbucket.md index 30791180a..0adbfd55c 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-bitbucket.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-bitly.md index 212d49fb2..c76285154 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-bitly.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-box.md index 3a463f299..451b6379c 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-box.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-dailymotion.md index e46a0f18f..734ed1134 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-dailymotion.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-discord.md index 783c9b8ab..f0a3222c5 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-discord.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-disqus.md index 4476bf26e..4a18d4523 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-disqus.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-dropbox.md index 49458db76..248d033a0 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-dropbox.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-etsy.md index 09ab588e5..2e7f8a0bd 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-etsy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-facebook.md index 424cdff2a..bfeda6534 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-facebook.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-figma.md index 5f5a34916..e2bbce77e 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-figma.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-fusion-auth.md index e1a73144c..00a565d2a 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-fusion-auth.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-git-hub.md index be26e71dd..1db2fc2f4 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-git-hub.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-gitlab.md index 23fab7e4e..49692defc 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-gitlab.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-google.md index 2a96b7b4f..318bc4e62 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-google.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-keycloak.md index 89ae292af..aede52093 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-keycloak.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-kick.md index 56aedb478..845f156bf 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-kick.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-linkedin.md index 8f864a3f0..868862953 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-linkedin.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-microsoft.md index f32216e4b..b89eb8f36 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-microsoft.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-notion.md index 84642ef72..6dce0e648 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-notion.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-oidc.md index f37d38775..3cfcff023 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-oidc.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-okta.md index b180d2bfa..0a252e0e1 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-okta.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-paypal-sandbox.md index a260d7d9e..2320cb364 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-paypal-sandbox.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-paypal.md index 8a296877a..2e074dab1 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-paypal.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-podio.md index 141c517ba..0b15328d8 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-podio.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-salesforce.md index dd41c0a9b..6bf32a01e 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-salesforce.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-slack.md index 60fa98300..8b1bddaae 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-slack.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-spotify.md index ac7af69db..72045b957 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-spotify.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-stripe.md index 993f2164c..bc0d07f59 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-stripe.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-tradeshift-sandbox.md index 5804af8fa..9f758e4a1 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-tradeshift.md index 37bc1145f..dfe87a97c 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-tradeshift.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-twitch.md index e238d7630..4d088b566 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-twitch.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-word-press.md index 808c156a6..cc023f92f 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-word-press.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-yahoo.md index c75ae753a..2403ddff2 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-yahoo.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-yandex.md index b5b82d3a1..b7c4aa104 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-yandex.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-zoho.md index 62ac858e2..99b0d2dad 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-zoho.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-zoom.md index 225ed8773..90d436ab1 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2-zoom.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-rust/examples/project/update-o-auth-2x.md index b8c02abdf..569f2c4b2 100644 --- a/examples/1.9.x/server-rust/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-rust/examples/project/update-o-auth-2x.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-rust/examples/project/update-password-dictionary-policy.md index 2c01878a8..d4b273989 100644 --- a/examples/1.9.x/server-rust/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-password-dictionary-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-password-history-policy.md b/examples/1.9.x/server-rust/examples/project/update-password-history-policy.md index 1b884806d..7afc9b8d1 100644 --- a/examples/1.9.x/server-rust/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-password-history-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-rust/examples/project/update-password-personal-data-policy.md index fc0cb39b2..5be326438 100644 --- a/examples/1.9.x/server-rust/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-password-personal-data-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-protocol.md b/examples/1.9.x/server-rust/examples/project/update-protocol.md index 935b832e3..126f548e6 100644 --- a/examples/1.9.x/server-rust/examples/project/update-protocol.md +++ b/examples/1.9.x/server-rust/examples/project/update-protocol.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-service.md b/examples/1.9.x/server-rust/examples/project/update-service.md index 3e69a585b..dea825a98 100644 --- a/examples/1.9.x/server-rust/examples/project/update-service.md +++ b/examples/1.9.x/server-rust/examples/project/update-service.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-rust/examples/project/update-session-alert-policy.md index cd67b887f..ae120df10 100644 --- a/examples/1.9.x/server-rust/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-session-alert-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-rust/examples/project/update-session-duration-policy.md index d6d7306e3..adf3f69d5 100644 --- a/examples/1.9.x/server-rust/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-session-duration-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-rust/examples/project/update-session-invalidation-policy.md index 8c275b30d..6735a6a5a 100644 --- a/examples/1.9.x/server-rust/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-session-invalidation-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-rust/examples/project/update-session-limit-policy.md index c4e9aa988..9c71ef90a 100644 --- a/examples/1.9.x/server-rust/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-session-limit-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-smtp.md b/examples/1.9.x/server-rust/examples/project/update-smtp.md index d3b7291f4..1b230b588 100644 --- a/examples/1.9.x/server-rust/examples/project/update-smtp.md +++ b/examples/1.9.x/server-rust/examples/project/update-smtp.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-rust/examples/project/update-user-limit-policy.md index 2b2d999b2..71e0e6386 100644 --- a/examples/1.9.x/server-rust/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-rust/examples/project/update-user-limit-policy.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-variable.md b/examples/1.9.x/server-rust/examples/project/update-variable.md index 21b4eac31..668b585c1 100644 --- a/examples/1.9.x/server-rust/examples/project/update-variable.md +++ b/examples/1.9.x/server-rust/examples/project/update-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-web-platform.md b/examples/1.9.x/server-rust/examples/project/update-web-platform.md index f5d44ea82..52938b0ae 100644 --- a/examples/1.9.x/server-rust/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-rust/examples/project/update-web-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/project/update-windows-platform.md b/examples/1.9.x/server-rust/examples/project/update-windows-platform.md index ea73c85e4..494df599c 100644 --- a/examples/1.9.x/server-rust/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-rust/examples/project/update-windows-platform.md @@ -5,7 +5,7 @@ use appwrite::services::Project; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/proxy/create-api-rule.md b/examples/1.9.x/server-rust/examples/proxy/create-api-rule.md index 740146a0e..7ffad9ed6 100644 --- a/examples/1.9.x/server-rust/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-rust/examples/proxy/create-api-rule.md @@ -5,7 +5,7 @@ use appwrite::services::Proxy; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/proxy/create-function-rule.md b/examples/1.9.x/server-rust/examples/proxy/create-function-rule.md index 0200f9d0b..df615c884 100644 --- a/examples/1.9.x/server-rust/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-rust/examples/proxy/create-function-rule.md @@ -5,7 +5,7 @@ use appwrite::services::Proxy; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-rust/examples/proxy/create-redirect-rule.md index 3cac48885..8ae89437d 100644 --- a/examples/1.9.x/server-rust/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-rust/examples/proxy/create-redirect-rule.md @@ -5,7 +5,7 @@ use appwrite::services::Proxy; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key @@ -14,7 +14,7 @@ async fn main() -> Result<(), Box> { let result = proxy.create_redirect_rule( "", "https://example.com", - appwrite::enums::StatusCode::MovedPermanently301, + appwrite::enums::RedirectStatusCode::MovedPermanently, "", appwrite::enums::ProxyResourceType::Site ).await?; diff --git a/examples/1.9.x/server-rust/examples/proxy/create-site-rule.md b/examples/1.9.x/server-rust/examples/proxy/create-site-rule.md index 457ff6c88..f74526be4 100644 --- a/examples/1.9.x/server-rust/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-rust/examples/proxy/create-site-rule.md @@ -5,7 +5,7 @@ use appwrite::services::Proxy; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/proxy/delete-rule.md b/examples/1.9.x/server-rust/examples/proxy/delete-rule.md index 485df0252..e11d063a3 100644 --- a/examples/1.9.x/server-rust/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-rust/examples/proxy/delete-rule.md @@ -5,7 +5,7 @@ use appwrite::services::Proxy; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/proxy/get-rule.md b/examples/1.9.x/server-rust/examples/proxy/get-rule.md index 4609619af..f626cf516 100644 --- a/examples/1.9.x/server-rust/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-rust/examples/proxy/get-rule.md @@ -5,7 +5,7 @@ use appwrite::services::Proxy; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/proxy/list-rules.md b/examples/1.9.x/server-rust/examples/proxy/list-rules.md index 400963fdf..bf1cf99c3 100644 --- a/examples/1.9.x/server-rust/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-rust/examples/proxy/list-rules.md @@ -5,7 +5,7 @@ use appwrite::services::Proxy; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/proxy/update-rule-status.md b/examples/1.9.x/server-rust/examples/proxy/update-rule-status.md index 0651b48bf..5e271d068 100644 --- a/examples/1.9.x/server-rust/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-rust/examples/proxy/update-rule-status.md @@ -5,7 +5,7 @@ use appwrite::services::Proxy; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/create-deployment.md b/examples/1.9.x/server-rust/examples/sites/create-deployment.md index 9bec31f56..72f854001 100644 --- a/examples/1.9.x/server-rust/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-rust/examples/sites/create-deployment.md @@ -6,7 +6,7 @@ use appwrite::InputFile; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-rust/examples/sites/create-duplicate-deployment.md index 802e36359..0f63be532 100644 --- a/examples/1.9.x/server-rust/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-rust/examples/sites/create-duplicate-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/create-template-deployment.md b/examples/1.9.x/server-rust/examples/sites/create-template-deployment.md index b5f1716de..8cc80f2f8 100644 --- a/examples/1.9.x/server-rust/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-rust/examples/sites/create-template-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/create-variable.md b/examples/1.9.x/server-rust/examples/sites/create-variable.md index 873c562a0..3e5e71917 100644 --- a/examples/1.9.x/server-rust/examples/sites/create-variable.md +++ b/examples/1.9.x/server-rust/examples/sites/create-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-rust/examples/sites/create-vcs-deployment.md index 9032a437e..667056d8f 100644 --- a/examples/1.9.x/server-rust/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-rust/examples/sites/create-vcs-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/create.md b/examples/1.9.x/server-rust/examples/sites/create.md index 63815123d..cb4a2defb 100644 --- a/examples/1.9.x/server-rust/examples/sites/create.md +++ b/examples/1.9.x/server-rust/examples/sites/create.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key @@ -14,8 +14,8 @@ async fn main() -> Result<(), Box> { let result = sites.create( "", "", - appwrite::enums::Framework::Analog, - appwrite::enums::BuildRuntime::Node145, + appwrite::enums::SiteFramework::Analog, + appwrite::enums::SiteBuildRuntime::Node145, Some(false), // optional Some(false), // optional Some(1), // optional @@ -23,13 +23,15 @@ async fn main() -> Result<(), Box> { Some(""), // optional Some(""), // optional Some(""), // optional - Some(appwrite::enums::Adapter::Static), // optional + Some(appwrite::enums::SiteAdapter::Static), // optional Some(""), // optional Some(""), // optional Some(""), // optional Some(""), // optional Some(false), // optional Some(""), // optional + Some(vec![]), // optional + Some(vec![]), // optional Some(""), // optional Some(""), // optional Some(0) // optional diff --git a/examples/1.9.x/server-rust/examples/sites/delete-deployment.md b/examples/1.9.x/server-rust/examples/sites/delete-deployment.md index 6b3e01a2e..d22b1a0da 100644 --- a/examples/1.9.x/server-rust/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-rust/examples/sites/delete-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/delete-log.md b/examples/1.9.x/server-rust/examples/sites/delete-log.md index d837d4edc..6414aa1a5 100644 --- a/examples/1.9.x/server-rust/examples/sites/delete-log.md +++ b/examples/1.9.x/server-rust/examples/sites/delete-log.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/delete-variable.md b/examples/1.9.x/server-rust/examples/sites/delete-variable.md index 83e2e545d..406f50063 100644 --- a/examples/1.9.x/server-rust/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-rust/examples/sites/delete-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/delete.md b/examples/1.9.x/server-rust/examples/sites/delete.md index f39237603..830e1d129 100644 --- a/examples/1.9.x/server-rust/examples/sites/delete.md +++ b/examples/1.9.x/server-rust/examples/sites/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/get-deployment-download.md b/examples/1.9.x/server-rust/examples/sites/get-deployment-download.md index da8b45ad4..f5a34b3d7 100644 --- a/examples/1.9.x/server-rust/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-rust/examples/sites/get-deployment-download.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/get-deployment.md b/examples/1.9.x/server-rust/examples/sites/get-deployment.md index 5b258c78f..76b4c1185 100644 --- a/examples/1.9.x/server-rust/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-rust/examples/sites/get-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/get-log.md b/examples/1.9.x/server-rust/examples/sites/get-log.md index 6cfff4f98..ed2672aaa 100644 --- a/examples/1.9.x/server-rust/examples/sites/get-log.md +++ b/examples/1.9.x/server-rust/examples/sites/get-log.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/get-variable.md b/examples/1.9.x/server-rust/examples/sites/get-variable.md index 6fa109bf4..64ffcd430 100644 --- a/examples/1.9.x/server-rust/examples/sites/get-variable.md +++ b/examples/1.9.x/server-rust/examples/sites/get-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/get.md b/examples/1.9.x/server-rust/examples/sites/get.md index ec7cbb815..3488c7df3 100644 --- a/examples/1.9.x/server-rust/examples/sites/get.md +++ b/examples/1.9.x/server-rust/examples/sites/get.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/list-deployments.md b/examples/1.9.x/server-rust/examples/sites/list-deployments.md index 712b53e12..fb41ce0f9 100644 --- a/examples/1.9.x/server-rust/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-rust/examples/sites/list-deployments.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/list-frameworks.md b/examples/1.9.x/server-rust/examples/sites/list-frameworks.md index 1252124c9..acf0a3168 100644 --- a/examples/1.9.x/server-rust/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-rust/examples/sites/list-frameworks.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/list-logs.md b/examples/1.9.x/server-rust/examples/sites/list-logs.md index 8ff3b46d5..fef019990 100644 --- a/examples/1.9.x/server-rust/examples/sites/list-logs.md +++ b/examples/1.9.x/server-rust/examples/sites/list-logs.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/list-specifications.md b/examples/1.9.x/server-rust/examples/sites/list-specifications.md index 0a217ae93..52382c2fe 100644 --- a/examples/1.9.x/server-rust/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-rust/examples/sites/list-specifications.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/list-variables.md b/examples/1.9.x/server-rust/examples/sites/list-variables.md index 5bc1c9b16..61641dd3d 100644 --- a/examples/1.9.x/server-rust/examples/sites/list-variables.md +++ b/examples/1.9.x/server-rust/examples/sites/list-variables.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/list.md b/examples/1.9.x/server-rust/examples/sites/list.md index e98928c78..915fab7bd 100644 --- a/examples/1.9.x/server-rust/examples/sites/list.md +++ b/examples/1.9.x/server-rust/examples/sites/list.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/update-deployment-status.md b/examples/1.9.x/server-rust/examples/sites/update-deployment-status.md index bae9438fc..6ad85ece6 100644 --- a/examples/1.9.x/server-rust/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-rust/examples/sites/update-deployment-status.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/update-site-deployment.md b/examples/1.9.x/server-rust/examples/sites/update-site-deployment.md index 9fef04f88..5f6e823f3 100644 --- a/examples/1.9.x/server-rust/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-rust/examples/sites/update-site-deployment.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/update-variable.md b/examples/1.9.x/server-rust/examples/sites/update-variable.md index 9ecbfd8b7..7e98e5791 100644 --- a/examples/1.9.x/server-rust/examples/sites/update-variable.md +++ b/examples/1.9.x/server-rust/examples/sites/update-variable.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/sites/update.md b/examples/1.9.x/server-rust/examples/sites/update.md index c08ae3aa0..d0d9f2974 100644 --- a/examples/1.9.x/server-rust/examples/sites/update.md +++ b/examples/1.9.x/server-rust/examples/sites/update.md @@ -5,7 +5,7 @@ use appwrite::services::Sites; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key @@ -14,7 +14,7 @@ async fn main() -> Result<(), Box> { let result = sites.update( "", "", - appwrite::enums::Framework::Analog, + appwrite::enums::SiteFramework::Analog, Some(false), // optional Some(false), // optional Some(1), // optional @@ -22,14 +22,16 @@ async fn main() -> Result<(), Box> { Some(""), // optional Some(""), // optional Some(""), // optional - Some(appwrite::enums::BuildRuntime::Node145), // optional - Some(appwrite::enums::Adapter::Static), // optional + Some(appwrite::enums::SiteBuildRuntime::Node145), // optional + Some(appwrite::enums::SiteAdapter::Static), // optional Some(""), // optional Some(""), // optional Some(""), // optional Some(""), // optional Some(false), // optional Some(""), // optional + Some(vec![]), // optional + Some(vec![]), // optional Some(""), // optional Some(""), // optional Some(0) // optional diff --git a/examples/1.9.x/server-rust/examples/storage/create-bucket.md b/examples/1.9.x/server-rust/examples/storage/create-bucket.md index 939e4b517..0f8e81647 100644 --- a/examples/1.9.x/server-rust/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-rust/examples/storage/create-bucket.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/storage/create-file.md b/examples/1.9.x/server-rust/examples/storage/create-file.md index ccf43557a..ec2150fc9 100644 --- a/examples/1.9.x/server-rust/examples/storage/create-file.md +++ b/examples/1.9.x/server-rust/examples/storage/create-file.md @@ -8,7 +8,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/storage/delete-bucket.md b/examples/1.9.x/server-rust/examples/storage/delete-bucket.md index dfd3fe95d..a26d2f8c9 100644 --- a/examples/1.9.x/server-rust/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-rust/examples/storage/delete-bucket.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/storage/delete-file.md b/examples/1.9.x/server-rust/examples/storage/delete-file.md index 960aa86c0..ee2b7c638 100644 --- a/examples/1.9.x/server-rust/examples/storage/delete-file.md +++ b/examples/1.9.x/server-rust/examples/storage/delete-file.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/storage/get-bucket.md b/examples/1.9.x/server-rust/examples/storage/get-bucket.md index a1f6b3359..3d665b8e9 100644 --- a/examples/1.9.x/server-rust/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-rust/examples/storage/get-bucket.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/storage/get-file-download.md b/examples/1.9.x/server-rust/examples/storage/get-file-download.md index 1119b18fe..14c72ecaf 100644 --- a/examples/1.9.x/server-rust/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-rust/examples/storage/get-file-download.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/storage/get-file-preview.md b/examples/1.9.x/server-rust/examples/storage/get-file-preview.md index 004702cfe..a76c20c86 100644 --- a/examples/1.9.x/server-rust/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-rust/examples/storage/get-file-preview.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/storage/get-file-view.md b/examples/1.9.x/server-rust/examples/storage/get-file-view.md index 01079108b..5bccc7168 100644 --- a/examples/1.9.x/server-rust/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-rust/examples/storage/get-file-view.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/storage/get-file.md b/examples/1.9.x/server-rust/examples/storage/get-file.md index 35de19dce..39a198dd4 100644 --- a/examples/1.9.x/server-rust/examples/storage/get-file.md +++ b/examples/1.9.x/server-rust/examples/storage/get-file.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/storage/list-buckets.md b/examples/1.9.x/server-rust/examples/storage/list-buckets.md index 12b9bb606..f5654d17d 100644 --- a/examples/1.9.x/server-rust/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-rust/examples/storage/list-buckets.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/storage/list-files.md b/examples/1.9.x/server-rust/examples/storage/list-files.md index 8cc678171..a589e68e8 100644 --- a/examples/1.9.x/server-rust/examples/storage/list-files.md +++ b/examples/1.9.x/server-rust/examples/storage/list-files.md @@ -5,7 +5,7 @@ use appwrite::services::Storage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/storage/update-bucket.md b/examples/1.9.x/server-rust/examples/storage/update-bucket.md index 93e88dc9b..a5c4b351b 100644 --- a/examples/1.9.x/server-rust/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-rust/examples/storage/update-bucket.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/storage/update-file.md b/examples/1.9.x/server-rust/examples/storage/update-file.md index 84632094f..cfa37df88 100644 --- a/examples/1.9.x/server-rust/examples/storage/update-file.md +++ b/examples/1.9.x/server-rust/examples/storage/update-file.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-big-int-column.md index 897ed1d19..e75427dc2 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-big-int-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-boolean-column.md index e05f581bb..2036c0ae0 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-boolean-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-datetime-column.md index b9ddd4fda..444474d53 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-datetime-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-email-column.md index 19d0bc04c..7c8e9772d 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-email-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-enum-column.md index fe9c61036..b2b9c077a 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-enum-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-float-column.md index ca7735eb7..fbaae628d 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-float-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-index.md b/examples/1.9.x/server-rust/examples/tablesdb/create-index.md index 2807f30be..42447b577 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-index.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-integer-column.md index 83df6e5d7..c894c4fa2 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-integer-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-ip-column.md index e6de2c102..f558aaff7 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-ip-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-line-column.md index e9f03af44..b8259d797 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-line-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-longtext-column.md index fd07339b0..6b4aff5a0 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-longtext-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-mediumtext-column.md index adc8a26f1..67c50ac37 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-mediumtext-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-operations.md b/examples/1.9.x/server-rust/examples/tablesdb/create-operations.md index 30bd0fcf0..b38adf735 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-operations.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-point-column.md index 2a72e0c6d..6b52e7f54 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-point-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-polygon-column.md index 18cbe4858..152f89767 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-polygon-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-relationship-column.md index fb288e898..1083dd546 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-relationship-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-row.md b/examples/1.9.x/server-rust/examples/tablesdb/create-row.md index 8dd7d1564..eed726a94 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-row.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-rows.md b/examples/1.9.x/server-rust/examples/tablesdb/create-rows.md index b5722c489..7468149f9 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-rows.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-string-column.md index 17f251524..e2937b3cd 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-string-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-table.md b/examples/1.9.x/server-rust/examples/tablesdb/create-table.md index 46aa1457b..67dcbfa45 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-table.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-text-column.md index 492d1f6fc..019e32980 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-text-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-rust/examples/tablesdb/create-transaction.md index e8b878838..fd676999c 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-transaction.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-url-column.md index 000fd91b3..9833d6234 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-url-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-rust/examples/tablesdb/create-varchar-column.md index 4ee2404ac..8c308e10c 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create-varchar-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/create.md b/examples/1.9.x/server-rust/examples/tablesdb/create.md index 8a787bac1..fa2b3fdd3 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/create.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/create.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-rust/examples/tablesdb/decrement-row-column.md index 5cb4b942d..13fa3ae42 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/decrement-row-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/delete-column.md b/examples/1.9.x/server-rust/examples/tablesdb/delete-column.md index b16779be2..dceed8d50 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/delete-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/delete-index.md b/examples/1.9.x/server-rust/examples/tablesdb/delete-index.md index 43da9eb4d..a9d1df58a 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/delete-index.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/delete-row.md b/examples/1.9.x/server-rust/examples/tablesdb/delete-row.md index e6da0e2e3..0e8dd8830 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/delete-row.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-rust/examples/tablesdb/delete-rows.md index 92520ae1c..ce9e0add1 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/delete-rows.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/delete-table.md b/examples/1.9.x/server-rust/examples/tablesdb/delete-table.md index 2838cac73..b104ed832 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/delete-table.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-rust/examples/tablesdb/delete-transaction.md index 5fdc148af..e4ce5cdee 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/delete-transaction.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/delete.md b/examples/1.9.x/server-rust/examples/tablesdb/delete.md index 3be7ac0c7..7e0051035 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/delete.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/get-column.md b/examples/1.9.x/server-rust/examples/tablesdb/get-column.md index 2d3c3ee1f..96787ad07 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/get-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/get-index.md b/examples/1.9.x/server-rust/examples/tablesdb/get-index.md index 7319aa286..aa29c46f2 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/get-index.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/get-row.md b/examples/1.9.x/server-rust/examples/tablesdb/get-row.md index 0c4dd7b97..ec185d986 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/get-row.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/get-table.md b/examples/1.9.x/server-rust/examples/tablesdb/get-table.md index 17299f315..62bd984d6 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/get-table.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-rust/examples/tablesdb/get-transaction.md index 957072d93..5e4e2adf4 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/get-transaction.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/get.md b/examples/1.9.x/server-rust/examples/tablesdb/get.md index a5400206c..09c865932 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/get.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/get.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-rust/examples/tablesdb/increment-row-column.md index be4f0d31c..e575e6cc6 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/increment-row-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/list-columns.md b/examples/1.9.x/server-rust/examples/tablesdb/list-columns.md index 12f276c8f..6a728c418 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/list-columns.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-rust/examples/tablesdb/list-indexes.md index 8153a1ec4..b88038468 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/list-indexes.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/list-rows.md b/examples/1.9.x/server-rust/examples/tablesdb/list-rows.md index 7d6e8aede..5151f32d2 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/list-rows.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/list-tables.md b/examples/1.9.x/server-rust/examples/tablesdb/list-tables.md index 4102c92a4..1df06b2e4 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/list-tables.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-rust/examples/tablesdb/list-transactions.md index 047974237..117abc174 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/list-transactions.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/list.md b/examples/1.9.x/server-rust/examples/tablesdb/list.md index 40543cd76..8c3052555 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/list.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/list.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-big-int-column.md index b6b9f18f7..e143a69aa 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-big-int-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-boolean-column.md index a7a871aa3..02920a7ab 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-boolean-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-datetime-column.md index 6200842ae..1edecaeac 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-datetime-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-email-column.md index e19b352d2..874cf398b 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-email-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-enum-column.md index d0de7b0f8..83e47275d 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-enum-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-float-column.md index 77ee53201..701297ef7 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-float-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-integer-column.md index a290193bb..fe89571ab 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-integer-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-ip-column.md index d20dc4779..24c55920a 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-ip-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-line-column.md index 60aa70abc..c5816ce4f 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-line-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-longtext-column.md index e7867b182..5e4a2c95c 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-longtext-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-mediumtext-column.md index df7813f39..a2bafcc1e 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-mediumtext-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-point-column.md index 35264ba30..d42810aab 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-point-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-polygon-column.md index 01da757d5..a5dd59881 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-polygon-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-relationship-column.md index a242ceb89..1473debdc 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-relationship-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-row.md b/examples/1.9.x/server-rust/examples/tablesdb/update-row.md index b81fbc7c7..eb4910166 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-row.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-rows.md b/examples/1.9.x/server-rust/examples/tablesdb/update-rows.md index 582a9b33f..1b3a5ed7d 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-rows.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-string-column.md index 0bdf03a73..ba1d231da 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-string-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-table.md b/examples/1.9.x/server-rust/examples/tablesdb/update-table.md index 184d9d6d4..5b90aa7d4 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-table.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-text-column.md index 8b29968e2..f0094627a 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-text-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-rust/examples/tablesdb/update-transaction.md index 39259fffd..2c738a601 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-transaction.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-url-column.md index 853a5ec9e..e4aca65d9 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-url-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-rust/examples/tablesdb/update-varchar-column.md index ff3a27f2f..8d43ccfad 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update-varchar-column.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/update.md b/examples/1.9.x/server-rust/examples/tablesdb/update.md index 13251f035..0bcd8d93f 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/update.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/update.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-rust/examples/tablesdb/upsert-row.md index 150504999..181b17123 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/upsert-row.md @@ -7,7 +7,7 @@ use appwrite::role::Role; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-rust/examples/tablesdb/upsert-rows.md index ba84a600a..ec9359df2 100644 --- a/examples/1.9.x/server-rust/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-rust/examples/tablesdb/upsert-rows.md @@ -5,7 +5,7 @@ use appwrite::services::TablesDB; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/teams/create-membership.md b/examples/1.9.x/server-rust/examples/teams/create-membership.md index 5366d5e28..8d849bae4 100644 --- a/examples/1.9.x/server-rust/examples/teams/create-membership.md +++ b/examples/1.9.x/server-rust/examples/teams/create-membership.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/create.md b/examples/1.9.x/server-rust/examples/teams/create.md index 5877bdc93..8e889c267 100644 --- a/examples/1.9.x/server-rust/examples/teams/create.md +++ b/examples/1.9.x/server-rust/examples/teams/create.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/delete-membership.md b/examples/1.9.x/server-rust/examples/teams/delete-membership.md index 6ed7d458f..f6cad85c6 100644 --- a/examples/1.9.x/server-rust/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-rust/examples/teams/delete-membership.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/delete.md b/examples/1.9.x/server-rust/examples/teams/delete.md index c13da3a0e..b4e78c02f 100644 --- a/examples/1.9.x/server-rust/examples/teams/delete.md +++ b/examples/1.9.x/server-rust/examples/teams/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/get-membership.md b/examples/1.9.x/server-rust/examples/teams/get-membership.md index 595ed8ce1..c69e331fd 100644 --- a/examples/1.9.x/server-rust/examples/teams/get-membership.md +++ b/examples/1.9.x/server-rust/examples/teams/get-membership.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/get-prefs.md b/examples/1.9.x/server-rust/examples/teams/get-prefs.md index 10db6fcc0..ceddd8750 100644 --- a/examples/1.9.x/server-rust/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-rust/examples/teams/get-prefs.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/get.md b/examples/1.9.x/server-rust/examples/teams/get.md index ddaa9ae57..1e691fdd5 100644 --- a/examples/1.9.x/server-rust/examples/teams/get.md +++ b/examples/1.9.x/server-rust/examples/teams/get.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/list-memberships.md b/examples/1.9.x/server-rust/examples/teams/list-memberships.md index 6390127f5..8b9cc1d1c 100644 --- a/examples/1.9.x/server-rust/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-rust/examples/teams/list-memberships.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/list.md b/examples/1.9.x/server-rust/examples/teams/list.md index 8e55273ca..8e1ba962c 100644 --- a/examples/1.9.x/server-rust/examples/teams/list.md +++ b/examples/1.9.x/server-rust/examples/teams/list.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/update-membership-status.md b/examples/1.9.x/server-rust/examples/teams/update-membership-status.md index d6a143bb8..97aca1f30 100644 --- a/examples/1.9.x/server-rust/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-rust/examples/teams/update-membership-status.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/update-membership.md b/examples/1.9.x/server-rust/examples/teams/update-membership.md index 6c6d0d792..7f63cd67e 100644 --- a/examples/1.9.x/server-rust/examples/teams/update-membership.md +++ b/examples/1.9.x/server-rust/examples/teams/update-membership.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/update-name.md b/examples/1.9.x/server-rust/examples/teams/update-name.md index 47e6e6c58..2089d2399 100644 --- a/examples/1.9.x/server-rust/examples/teams/update-name.md +++ b/examples/1.9.x/server-rust/examples/teams/update-name.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/teams/update-prefs.md b/examples/1.9.x/server-rust/examples/teams/update-prefs.md index dd19536b7..27756a51e 100644 --- a/examples/1.9.x/server-rust/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-rust/examples/teams/update-prefs.md @@ -5,7 +5,7 @@ use appwrite::services::Teams; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_session(""); // The user session to authenticate with diff --git a/examples/1.9.x/server-rust/examples/tokens/create-file-token.md b/examples/1.9.x/server-rust/examples/tokens/create-file-token.md index e1577cd44..4546a7a7d 100644 --- a/examples/1.9.x/server-rust/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-rust/examples/tokens/create-file-token.md @@ -5,7 +5,7 @@ use appwrite::services::Tokens; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tokens/delete.md b/examples/1.9.x/server-rust/examples/tokens/delete.md index e44ed7c27..a456f07bd 100644 --- a/examples/1.9.x/server-rust/examples/tokens/delete.md +++ b/examples/1.9.x/server-rust/examples/tokens/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Tokens; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tokens/get.md b/examples/1.9.x/server-rust/examples/tokens/get.md index 769a18cbf..949f51fd4 100644 --- a/examples/1.9.x/server-rust/examples/tokens/get.md +++ b/examples/1.9.x/server-rust/examples/tokens/get.md @@ -5,7 +5,7 @@ use appwrite::services::Tokens; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tokens/list.md b/examples/1.9.x/server-rust/examples/tokens/list.md index b399512d2..a78008b31 100644 --- a/examples/1.9.x/server-rust/examples/tokens/list.md +++ b/examples/1.9.x/server-rust/examples/tokens/list.md @@ -5,7 +5,7 @@ use appwrite::services::Tokens; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/tokens/update.md b/examples/1.9.x/server-rust/examples/tokens/update.md index b6db1f7c3..7b76d5b2a 100644 --- a/examples/1.9.x/server-rust/examples/tokens/update.md +++ b/examples/1.9.x/server-rust/examples/tokens/update.md @@ -5,7 +5,7 @@ use appwrite::services::Tokens; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/usage/list-events.md b/examples/1.9.x/server-rust/examples/usage/list-events.md index 38c8d6ead..c53249b5c 100644 --- a/examples/1.9.x/server-rust/examples/usage/list-events.md +++ b/examples/1.9.x/server-rust/examples/usage/list-events.md @@ -5,7 +5,7 @@ use appwrite::services::Usage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/usage/list-gauges.md b/examples/1.9.x/server-rust/examples/usage/list-gauges.md index c2fa2863e..35f828524 100644 --- a/examples/1.9.x/server-rust/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-rust/examples/usage/list-gauges.md @@ -5,7 +5,7 @@ use appwrite::services::Usage; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-argon-2-user.md b/examples/1.9.x/server-rust/examples/users/create-argon-2-user.md index 5e58b7b26..619ee9a92 100644 --- a/examples/1.9.x/server-rust/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-rust/examples/users/create-argon-2-user.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-rust/examples/users/create-bcrypt-user.md index 39cfbeb1d..1f03e46b6 100644 --- a/examples/1.9.x/server-rust/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-rust/examples/users/create-bcrypt-user.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-jwt.md b/examples/1.9.x/server-rust/examples/users/create-jwt.md index 2e5949b97..4b8d11b58 100644 --- a/examples/1.9.x/server-rust/examples/users/create-jwt.md +++ b/examples/1.9.x/server-rust/examples/users/create-jwt.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-md-5-user.md b/examples/1.9.x/server-rust/examples/users/create-md-5-user.md index 04c3f4a16..e44131a6a 100644 --- a/examples/1.9.x/server-rust/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-rust/examples/users/create-md-5-user.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-rust/examples/users/create-mfa-recovery-codes.md index 791bfc22c..866b2d2dd 100644 --- a/examples/1.9.x/server-rust/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-rust/examples/users/create-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-rust/examples/users/create-ph-pass-user.md index 62d0b5fef..02762f81f 100644 --- a/examples/1.9.x/server-rust/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-rust/examples/users/create-ph-pass-user.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-rust/examples/users/create-scrypt-modified-user.md index f576eec58..622693ff7 100644 --- a/examples/1.9.x/server-rust/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-rust/examples/users/create-scrypt-modified-user.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-scrypt-user.md b/examples/1.9.x/server-rust/examples/users/create-scrypt-user.md index ec652dfb5..9c5c960ed 100644 --- a/examples/1.9.x/server-rust/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-rust/examples/users/create-scrypt-user.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-session.md b/examples/1.9.x/server-rust/examples/users/create-session.md index b19e7b8a1..8fc1a6808 100644 --- a/examples/1.9.x/server-rust/examples/users/create-session.md +++ b/examples/1.9.x/server-rust/examples/users/create-session.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-sha-user.md b/examples/1.9.x/server-rust/examples/users/create-sha-user.md index f4024a84f..e0bb2ec1c 100644 --- a/examples/1.9.x/server-rust/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-rust/examples/users/create-sha-user.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-target.md b/examples/1.9.x/server-rust/examples/users/create-target.md index 680706db7..22db26e3b 100644 --- a/examples/1.9.x/server-rust/examples/users/create-target.md +++ b/examples/1.9.x/server-rust/examples/users/create-target.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create-token.md b/examples/1.9.x/server-rust/examples/users/create-token.md index cfa329308..6eeaf6923 100644 --- a/examples/1.9.x/server-rust/examples/users/create-token.md +++ b/examples/1.9.x/server-rust/examples/users/create-token.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/create.md b/examples/1.9.x/server-rust/examples/users/create.md index 1600e5437..76b5b5ed8 100644 --- a/examples/1.9.x/server-rust/examples/users/create.md +++ b/examples/1.9.x/server-rust/examples/users/create.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/delete-identity.md b/examples/1.9.x/server-rust/examples/users/delete-identity.md index 928edf662..22d8e0ec7 100644 --- a/examples/1.9.x/server-rust/examples/users/delete-identity.md +++ b/examples/1.9.x/server-rust/examples/users/delete-identity.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-rust/examples/users/delete-mfa-authenticator.md index 2078f128d..6cf6fba5c 100644 --- a/examples/1.9.x/server-rust/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-rust/examples/users/delete-mfa-authenticator.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/delete-session.md b/examples/1.9.x/server-rust/examples/users/delete-session.md index 4f3003832..540a54a19 100644 --- a/examples/1.9.x/server-rust/examples/users/delete-session.md +++ b/examples/1.9.x/server-rust/examples/users/delete-session.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/delete-sessions.md b/examples/1.9.x/server-rust/examples/users/delete-sessions.md index 1ef60aa4c..20dccc6ab 100644 --- a/examples/1.9.x/server-rust/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-rust/examples/users/delete-sessions.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/delete-target.md b/examples/1.9.x/server-rust/examples/users/delete-target.md index f3977c77a..12e2cc7b0 100644 --- a/examples/1.9.x/server-rust/examples/users/delete-target.md +++ b/examples/1.9.x/server-rust/examples/users/delete-target.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/delete.md b/examples/1.9.x/server-rust/examples/users/delete.md index 841831dfc..518f21205 100644 --- a/examples/1.9.x/server-rust/examples/users/delete.md +++ b/examples/1.9.x/server-rust/examples/users/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-rust/examples/users/get-mfa-recovery-codes.md index 33362296c..29ad8ea48 100644 --- a/examples/1.9.x/server-rust/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-rust/examples/users/get-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/get-prefs.md b/examples/1.9.x/server-rust/examples/users/get-prefs.md index 17447150c..c2d86f7ed 100644 --- a/examples/1.9.x/server-rust/examples/users/get-prefs.md +++ b/examples/1.9.x/server-rust/examples/users/get-prefs.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/get-target.md b/examples/1.9.x/server-rust/examples/users/get-target.md index 1a82ad773..39d4c8858 100644 --- a/examples/1.9.x/server-rust/examples/users/get-target.md +++ b/examples/1.9.x/server-rust/examples/users/get-target.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/get.md b/examples/1.9.x/server-rust/examples/users/get.md index 9c1628ae3..76f503052 100644 --- a/examples/1.9.x/server-rust/examples/users/get.md +++ b/examples/1.9.x/server-rust/examples/users/get.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/list-identities.md b/examples/1.9.x/server-rust/examples/users/list-identities.md index 4cb2d54da..bd0db1d2f 100644 --- a/examples/1.9.x/server-rust/examples/users/list-identities.md +++ b/examples/1.9.x/server-rust/examples/users/list-identities.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/list-logs.md b/examples/1.9.x/server-rust/examples/users/list-logs.md index 6f5b333eb..0949a2ff2 100644 --- a/examples/1.9.x/server-rust/examples/users/list-logs.md +++ b/examples/1.9.x/server-rust/examples/users/list-logs.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/list-memberships.md b/examples/1.9.x/server-rust/examples/users/list-memberships.md index f9a3de4b4..1897216f7 100644 --- a/examples/1.9.x/server-rust/examples/users/list-memberships.md +++ b/examples/1.9.x/server-rust/examples/users/list-memberships.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/list-mfa-factors.md b/examples/1.9.x/server-rust/examples/users/list-mfa-factors.md index 4af4a7961..770c6dc5a 100644 --- a/examples/1.9.x/server-rust/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-rust/examples/users/list-mfa-factors.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/list-sessions.md b/examples/1.9.x/server-rust/examples/users/list-sessions.md index d2337f6dc..0e3a9917d 100644 --- a/examples/1.9.x/server-rust/examples/users/list-sessions.md +++ b/examples/1.9.x/server-rust/examples/users/list-sessions.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/list-targets.md b/examples/1.9.x/server-rust/examples/users/list-targets.md index 591432196..024b8c4ad 100644 --- a/examples/1.9.x/server-rust/examples/users/list-targets.md +++ b/examples/1.9.x/server-rust/examples/users/list-targets.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/list.md b/examples/1.9.x/server-rust/examples/users/list.md index 108a0a3ea..201e0506c 100644 --- a/examples/1.9.x/server-rust/examples/users/list.md +++ b/examples/1.9.x/server-rust/examples/users/list.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-email-verification.md b/examples/1.9.x/server-rust/examples/users/update-email-verification.md index e562d5b1f..4d75343b8 100644 --- a/examples/1.9.x/server-rust/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-rust/examples/users/update-email-verification.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-email.md b/examples/1.9.x/server-rust/examples/users/update-email.md index 24a073fee..69405b906 100644 --- a/examples/1.9.x/server-rust/examples/users/update-email.md +++ b/examples/1.9.x/server-rust/examples/users/update-email.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-impersonator.md b/examples/1.9.x/server-rust/examples/users/update-impersonator.md index 22a85a04b..86fcff3a3 100644 --- a/examples/1.9.x/server-rust/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-rust/examples/users/update-impersonator.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-labels.md b/examples/1.9.x/server-rust/examples/users/update-labels.md index 00922e3c2..411c51510 100644 --- a/examples/1.9.x/server-rust/examples/users/update-labels.md +++ b/examples/1.9.x/server-rust/examples/users/update-labels.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-rust/examples/users/update-mfa-recovery-codes.md index f50cec106..4fe73f67d 100644 --- a/examples/1.9.x/server-rust/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-rust/examples/users/update-mfa-recovery-codes.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-mfa.md b/examples/1.9.x/server-rust/examples/users/update-mfa.md index 0fad27cd1..780fd3246 100644 --- a/examples/1.9.x/server-rust/examples/users/update-mfa.md +++ b/examples/1.9.x/server-rust/examples/users/update-mfa.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-name.md b/examples/1.9.x/server-rust/examples/users/update-name.md index 8dafad72b..006dd9309 100644 --- a/examples/1.9.x/server-rust/examples/users/update-name.md +++ b/examples/1.9.x/server-rust/examples/users/update-name.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-password.md b/examples/1.9.x/server-rust/examples/users/update-password.md index c1451c1bf..b15fe2a8c 100644 --- a/examples/1.9.x/server-rust/examples/users/update-password.md +++ b/examples/1.9.x/server-rust/examples/users/update-password.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-phone-verification.md b/examples/1.9.x/server-rust/examples/users/update-phone-verification.md index bd60510d2..fcec787ee 100644 --- a/examples/1.9.x/server-rust/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-rust/examples/users/update-phone-verification.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-phone.md b/examples/1.9.x/server-rust/examples/users/update-phone.md index ea226002e..ff2295dc8 100644 --- a/examples/1.9.x/server-rust/examples/users/update-phone.md +++ b/examples/1.9.x/server-rust/examples/users/update-phone.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-prefs.md b/examples/1.9.x/server-rust/examples/users/update-prefs.md index 117845eab..39bafe44b 100644 --- a/examples/1.9.x/server-rust/examples/users/update-prefs.md +++ b/examples/1.9.x/server-rust/examples/users/update-prefs.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-status.md b/examples/1.9.x/server-rust/examples/users/update-status.md index c34e76f18..34ba714e3 100644 --- a/examples/1.9.x/server-rust/examples/users/update-status.md +++ b/examples/1.9.x/server-rust/examples/users/update-status.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/users/update-target.md b/examples/1.9.x/server-rust/examples/users/update-target.md index a31537871..9c0dd0b3f 100644 --- a/examples/1.9.x/server-rust/examples/users/update-target.md +++ b/examples/1.9.x/server-rust/examples/users/update-target.md @@ -5,7 +5,7 @@ use appwrite::services::Users; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/webhooks/create.md b/examples/1.9.x/server-rust/examples/webhooks/create.md index 98128546c..495cab960 100644 --- a/examples/1.9.x/server-rust/examples/webhooks/create.md +++ b/examples/1.9.x/server-rust/examples/webhooks/create.md @@ -5,7 +5,7 @@ use appwrite::services::Webhooks; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/webhooks/delete.md b/examples/1.9.x/server-rust/examples/webhooks/delete.md index de187be5b..1303bd75a 100644 --- a/examples/1.9.x/server-rust/examples/webhooks/delete.md +++ b/examples/1.9.x/server-rust/examples/webhooks/delete.md @@ -5,7 +5,7 @@ use appwrite::services::Webhooks; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/webhooks/get.md b/examples/1.9.x/server-rust/examples/webhooks/get.md index a2ccad14d..3541de713 100644 --- a/examples/1.9.x/server-rust/examples/webhooks/get.md +++ b/examples/1.9.x/server-rust/examples/webhooks/get.md @@ -5,7 +5,7 @@ use appwrite::services::Webhooks; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/webhooks/list.md b/examples/1.9.x/server-rust/examples/webhooks/list.md index 9da468e6e..1d2f27cca 100644 --- a/examples/1.9.x/server-rust/examples/webhooks/list.md +++ b/examples/1.9.x/server-rust/examples/webhooks/list.md @@ -5,7 +5,7 @@ use appwrite::services::Webhooks; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/webhooks/update-secret.md b/examples/1.9.x/server-rust/examples/webhooks/update-secret.md index d27ecbb31..ed3bb84b4 100644 --- a/examples/1.9.x/server-rust/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-rust/examples/webhooks/update-secret.md @@ -5,7 +5,7 @@ use appwrite::services::Webhooks; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-rust/examples/webhooks/update.md b/examples/1.9.x/server-rust/examples/webhooks/update.md index b6804e1ca..184418e25 100644 --- a/examples/1.9.x/server-rust/examples/webhooks/update.md +++ b/examples/1.9.x/server-rust/examples/webhooks/update.md @@ -5,7 +5,7 @@ use appwrite::services::Webhooks; #[tokio::main] async fn main() -> Result<(), Box> { let client = Client::new(); - client.set_endpoint("https://.cloud.appwrite.io/v1"); // Your API Endpoint + client.set_endpoint(""); // Your API Endpoint client.set_project(""); // Your project ID client.set_key(""); // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/account/create-anonymous-session.md b/examples/1.9.x/server-swift/examples/account/create-anonymous-session.md index a47dc0f54..113246c31 100644 --- a/examples/1.9.x/server-swift/examples/account/create-anonymous-session.md +++ b/examples/1.9.x/server-swift/examples/account/create-anonymous-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-email-password-session.md b/examples/1.9.x/server-swift/examples/account/create-email-password-session.md index d3a5acf12..008df96c2 100644 --- a/examples/1.9.x/server-swift/examples/account/create-email-password-session.md +++ b/examples/1.9.x/server-swift/examples/account/create-email-password-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-email-token.md b/examples/1.9.x/server-swift/examples/account/create-email-token.md index 179c7e808..ebdb68811 100644 --- a/examples/1.9.x/server-swift/examples/account/create-email-token.md +++ b/examples/1.9.x/server-swift/examples/account/create-email-token.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-email-verification.md b/examples/1.9.x/server-swift/examples/account/create-email-verification.md index c7ea6491d..cf0e68c4f 100644 --- a/examples/1.9.x/server-swift/examples/account/create-email-verification.md +++ b/examples/1.9.x/server-swift/examples/account/create-email-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-jwt.md b/examples/1.9.x/server-swift/examples/account/create-jwt.md index a24f912e8..1b276a6fd 100644 --- a/examples/1.9.x/server-swift/examples/account/create-jwt.md +++ b/examples/1.9.x/server-swift/examples/account/create-jwt.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-magic-url-token.md b/examples/1.9.x/server-swift/examples/account/create-magic-url-token.md index fb168c7e5..34854eec3 100644 --- a/examples/1.9.x/server-swift/examples/account/create-magic-url-token.md +++ b/examples/1.9.x/server-swift/examples/account/create-magic-url-token.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-mfa-authenticator.md b/examples/1.9.x/server-swift/examples/account/create-mfa-authenticator.md index 6a8d37ebe..af02f9918 100644 --- a/examples/1.9.x/server-swift/examples/account/create-mfa-authenticator.md +++ b/examples/1.9.x/server-swift/examples/account/create-mfa-authenticator.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-mfa-challenge.md b/examples/1.9.x/server-swift/examples/account/create-mfa-challenge.md index d6a19b858..edd1c9841 100644 --- a/examples/1.9.x/server-swift/examples/account/create-mfa-challenge.md +++ b/examples/1.9.x/server-swift/examples/account/create-mfa-challenge.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-mfa-recovery-codes.md b/examples/1.9.x/server-swift/examples/account/create-mfa-recovery-codes.md index 9c3147002..549221729 100644 --- a/examples/1.9.x/server-swift/examples/account/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-swift/examples/account/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-o-auth-2-token.md b/examples/1.9.x/server-swift/examples/account/create-o-auth-2-token.md index b33820893..cfe20abfb 100644 --- a/examples/1.9.x/server-swift/examples/account/create-o-auth-2-token.md +++ b/examples/1.9.x/server-swift/examples/account/create-o-auth-2-token.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-phone-token.md b/examples/1.9.x/server-swift/examples/account/create-phone-token.md index 9d43ba674..4f40935c3 100644 --- a/examples/1.9.x/server-swift/examples/account/create-phone-token.md +++ b/examples/1.9.x/server-swift/examples/account/create-phone-token.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-phone-verification.md b/examples/1.9.x/server-swift/examples/account/create-phone-verification.md index 87973f65d..559746a20 100644 --- a/examples/1.9.x/server-swift/examples/account/create-phone-verification.md +++ b/examples/1.9.x/server-swift/examples/account/create-phone-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-recovery.md b/examples/1.9.x/server-swift/examples/account/create-recovery.md index 6f88360ff..75835033e 100644 --- a/examples/1.9.x/server-swift/examples/account/create-recovery.md +++ b/examples/1.9.x/server-swift/examples/account/create-recovery.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-session.md b/examples/1.9.x/server-swift/examples/account/create-session.md index 4d64f2fd1..1a8e7cd14 100644 --- a/examples/1.9.x/server-swift/examples/account/create-session.md +++ b/examples/1.9.x/server-swift/examples/account/create-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create-verification.md b/examples/1.9.x/server-swift/examples/account/create-verification.md index deb8a0b52..709846467 100644 --- a/examples/1.9.x/server-swift/examples/account/create-verification.md +++ b/examples/1.9.x/server-swift/examples/account/create-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/create.md b/examples/1.9.x/server-swift/examples/account/create.md index 7331f6b21..8611f0054 100644 --- a/examples/1.9.x/server-swift/examples/account/create.md +++ b/examples/1.9.x/server-swift/examples/account/create.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/delete-identity.md b/examples/1.9.x/server-swift/examples/account/delete-identity.md index 87827cd1f..6158a8606 100644 --- a/examples/1.9.x/server-swift/examples/account/delete-identity.md +++ b/examples/1.9.x/server-swift/examples/account/delete-identity.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/delete-mfa-authenticator.md b/examples/1.9.x/server-swift/examples/account/delete-mfa-authenticator.md index 3d002f5a2..6c86d7386 100644 --- a/examples/1.9.x/server-swift/examples/account/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-swift/examples/account/delete-mfa-authenticator.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/delete-session.md b/examples/1.9.x/server-swift/examples/account/delete-session.md index e1523301c..0a70c1a0c 100644 --- a/examples/1.9.x/server-swift/examples/account/delete-session.md +++ b/examples/1.9.x/server-swift/examples/account/delete-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/delete-sessions.md b/examples/1.9.x/server-swift/examples/account/delete-sessions.md index 23d87c694..dd8406f1c 100644 --- a/examples/1.9.x/server-swift/examples/account/delete-sessions.md +++ b/examples/1.9.x/server-swift/examples/account/delete-sessions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/get-mfa-recovery-codes.md b/examples/1.9.x/server-swift/examples/account/get-mfa-recovery-codes.md index 812a074ad..8571fdd77 100644 --- a/examples/1.9.x/server-swift/examples/account/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-swift/examples/account/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/get-prefs.md b/examples/1.9.x/server-swift/examples/account/get-prefs.md index c2c23ea16..2b267d3e8 100644 --- a/examples/1.9.x/server-swift/examples/account/get-prefs.md +++ b/examples/1.9.x/server-swift/examples/account/get-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/get-session.md b/examples/1.9.x/server-swift/examples/account/get-session.md index 2d8eeeb20..5b0db8bd9 100644 --- a/examples/1.9.x/server-swift/examples/account/get-session.md +++ b/examples/1.9.x/server-swift/examples/account/get-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/get.md b/examples/1.9.x/server-swift/examples/account/get.md index 4ef00b6eb..dace40154 100644 --- a/examples/1.9.x/server-swift/examples/account/get.md +++ b/examples/1.9.x/server-swift/examples/account/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/list-identities.md b/examples/1.9.x/server-swift/examples/account/list-identities.md index ed5b85750..953f37306 100644 --- a/examples/1.9.x/server-swift/examples/account/list-identities.md +++ b/examples/1.9.x/server-swift/examples/account/list-identities.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/list-logs.md b/examples/1.9.x/server-swift/examples/account/list-logs.md index f9d3a3823..10323c348 100644 --- a/examples/1.9.x/server-swift/examples/account/list-logs.md +++ b/examples/1.9.x/server-swift/examples/account/list-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/list-mfa-factors.md b/examples/1.9.x/server-swift/examples/account/list-mfa-factors.md index 996528898..62ea50b2b 100644 --- a/examples/1.9.x/server-swift/examples/account/list-mfa-factors.md +++ b/examples/1.9.x/server-swift/examples/account/list-mfa-factors.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/list-sessions.md b/examples/1.9.x/server-swift/examples/account/list-sessions.md index 7e263e7d2..de1f118c6 100644 --- a/examples/1.9.x/server-swift/examples/account/list-sessions.md +++ b/examples/1.9.x/server-swift/examples/account/list-sessions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-email-verification.md b/examples/1.9.x/server-swift/examples/account/update-email-verification.md index 8822d0cda..4c14b6afa 100644 --- a/examples/1.9.x/server-swift/examples/account/update-email-verification.md +++ b/examples/1.9.x/server-swift/examples/account/update-email-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-email.md b/examples/1.9.x/server-swift/examples/account/update-email.md index df903fe29..63aa39ea4 100644 --- a/examples/1.9.x/server-swift/examples/account/update-email.md +++ b/examples/1.9.x/server-swift/examples/account/update-email.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-magic-url-session.md b/examples/1.9.x/server-swift/examples/account/update-magic-url-session.md index 5bc71b01c..40847b617 100644 --- a/examples/1.9.x/server-swift/examples/account/update-magic-url-session.md +++ b/examples/1.9.x/server-swift/examples/account/update-magic-url-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-mfa-authenticator.md b/examples/1.9.x/server-swift/examples/account/update-mfa-authenticator.md index 4c156a2ca..2caebfa89 100644 --- a/examples/1.9.x/server-swift/examples/account/update-mfa-authenticator.md +++ b/examples/1.9.x/server-swift/examples/account/update-mfa-authenticator.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-mfa-challenge.md b/examples/1.9.x/server-swift/examples/account/update-mfa-challenge.md index 9ee045d03..9668a3837 100644 --- a/examples/1.9.x/server-swift/examples/account/update-mfa-challenge.md +++ b/examples/1.9.x/server-swift/examples/account/update-mfa-challenge.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-mfa-recovery-codes.md b/examples/1.9.x/server-swift/examples/account/update-mfa-recovery-codes.md index fabf3ff02..b454df04f 100644 --- a/examples/1.9.x/server-swift/examples/account/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-swift/examples/account/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-mfa.md b/examples/1.9.x/server-swift/examples/account/update-mfa.md index a989d4aa8..b4621ce59 100644 --- a/examples/1.9.x/server-swift/examples/account/update-mfa.md +++ b/examples/1.9.x/server-swift/examples/account/update-mfa.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-name.md b/examples/1.9.x/server-swift/examples/account/update-name.md index eaa7cd1f8..dbd3bdf27 100644 --- a/examples/1.9.x/server-swift/examples/account/update-name.md +++ b/examples/1.9.x/server-swift/examples/account/update-name.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-password.md b/examples/1.9.x/server-swift/examples/account/update-password.md index e4468d523..2a89a156e 100644 --- a/examples/1.9.x/server-swift/examples/account/update-password.md +++ b/examples/1.9.x/server-swift/examples/account/update-password.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-phone-session.md b/examples/1.9.x/server-swift/examples/account/update-phone-session.md index 90bade476..2ad833c42 100644 --- a/examples/1.9.x/server-swift/examples/account/update-phone-session.md +++ b/examples/1.9.x/server-swift/examples/account/update-phone-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-phone-verification.md b/examples/1.9.x/server-swift/examples/account/update-phone-verification.md index 66a3428af..c48f51be6 100644 --- a/examples/1.9.x/server-swift/examples/account/update-phone-verification.md +++ b/examples/1.9.x/server-swift/examples/account/update-phone-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-phone.md b/examples/1.9.x/server-swift/examples/account/update-phone.md index d89e96275..1ef6619e3 100644 --- a/examples/1.9.x/server-swift/examples/account/update-phone.md +++ b/examples/1.9.x/server-swift/examples/account/update-phone.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-prefs.md b/examples/1.9.x/server-swift/examples/account/update-prefs.md index b6e9f9cc4..24094534a 100644 --- a/examples/1.9.x/server-swift/examples/account/update-prefs.md +++ b/examples/1.9.x/server-swift/examples/account/update-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-recovery.md b/examples/1.9.x/server-swift/examples/account/update-recovery.md index 023c5a291..80b7b246b 100644 --- a/examples/1.9.x/server-swift/examples/account/update-recovery.md +++ b/examples/1.9.x/server-swift/examples/account/update-recovery.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-session.md b/examples/1.9.x/server-swift/examples/account/update-session.md index 62af972c8..8534f642e 100644 --- a/examples/1.9.x/server-swift/examples/account/update-session.md +++ b/examples/1.9.x/server-swift/examples/account/update-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-status.md b/examples/1.9.x/server-swift/examples/account/update-status.md index 8b779636c..209ae412b 100644 --- a/examples/1.9.x/server-swift/examples/account/update-status.md +++ b/examples/1.9.x/server-swift/examples/account/update-status.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/account/update-verification.md b/examples/1.9.x/server-swift/examples/account/update-verification.md index 68e1fb772..dbe169801 100644 --- a/examples/1.9.x/server-swift/examples/account/update-verification.md +++ b/examples/1.9.x/server-swift/examples/account/update-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/activities/get-event.md b/examples/1.9.x/server-swift/examples/activities/get-event.md index 0e27cbe5c..59e0231ef 100644 --- a/examples/1.9.x/server-swift/examples/activities/get-event.md +++ b/examples/1.9.x/server-swift/examples/activities/get-event.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/activities/list-events.md b/examples/1.9.x/server-swift/examples/activities/list-events.md index d36a9879e..0c89e72c5 100644 --- a/examples/1.9.x/server-swift/examples/activities/list-events.md +++ b/examples/1.9.x/server-swift/examples/activities/list-events.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/advisor/delete-report.md b/examples/1.9.x/server-swift/examples/advisor/delete-report.md index 693968935..2e20975d2 100644 --- a/examples/1.9.x/server-swift/examples/advisor/delete-report.md +++ b/examples/1.9.x/server-swift/examples/advisor/delete-report.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/advisor/get-insight.md b/examples/1.9.x/server-swift/examples/advisor/get-insight.md index 648d5036b..2ccc84700 100644 --- a/examples/1.9.x/server-swift/examples/advisor/get-insight.md +++ b/examples/1.9.x/server-swift/examples/advisor/get-insight.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/advisor/get-report.md b/examples/1.9.x/server-swift/examples/advisor/get-report.md index 14682be0b..43e9805af 100644 --- a/examples/1.9.x/server-swift/examples/advisor/get-report.md +++ b/examples/1.9.x/server-swift/examples/advisor/get-report.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/advisor/list-insights.md b/examples/1.9.x/server-swift/examples/advisor/list-insights.md index 73ccd6b19..a29074178 100644 --- a/examples/1.9.x/server-swift/examples/advisor/list-insights.md +++ b/examples/1.9.x/server-swift/examples/advisor/list-insights.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/advisor/list-reports.md b/examples/1.9.x/server-swift/examples/advisor/list-reports.md index a59bd944a..11148e795 100644 --- a/examples/1.9.x/server-swift/examples/advisor/list-reports.md +++ b/examples/1.9.x/server-swift/examples/advisor/list-reports.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/avatars/get-browser.md b/examples/1.9.x/server-swift/examples/avatars/get-browser.md index 324540b47..df2f4cea0 100644 --- a/examples/1.9.x/server-swift/examples/avatars/get-browser.md +++ b/examples/1.9.x/server-swift/examples/avatars/get-browser.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/avatars/get-credit-card.md b/examples/1.9.x/server-swift/examples/avatars/get-credit-card.md index 45b7d4bef..d481d3f96 100644 --- a/examples/1.9.x/server-swift/examples/avatars/get-credit-card.md +++ b/examples/1.9.x/server-swift/examples/avatars/get-credit-card.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/avatars/get-favicon.md b/examples/1.9.x/server-swift/examples/avatars/get-favicon.md index f0945dcaf..2443b94f6 100644 --- a/examples/1.9.x/server-swift/examples/avatars/get-favicon.md +++ b/examples/1.9.x/server-swift/examples/avatars/get-favicon.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/avatars/get-flag.md b/examples/1.9.x/server-swift/examples/avatars/get-flag.md index d7cc8c6ab..78da09633 100644 --- a/examples/1.9.x/server-swift/examples/avatars/get-flag.md +++ b/examples/1.9.x/server-swift/examples/avatars/get-flag.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/avatars/get-image.md b/examples/1.9.x/server-swift/examples/avatars/get-image.md index 4f18af5a2..7fa38a544 100644 --- a/examples/1.9.x/server-swift/examples/avatars/get-image.md +++ b/examples/1.9.x/server-swift/examples/avatars/get-image.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/avatars/get-initials.md b/examples/1.9.x/server-swift/examples/avatars/get-initials.md index aa5e5e980..d0b878d0b 100644 --- a/examples/1.9.x/server-swift/examples/avatars/get-initials.md +++ b/examples/1.9.x/server-swift/examples/avatars/get-initials.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/avatars/get-qr.md b/examples/1.9.x/server-swift/examples/avatars/get-qr.md index c5bfa168e..6b1af4c4e 100644 --- a/examples/1.9.x/server-swift/examples/avatars/get-qr.md +++ b/examples/1.9.x/server-swift/examples/avatars/get-qr.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/avatars/get-screenshot.md b/examples/1.9.x/server-swift/examples/avatars/get-screenshot.md index 482905ea9..8149d7134 100644 --- a/examples/1.9.x/server-swift/examples/avatars/get-screenshot.md +++ b/examples/1.9.x/server-swift/examples/avatars/get-screenshot.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/backups/create-archive.md b/examples/1.9.x/server-swift/examples/backups/create-archive.md index ec92ce0b7..c96829b55 100644 --- a/examples/1.9.x/server-swift/examples/backups/create-archive.md +++ b/examples/1.9.x/server-swift/examples/backups/create-archive.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/create-policy.md b/examples/1.9.x/server-swift/examples/backups/create-policy.md index 9e97b8872..f029bb3d0 100644 --- a/examples/1.9.x/server-swift/examples/backups/create-policy.md +++ b/examples/1.9.x/server-swift/examples/backups/create-policy.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/create-restoration.md b/examples/1.9.x/server-swift/examples/backups/create-restoration.md index b709fa751..bdbcc1fb1 100644 --- a/examples/1.9.x/server-swift/examples/backups/create-restoration.md +++ b/examples/1.9.x/server-swift/examples/backups/create-restoration.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/delete-archive.md b/examples/1.9.x/server-swift/examples/backups/delete-archive.md index a0201d3e2..3aac7198c 100644 --- a/examples/1.9.x/server-swift/examples/backups/delete-archive.md +++ b/examples/1.9.x/server-swift/examples/backups/delete-archive.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/delete-policy.md b/examples/1.9.x/server-swift/examples/backups/delete-policy.md index 75b469266..cb0135007 100644 --- a/examples/1.9.x/server-swift/examples/backups/delete-policy.md +++ b/examples/1.9.x/server-swift/examples/backups/delete-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/get-archive.md b/examples/1.9.x/server-swift/examples/backups/get-archive.md index c35f21d7e..26dfefb88 100644 --- a/examples/1.9.x/server-swift/examples/backups/get-archive.md +++ b/examples/1.9.x/server-swift/examples/backups/get-archive.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/get-policy.md b/examples/1.9.x/server-swift/examples/backups/get-policy.md index 969113a8d..9ff6718e2 100644 --- a/examples/1.9.x/server-swift/examples/backups/get-policy.md +++ b/examples/1.9.x/server-swift/examples/backups/get-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/get-restoration.md b/examples/1.9.x/server-swift/examples/backups/get-restoration.md index 35d370af7..544a32641 100644 --- a/examples/1.9.x/server-swift/examples/backups/get-restoration.md +++ b/examples/1.9.x/server-swift/examples/backups/get-restoration.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/list-archives.md b/examples/1.9.x/server-swift/examples/backups/list-archives.md index 9761b35e4..42c6f98dc 100644 --- a/examples/1.9.x/server-swift/examples/backups/list-archives.md +++ b/examples/1.9.x/server-swift/examples/backups/list-archives.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/list-policies.md b/examples/1.9.x/server-swift/examples/backups/list-policies.md index 5af3f4af0..00e7d9b14 100644 --- a/examples/1.9.x/server-swift/examples/backups/list-policies.md +++ b/examples/1.9.x/server-swift/examples/backups/list-policies.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/list-restorations.md b/examples/1.9.x/server-swift/examples/backups/list-restorations.md index b140e6436..33f9e4100 100644 --- a/examples/1.9.x/server-swift/examples/backups/list-restorations.md +++ b/examples/1.9.x/server-swift/examples/backups/list-restorations.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/backups/update-policy.md b/examples/1.9.x/server-swift/examples/backups/update-policy.md index c00f847ba..6a6365fe7 100644 --- a/examples/1.9.x/server-swift/examples/backups/update-policy.md +++ b/examples/1.9.x/server-swift/examples/backups/update-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-big-int-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-big-int-attribute.md index 7a9b82b14..9823b6a52 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-big-int-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-big-int-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-boolean-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-boolean-attribute.md index 9c887b1ed..07e82e505 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-boolean-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-boolean-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-collection.md b/examples/1.9.x/server-swift/examples/databases/create-collection.md index 6d90e7ea4..23722da44 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-collection.md +++ b/examples/1.9.x/server-swift/examples/databases/create-collection.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-datetime-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-datetime-attribute.md index c571c9a47..3ad3f4709 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-datetime-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-datetime-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-document.md b/examples/1.9.x/server-swift/examples/databases/create-document.md index 24829794d..9a7148d88 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-document.md +++ b/examples/1.9.x/server-swift/examples/databases/create-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/databases/create-documents.md b/examples/1.9.x/server-swift/examples/databases/create-documents.md index 1763ab133..d1f71c18e 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-documents.md +++ b/examples/1.9.x/server-swift/examples/databases/create-documents.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-email-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-email-attribute.md index e43f94c0e..48cc862bc 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-email-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-email-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-enum-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-enum-attribute.md index 4a6724b0a..d98dbb77a 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-enum-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-enum-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-float-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-float-attribute.md index 90b72c07c..5c2465c48 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-float-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-float-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-index.md b/examples/1.9.x/server-swift/examples/databases/create-index.md index 638fc96ae..7b89cb4cf 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-index.md +++ b/examples/1.9.x/server-swift/examples/databases/create-index.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-integer-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-integer-attribute.md index dcb243242..bf6215643 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-integer-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-integer-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-ip-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-ip-attribute.md index c208644f1..fc74ce4e2 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-ip-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-ip-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-line-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-line-attribute.md index f6a0a1038..66d17f76a 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-line-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-line-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-longtext-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-longtext-attribute.md index 0ddf87f0e..af4145f7e 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-longtext-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-longtext-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-mediumtext-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-mediumtext-attribute.md index 7a95cbda7..bfac5f239 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-mediumtext-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-mediumtext-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-operations.md b/examples/1.9.x/server-swift/examples/databases/create-operations.md index dd2f77333..f5dda9330 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-operations.md +++ b/examples/1.9.x/server-swift/examples/databases/create-operations.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-point-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-point-attribute.md index 047bca2d9..ac747da12 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-point-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-point-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-polygon-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-polygon-attribute.md index 8110797a6..e51a5325c 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-polygon-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-polygon-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-relationship-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-relationship-attribute.md index 720815423..daf905b5b 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-relationship-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-relationship-attribute.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-string-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-string-attribute.md index 0719c6919..3012430dc 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-string-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-string-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-text-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-text-attribute.md index 107be93f5..f0b0d9ef4 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-text-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-text-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-transaction.md b/examples/1.9.x/server-swift/examples/databases/create-transaction.md index 993d15609..b35b2a03a 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-transaction.md +++ b/examples/1.9.x/server-swift/examples/databases/create-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-url-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-url-attribute.md index b8798d6dc..fca35dbbc 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-url-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-url-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create-varchar-attribute.md b/examples/1.9.x/server-swift/examples/databases/create-varchar-attribute.md index 0627b73ec..be4aaa613 100644 --- a/examples/1.9.x/server-swift/examples/databases/create-varchar-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/create-varchar-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/create.md b/examples/1.9.x/server-swift/examples/databases/create.md index d2ef3bb6c..56e609a93 100644 --- a/examples/1.9.x/server-swift/examples/databases/create.md +++ b/examples/1.9.x/server-swift/examples/databases/create.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/decrement-document-attribute.md b/examples/1.9.x/server-swift/examples/databases/decrement-document-attribute.md index 164fad349..f39672192 100644 --- a/examples/1.9.x/server-swift/examples/databases/decrement-document-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/decrement-document-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/databases/delete-attribute.md b/examples/1.9.x/server-swift/examples/databases/delete-attribute.md index 95ad3b67b..07962f12b 100644 --- a/examples/1.9.x/server-swift/examples/databases/delete-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/delete-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/delete-collection.md b/examples/1.9.x/server-swift/examples/databases/delete-collection.md index 2c41909c0..8e216f621 100644 --- a/examples/1.9.x/server-swift/examples/databases/delete-collection.md +++ b/examples/1.9.x/server-swift/examples/databases/delete-collection.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/delete-document.md b/examples/1.9.x/server-swift/examples/databases/delete-document.md index 84559d0ec..a49747588 100644 --- a/examples/1.9.x/server-swift/examples/databases/delete-document.md +++ b/examples/1.9.x/server-swift/examples/databases/delete-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/databases/delete-documents.md b/examples/1.9.x/server-swift/examples/databases/delete-documents.md index 81a24778d..fdc1138ce 100644 --- a/examples/1.9.x/server-swift/examples/databases/delete-documents.md +++ b/examples/1.9.x/server-swift/examples/databases/delete-documents.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/delete-index.md b/examples/1.9.x/server-swift/examples/databases/delete-index.md index 6b793eb34..92847633b 100644 --- a/examples/1.9.x/server-swift/examples/databases/delete-index.md +++ b/examples/1.9.x/server-swift/examples/databases/delete-index.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/delete-transaction.md b/examples/1.9.x/server-swift/examples/databases/delete-transaction.md index 220ad79b5..334b04932 100644 --- a/examples/1.9.x/server-swift/examples/databases/delete-transaction.md +++ b/examples/1.9.x/server-swift/examples/databases/delete-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/delete.md b/examples/1.9.x/server-swift/examples/databases/delete.md index 162c59bd2..80dff4308 100644 --- a/examples/1.9.x/server-swift/examples/databases/delete.md +++ b/examples/1.9.x/server-swift/examples/databases/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/get-attribute.md b/examples/1.9.x/server-swift/examples/databases/get-attribute.md index d25e8ebbf..66b0d28de 100644 --- a/examples/1.9.x/server-swift/examples/databases/get-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/get-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/get-collection.md b/examples/1.9.x/server-swift/examples/databases/get-collection.md index af43c69b4..0bac2444e 100644 --- a/examples/1.9.x/server-swift/examples/databases/get-collection.md +++ b/examples/1.9.x/server-swift/examples/databases/get-collection.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/get-document.md b/examples/1.9.x/server-swift/examples/databases/get-document.md index 02daf3531..f9a1708f1 100644 --- a/examples/1.9.x/server-swift/examples/databases/get-document.md +++ b/examples/1.9.x/server-swift/examples/databases/get-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/databases/get-index.md b/examples/1.9.x/server-swift/examples/databases/get-index.md index ba7f61dd3..b8e99bff6 100644 --- a/examples/1.9.x/server-swift/examples/databases/get-index.md +++ b/examples/1.9.x/server-swift/examples/databases/get-index.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/get-transaction.md b/examples/1.9.x/server-swift/examples/databases/get-transaction.md index 41139294f..677c1d2ba 100644 --- a/examples/1.9.x/server-swift/examples/databases/get-transaction.md +++ b/examples/1.9.x/server-swift/examples/databases/get-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/get.md b/examples/1.9.x/server-swift/examples/databases/get.md index 7f5817cfd..7cfecdc72 100644 --- a/examples/1.9.x/server-swift/examples/databases/get.md +++ b/examples/1.9.x/server-swift/examples/databases/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/increment-document-attribute.md b/examples/1.9.x/server-swift/examples/databases/increment-document-attribute.md index 47352fc0b..3ca8eafb7 100644 --- a/examples/1.9.x/server-swift/examples/databases/increment-document-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/increment-document-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/databases/list-attributes.md b/examples/1.9.x/server-swift/examples/databases/list-attributes.md index 04be770e2..f6055a42f 100644 --- a/examples/1.9.x/server-swift/examples/databases/list-attributes.md +++ b/examples/1.9.x/server-swift/examples/databases/list-attributes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/list-collections.md b/examples/1.9.x/server-swift/examples/databases/list-collections.md index 961399d56..375398512 100644 --- a/examples/1.9.x/server-swift/examples/databases/list-collections.md +++ b/examples/1.9.x/server-swift/examples/databases/list-collections.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/list-documents.md b/examples/1.9.x/server-swift/examples/databases/list-documents.md index 75ef8c7b8..a04c8fa10 100644 --- a/examples/1.9.x/server-swift/examples/databases/list-documents.md +++ b/examples/1.9.x/server-swift/examples/databases/list-documents.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/databases/list-indexes.md b/examples/1.9.x/server-swift/examples/databases/list-indexes.md index 45c3ea543..5284dfc98 100644 --- a/examples/1.9.x/server-swift/examples/databases/list-indexes.md +++ b/examples/1.9.x/server-swift/examples/databases/list-indexes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/list-transactions.md b/examples/1.9.x/server-swift/examples/databases/list-transactions.md index 4059ddbf3..9b58d1b47 100644 --- a/examples/1.9.x/server-swift/examples/databases/list-transactions.md +++ b/examples/1.9.x/server-swift/examples/databases/list-transactions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/list.md b/examples/1.9.x/server-swift/examples/databases/list.md index 88b98c25a..72fb46244 100644 --- a/examples/1.9.x/server-swift/examples/databases/list.md +++ b/examples/1.9.x/server-swift/examples/databases/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-big-int-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-big-int-attribute.md index 4214b40cf..12a8f7401 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-big-int-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-big-int-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-boolean-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-boolean-attribute.md index f8a80776a..5cf1fee3b 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-boolean-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-boolean-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-collection.md b/examples/1.9.x/server-swift/examples/databases/update-collection.md index 13d4dd51e..fa2d6cacb 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-collection.md +++ b/examples/1.9.x/server-swift/examples/databases/update-collection.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-datetime-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-datetime-attribute.md index 2ca6f59fd..0e0c0e1b9 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-datetime-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-datetime-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-document.md b/examples/1.9.x/server-swift/examples/databases/update-document.md index d1e0bde06..9e92a20db 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-document.md +++ b/examples/1.9.x/server-swift/examples/databases/update-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/databases/update-documents.md b/examples/1.9.x/server-swift/examples/databases/update-documents.md index 7f7e641ce..dc23a4819 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-documents.md +++ b/examples/1.9.x/server-swift/examples/databases/update-documents.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-email-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-email-attribute.md index 370ca28da..23a82e02d 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-email-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-email-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-enum-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-enum-attribute.md index 7c6d40df1..692093dc4 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-enum-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-enum-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-float-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-float-attribute.md index 530679f87..912923423 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-float-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-float-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-integer-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-integer-attribute.md index b2a943775..4462336c6 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-integer-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-integer-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-ip-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-ip-attribute.md index fd90e2021..8e2a4944e 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-ip-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-ip-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-line-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-line-attribute.md index ffcacf270..a5a43f86e 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-line-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-line-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-longtext-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-longtext-attribute.md index 5f4cb81d9..353935d1a 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-longtext-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-longtext-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-mediumtext-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-mediumtext-attribute.md index 8ea9d4211..2c8a49ae6 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-mediumtext-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-mediumtext-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-point-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-point-attribute.md index 6643de51c..43784dcdd 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-point-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-point-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-polygon-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-polygon-attribute.md index 1e8c2ded9..8a9455c0c 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-polygon-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-polygon-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-relationship-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-relationship-attribute.md index c03405f72..94a4578e2 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-relationship-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-relationship-attribute.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-string-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-string-attribute.md index 97227fdb2..6ee70fd64 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-string-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-string-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-text-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-text-attribute.md index 2bd63379e..4a16ee80e 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-text-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-text-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-transaction.md b/examples/1.9.x/server-swift/examples/databases/update-transaction.md index 7212240f2..11edaef0f 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-transaction.md +++ b/examples/1.9.x/server-swift/examples/databases/update-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-url-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-url-attribute.md index dd42599b1..4c5a6c957 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-url-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-url-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update-varchar-attribute.md b/examples/1.9.x/server-swift/examples/databases/update-varchar-attribute.md index 672a5c9c8..45f0805b9 100644 --- a/examples/1.9.x/server-swift/examples/databases/update-varchar-attribute.md +++ b/examples/1.9.x/server-swift/examples/databases/update-varchar-attribute.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/update.md b/examples/1.9.x/server-swift/examples/databases/update.md index f60d38ab4..06a649c4a 100644 --- a/examples/1.9.x/server-swift/examples/databases/update.md +++ b/examples/1.9.x/server-swift/examples/databases/update.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/databases/upsert-document.md b/examples/1.9.x/server-swift/examples/databases/upsert-document.md index ca7363fa6..ff98d4a1e 100644 --- a/examples/1.9.x/server-swift/examples/databases/upsert-document.md +++ b/examples/1.9.x/server-swift/examples/databases/upsert-document.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/databases/upsert-documents.md b/examples/1.9.x/server-swift/examples/databases/upsert-documents.md index dbcc58e5e..1cd50ef30 100644 --- a/examples/1.9.x/server-swift/examples/databases/upsert-documents.md +++ b/examples/1.9.x/server-swift/examples/databases/upsert-documents.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/create-deployment.md b/examples/1.9.x/server-swift/examples/functions/create-deployment.md index b38a94405..1c9ffb1ef 100644 --- a/examples/1.9.x/server-swift/examples/functions/create-deployment.md +++ b/examples/1.9.x/server-swift/examples/functions/create-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/create-duplicate-deployment.md b/examples/1.9.x/server-swift/examples/functions/create-duplicate-deployment.md index 4133a8adf..199e9d69f 100644 --- a/examples/1.9.x/server-swift/examples/functions/create-duplicate-deployment.md +++ b/examples/1.9.x/server-swift/examples/functions/create-duplicate-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/create-execution.md b/examples/1.9.x/server-swift/examples/functions/create-execution.md index 25c96eec9..00cf39ba1 100644 --- a/examples/1.9.x/server-swift/examples/functions/create-execution.md +++ b/examples/1.9.x/server-swift/examples/functions/create-execution.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/functions/create-template-deployment.md b/examples/1.9.x/server-swift/examples/functions/create-template-deployment.md index 65cba8d6b..d0fbbf95c 100644 --- a/examples/1.9.x/server-swift/examples/functions/create-template-deployment.md +++ b/examples/1.9.x/server-swift/examples/functions/create-template-deployment.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/create-variable.md b/examples/1.9.x/server-swift/examples/functions/create-variable.md index 6cc280ffd..663b16b5a 100644 --- a/examples/1.9.x/server-swift/examples/functions/create-variable.md +++ b/examples/1.9.x/server-swift/examples/functions/create-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/create-vcs-deployment.md b/examples/1.9.x/server-swift/examples/functions/create-vcs-deployment.md index d15745b6b..d6542905f 100644 --- a/examples/1.9.x/server-swift/examples/functions/create-vcs-deployment.md +++ b/examples/1.9.x/server-swift/examples/functions/create-vcs-deployment.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/create.md b/examples/1.9.x/server-swift/examples/functions/create.md index e7eb83b69..ac06088c9 100644 --- a/examples/1.9.x/server-swift/examples/functions/create.md +++ b/examples/1.9.x/server-swift/examples/functions/create.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -27,6 +27,8 @@ let function = try await functions.create( providerBranch: "", // optional providerSilentMode: false, // optional providerRootDirectory: "", // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: "", // optional runtimeSpecification: "", // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-swift/examples/functions/delete-deployment.md b/examples/1.9.x/server-swift/examples/functions/delete-deployment.md index 5aa4a29c1..110ee1b09 100644 --- a/examples/1.9.x/server-swift/examples/functions/delete-deployment.md +++ b/examples/1.9.x/server-swift/examples/functions/delete-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/delete-execution.md b/examples/1.9.x/server-swift/examples/functions/delete-execution.md index 3f38299de..ffac3603d 100644 --- a/examples/1.9.x/server-swift/examples/functions/delete-execution.md +++ b/examples/1.9.x/server-swift/examples/functions/delete-execution.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/delete-variable.md b/examples/1.9.x/server-swift/examples/functions/delete-variable.md index c62fbdb1c..bc2344f6c 100644 --- a/examples/1.9.x/server-swift/examples/functions/delete-variable.md +++ b/examples/1.9.x/server-swift/examples/functions/delete-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/delete.md b/examples/1.9.x/server-swift/examples/functions/delete.md index 26694f6e2..152cbab57 100644 --- a/examples/1.9.x/server-swift/examples/functions/delete.md +++ b/examples/1.9.x/server-swift/examples/functions/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/get-deployment-download.md b/examples/1.9.x/server-swift/examples/functions/get-deployment-download.md index cbef3a215..fd166ec62 100644 --- a/examples/1.9.x/server-swift/examples/functions/get-deployment-download.md +++ b/examples/1.9.x/server-swift/examples/functions/get-deployment-download.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/get-deployment.md b/examples/1.9.x/server-swift/examples/functions/get-deployment.md index f0bfe2d5e..db060d4cb 100644 --- a/examples/1.9.x/server-swift/examples/functions/get-deployment.md +++ b/examples/1.9.x/server-swift/examples/functions/get-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/get-execution.md b/examples/1.9.x/server-swift/examples/functions/get-execution.md index 93f301a11..2fbd91600 100644 --- a/examples/1.9.x/server-swift/examples/functions/get-execution.md +++ b/examples/1.9.x/server-swift/examples/functions/get-execution.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/functions/get-variable.md b/examples/1.9.x/server-swift/examples/functions/get-variable.md index 2d1d6b268..a555d2d1f 100644 --- a/examples/1.9.x/server-swift/examples/functions/get-variable.md +++ b/examples/1.9.x/server-swift/examples/functions/get-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/get.md b/examples/1.9.x/server-swift/examples/functions/get.md index b3a2694ff..f09c5edd0 100644 --- a/examples/1.9.x/server-swift/examples/functions/get.md +++ b/examples/1.9.x/server-swift/examples/functions/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/list-deployments.md b/examples/1.9.x/server-swift/examples/functions/list-deployments.md index 16a263249..69a804131 100644 --- a/examples/1.9.x/server-swift/examples/functions/list-deployments.md +++ b/examples/1.9.x/server-swift/examples/functions/list-deployments.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/list-executions.md b/examples/1.9.x/server-swift/examples/functions/list-executions.md index 86d87d8d1..caa020f81 100644 --- a/examples/1.9.x/server-swift/examples/functions/list-executions.md +++ b/examples/1.9.x/server-swift/examples/functions/list-executions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/functions/list-runtimes.md b/examples/1.9.x/server-swift/examples/functions/list-runtimes.md index 447e11eb3..e7487c15d 100644 --- a/examples/1.9.x/server-swift/examples/functions/list-runtimes.md +++ b/examples/1.9.x/server-swift/examples/functions/list-runtimes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/list-specifications.md b/examples/1.9.x/server-swift/examples/functions/list-specifications.md index 086c423a2..7b87917f4 100644 --- a/examples/1.9.x/server-swift/examples/functions/list-specifications.md +++ b/examples/1.9.x/server-swift/examples/functions/list-specifications.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/list-variables.md b/examples/1.9.x/server-swift/examples/functions/list-variables.md index ff4d60c8f..4457e292d 100644 --- a/examples/1.9.x/server-swift/examples/functions/list-variables.md +++ b/examples/1.9.x/server-swift/examples/functions/list-variables.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/list.md b/examples/1.9.x/server-swift/examples/functions/list.md index a8f641ed0..76b1b2363 100644 --- a/examples/1.9.x/server-swift/examples/functions/list.md +++ b/examples/1.9.x/server-swift/examples/functions/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/update-deployment-status.md b/examples/1.9.x/server-swift/examples/functions/update-deployment-status.md index a6c23a57b..e5bedb81d 100644 --- a/examples/1.9.x/server-swift/examples/functions/update-deployment-status.md +++ b/examples/1.9.x/server-swift/examples/functions/update-deployment-status.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/update-function-deployment.md b/examples/1.9.x/server-swift/examples/functions/update-function-deployment.md index 71a50fa6c..063d9360d 100644 --- a/examples/1.9.x/server-swift/examples/functions/update-function-deployment.md +++ b/examples/1.9.x/server-swift/examples/functions/update-function-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/update-variable.md b/examples/1.9.x/server-swift/examples/functions/update-variable.md index 829e7fb5b..1fe60dc33 100644 --- a/examples/1.9.x/server-swift/examples/functions/update-variable.md +++ b/examples/1.9.x/server-swift/examples/functions/update-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/functions/update.md b/examples/1.9.x/server-swift/examples/functions/update.md index be3bce626..e8c4c33f2 100644 --- a/examples/1.9.x/server-swift/examples/functions/update.md +++ b/examples/1.9.x/server-swift/examples/functions/update.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -27,6 +27,8 @@ let function = try await functions.update( providerBranch: "", // optional providerSilentMode: false, // optional providerRootDirectory: "", // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: "", // optional runtimeSpecification: "", // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-swift/examples/graphql/mutation.md b/examples/1.9.x/server-swift/examples/graphql/mutation.md index 9c3cf1168..c971546df 100644 --- a/examples/1.9.x/server-swift/examples/graphql/mutation.md +++ b/examples/1.9.x/server-swift/examples/graphql/mutation.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/graphql/query.md b/examples/1.9.x/server-swift/examples/graphql/query.md index 9ce16dcc7..68dacc44e 100644 --- a/examples/1.9.x/server-swift/examples/graphql/query.md +++ b/examples/1.9.x/server-swift/examples/graphql/query.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-antivirus.md b/examples/1.9.x/server-swift/examples/health/get-antivirus.md index 2ef80452c..e8f13bb6f 100644 --- a/examples/1.9.x/server-swift/examples/health/get-antivirus.md +++ b/examples/1.9.x/server-swift/examples/health/get-antivirus.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-cache.md b/examples/1.9.x/server-swift/examples/health/get-cache.md index fe6b1929b..212bd34fe 100644 --- a/examples/1.9.x/server-swift/examples/health/get-cache.md +++ b/examples/1.9.x/server-swift/examples/health/get-cache.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-certificate.md b/examples/1.9.x/server-swift/examples/health/get-certificate.md index 056f638dd..fbb967b53 100644 --- a/examples/1.9.x/server-swift/examples/health/get-certificate.md +++ b/examples/1.9.x/server-swift/examples/health/get-certificate.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-console-pausing.md b/examples/1.9.x/server-swift/examples/health/get-console-pausing.md index a0475da17..3c384b289 100644 --- a/examples/1.9.x/server-swift/examples/health/get-console-pausing.md +++ b/examples/1.9.x/server-swift/examples/health/get-console-pausing.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-db.md b/examples/1.9.x/server-swift/examples/health/get-db.md index 16a239d15..aa00ff116 100644 --- a/examples/1.9.x/server-swift/examples/health/get-db.md +++ b/examples/1.9.x/server-swift/examples/health/get-db.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-failed-jobs.md b/examples/1.9.x/server-swift/examples/health/get-failed-jobs.md index 70ec02d12..24e60fb22 100644 --- a/examples/1.9.x/server-swift/examples/health/get-failed-jobs.md +++ b/examples/1.9.x/server-swift/examples/health/get-failed-jobs.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-pub-sub.md b/examples/1.9.x/server-swift/examples/health/get-pub-sub.md index 10b33f58f..800aa2bfd 100644 --- a/examples/1.9.x/server-swift/examples/health/get-pub-sub.md +++ b/examples/1.9.x/server-swift/examples/health/get-pub-sub.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-audits.md b/examples/1.9.x/server-swift/examples/health/get-queue-audits.md index 0c60f9320..9b901de51 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-audits.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-audits.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-builds.md b/examples/1.9.x/server-swift/examples/health/get-queue-builds.md index c3be31e3f..9289be599 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-builds.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-builds.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-certificates.md b/examples/1.9.x/server-swift/examples/health/get-queue-certificates.md index fcbe39404..2a51de1c2 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-certificates.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-certificates.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-databases.md b/examples/1.9.x/server-swift/examples/health/get-queue-databases.md index 38f5f573c..2192626a8 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-databases.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-databases.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-deletes.md b/examples/1.9.x/server-swift/examples/health/get-queue-deletes.md index 21c4ee182..58d47fc37 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-deletes.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-deletes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-functions.md b/examples/1.9.x/server-swift/examples/health/get-queue-functions.md index 2379e7cfc..e54cd375c 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-functions.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-functions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-logs.md b/examples/1.9.x/server-swift/examples/health/get-queue-logs.md index 0231a26fb..daed54356 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-logs.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-mails.md b/examples/1.9.x/server-swift/examples/health/get-queue-mails.md index e551cb0a2..10d3953b6 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-mails.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-mails.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-messaging.md b/examples/1.9.x/server-swift/examples/health/get-queue-messaging.md index 2396a5395..2a702255a 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-messaging.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-messaging.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-migrations.md b/examples/1.9.x/server-swift/examples/health/get-queue-migrations.md index 60adef2d9..5b00edcb2 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-migrations.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-migrations.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-stats-resources.md b/examples/1.9.x/server-swift/examples/health/get-queue-stats-resources.md index 33ced68f4..c7bab4238 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-stats-resources.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-stats-resources.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-usage.md b/examples/1.9.x/server-swift/examples/health/get-queue-usage.md index 8227c45ea..91c103439 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-usage.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-usage.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-queue-webhooks.md b/examples/1.9.x/server-swift/examples/health/get-queue-webhooks.md index 08d684e46..9e82fa1b3 100644 --- a/examples/1.9.x/server-swift/examples/health/get-queue-webhooks.md +++ b/examples/1.9.x/server-swift/examples/health/get-queue-webhooks.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-storage-local.md b/examples/1.9.x/server-swift/examples/health/get-storage-local.md index 1b15552de..97d164a95 100644 --- a/examples/1.9.x/server-swift/examples/health/get-storage-local.md +++ b/examples/1.9.x/server-swift/examples/health/get-storage-local.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-storage.md b/examples/1.9.x/server-swift/examples/health/get-storage.md index c27e8df53..3a03471bc 100644 --- a/examples/1.9.x/server-swift/examples/health/get-storage.md +++ b/examples/1.9.x/server-swift/examples/health/get-storage.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get-time.md b/examples/1.9.x/server-swift/examples/health/get-time.md index f462edcbb..678400847 100644 --- a/examples/1.9.x/server-swift/examples/health/get-time.md +++ b/examples/1.9.x/server-swift/examples/health/get-time.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/health/get.md b/examples/1.9.x/server-swift/examples/health/get.md index c0ca14f16..e0893bdda 100644 --- a/examples/1.9.x/server-swift/examples/health/get.md +++ b/examples/1.9.x/server-swift/examples/health/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/locale/get.md b/examples/1.9.x/server-swift/examples/locale/get.md index ca305c0dc..b26e86f7f 100644 --- a/examples/1.9.x/server-swift/examples/locale/get.md +++ b/examples/1.9.x/server-swift/examples/locale/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/locale/list-codes.md b/examples/1.9.x/server-swift/examples/locale/list-codes.md index dd0f9fb63..bdb0d62c8 100644 --- a/examples/1.9.x/server-swift/examples/locale/list-codes.md +++ b/examples/1.9.x/server-swift/examples/locale/list-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/locale/list-continents.md b/examples/1.9.x/server-swift/examples/locale/list-continents.md index f37daceff..dc0cf052d 100644 --- a/examples/1.9.x/server-swift/examples/locale/list-continents.md +++ b/examples/1.9.x/server-swift/examples/locale/list-continents.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/locale/list-countries-eu.md b/examples/1.9.x/server-swift/examples/locale/list-countries-eu.md index b858b31d9..553c4617d 100644 --- a/examples/1.9.x/server-swift/examples/locale/list-countries-eu.md +++ b/examples/1.9.x/server-swift/examples/locale/list-countries-eu.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/locale/list-countries-phones.md b/examples/1.9.x/server-swift/examples/locale/list-countries-phones.md index 739c490ba..fddd186d4 100644 --- a/examples/1.9.x/server-swift/examples/locale/list-countries-phones.md +++ b/examples/1.9.x/server-swift/examples/locale/list-countries-phones.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/locale/list-countries.md b/examples/1.9.x/server-swift/examples/locale/list-countries.md index 8aa3bcf75..f888f1fd3 100644 --- a/examples/1.9.x/server-swift/examples/locale/list-countries.md +++ b/examples/1.9.x/server-swift/examples/locale/list-countries.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/locale/list-currencies.md b/examples/1.9.x/server-swift/examples/locale/list-currencies.md index d1ce956b6..9d5879fae 100644 --- a/examples/1.9.x/server-swift/examples/locale/list-currencies.md +++ b/examples/1.9.x/server-swift/examples/locale/list-currencies.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/locale/list-languages.md b/examples/1.9.x/server-swift/examples/locale/list-languages.md index ed444bf58..3f109e177 100644 --- a/examples/1.9.x/server-swift/examples/locale/list-languages.md +++ b/examples/1.9.x/server-swift/examples/locale/list-languages.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/messaging/create-apns-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-apns-provider.md index 5330efd9d..e7c820f0b 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-apns-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-apns-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-email.md b/examples/1.9.x/server-swift/examples/messaging/create-email.md index 46322c9c0..3d3ab1e51 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-email.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-email.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-fcm-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-fcm-provider.md index 5b80c5ad8..bd7fb10d7 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-fcm-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-fcm-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-mailgun-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-mailgun-provider.md index 82c24ac18..cc694d42c 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-mailgun-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-mailgun-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-msg-91-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-msg-91-provider.md index 674eff6b4..b06803c7d 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-msg-91-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-msg-91-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-push.md b/examples/1.9.x/server-swift/examples/messaging/create-push.md index a3b83519a..8b7555ed7 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-push.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-push.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-resend-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-resend-provider.md index 77a8e24ed..c4dd11d91 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-resend-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-resend-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-sendgrid-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-sendgrid-provider.md index c6046018a..e2ba2ce85 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-sendgrid-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-sendgrid-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-sms.md b/examples/1.9.x/server-swift/examples/messaging/create-sms.md index d2a1a7c48..19d08438e 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-sms.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-sms.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-smtp-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-smtp-provider.md index b4c32819c..3a8071f8a 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-smtp-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-smtp-provider.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-subscriber.md b/examples/1.9.x/server-swift/examples/messaging/create-subscriber.md index 124604063..8b358c182 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-subscriber.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-subscriber.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setJWT("") // Your secret JSON Web Token diff --git a/examples/1.9.x/server-swift/examples/messaging/create-telesign-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-telesign-provider.md index 984ca29df..cd467adc1 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-telesign-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-telesign-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-textmagic-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-textmagic-provider.md index 49a7ae2e7..c80d1f525 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-textmagic-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-textmagic-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-topic.md b/examples/1.9.x/server-swift/examples/messaging/create-topic.md index 73abd57a5..2c1534938 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-topic.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-topic.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-twilio-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-twilio-provider.md index 0db592229..148bb29d4 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-twilio-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-twilio-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/create-vonage-provider.md b/examples/1.9.x/server-swift/examples/messaging/create-vonage-provider.md index 59a592078..b3bce90fb 100644 --- a/examples/1.9.x/server-swift/examples/messaging/create-vonage-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/create-vonage-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/delete-provider.md b/examples/1.9.x/server-swift/examples/messaging/delete-provider.md index b4ec57801..c1f38ff6e 100644 --- a/examples/1.9.x/server-swift/examples/messaging/delete-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/delete-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/delete-subscriber.md b/examples/1.9.x/server-swift/examples/messaging/delete-subscriber.md index f1b06dede..d128a6984 100644 --- a/examples/1.9.x/server-swift/examples/messaging/delete-subscriber.md +++ b/examples/1.9.x/server-swift/examples/messaging/delete-subscriber.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setJWT("") // Your secret JSON Web Token diff --git a/examples/1.9.x/server-swift/examples/messaging/delete-topic.md b/examples/1.9.x/server-swift/examples/messaging/delete-topic.md index 5f6c33ffe..7531cd967 100644 --- a/examples/1.9.x/server-swift/examples/messaging/delete-topic.md +++ b/examples/1.9.x/server-swift/examples/messaging/delete-topic.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/delete.md b/examples/1.9.x/server-swift/examples/messaging/delete.md index 0c5e13461..036012b4b 100644 --- a/examples/1.9.x/server-swift/examples/messaging/delete.md +++ b/examples/1.9.x/server-swift/examples/messaging/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/get-message.md b/examples/1.9.x/server-swift/examples/messaging/get-message.md index ca7b9dd7d..7b2b4e29a 100644 --- a/examples/1.9.x/server-swift/examples/messaging/get-message.md +++ b/examples/1.9.x/server-swift/examples/messaging/get-message.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/get-provider.md b/examples/1.9.x/server-swift/examples/messaging/get-provider.md index 9331f7bad..5a2515b98 100644 --- a/examples/1.9.x/server-swift/examples/messaging/get-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/get-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/get-subscriber.md b/examples/1.9.x/server-swift/examples/messaging/get-subscriber.md index ece8b41f3..42aab2c87 100644 --- a/examples/1.9.x/server-swift/examples/messaging/get-subscriber.md +++ b/examples/1.9.x/server-swift/examples/messaging/get-subscriber.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/get-topic.md b/examples/1.9.x/server-swift/examples/messaging/get-topic.md index 4f19c7181..23ce9c7c4 100644 --- a/examples/1.9.x/server-swift/examples/messaging/get-topic.md +++ b/examples/1.9.x/server-swift/examples/messaging/get-topic.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-message-logs.md b/examples/1.9.x/server-swift/examples/messaging/list-message-logs.md index 52147b80b..c34ecd25c 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-message-logs.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-message-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-messages.md b/examples/1.9.x/server-swift/examples/messaging/list-messages.md index e4da82c87..bd607aeb1 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-messages.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-messages.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-provider-logs.md b/examples/1.9.x/server-swift/examples/messaging/list-provider-logs.md index 4baa230f4..9a5aaf325 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-provider-logs.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-provider-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-providers.md b/examples/1.9.x/server-swift/examples/messaging/list-providers.md index 36f83d38d..bb7ef9b05 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-providers.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-providers.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-subscriber-logs.md b/examples/1.9.x/server-swift/examples/messaging/list-subscriber-logs.md index 65361cef1..df6928efd 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-subscriber-logs.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-subscriber-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-subscribers.md b/examples/1.9.x/server-swift/examples/messaging/list-subscribers.md index cc84e6cd7..f30b1ee0f 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-subscribers.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-subscribers.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-targets.md b/examples/1.9.x/server-swift/examples/messaging/list-targets.md index 8927e8853..3dd301b93 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-targets.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-targets.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-topic-logs.md b/examples/1.9.x/server-swift/examples/messaging/list-topic-logs.md index 3765ca7b9..d08d81715 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-topic-logs.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-topic-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/list-topics.md b/examples/1.9.x/server-swift/examples/messaging/list-topics.md index 57526d45f..c8e1dee28 100644 --- a/examples/1.9.x/server-swift/examples/messaging/list-topics.md +++ b/examples/1.9.x/server-swift/examples/messaging/list-topics.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-apns-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-apns-provider.md index a5a5aa12b..909bf6d10 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-apns-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-apns-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-email.md b/examples/1.9.x/server-swift/examples/messaging/update-email.md index 3f2fc0c99..ec092874c 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-email.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-email.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-fcm-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-fcm-provider.md index bc98b1c9f..83f149f22 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-fcm-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-fcm-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-mailgun-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-mailgun-provider.md index a2524f8ca..939af0cee 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-mailgun-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-mailgun-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-msg-91-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-msg-91-provider.md index adaf9bd14..490eb5dce 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-msg-91-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-msg-91-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-push.md b/examples/1.9.x/server-swift/examples/messaging/update-push.md index c88ef3460..e1f5eef7f 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-push.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-push.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-resend-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-resend-provider.md index a36982b2c..ebefca870 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-resend-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-resend-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-sendgrid-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-sendgrid-provider.md index 28b489ac5..1ea94ee10 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-sendgrid-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-sendgrid-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-sms.md b/examples/1.9.x/server-swift/examples/messaging/update-sms.md index 668625ffe..ed64d6fc2 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-sms.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-sms.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-smtp-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-smtp-provider.md index 44578eb46..ebe7df532 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-smtp-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-smtp-provider.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-telesign-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-telesign-provider.md index 2ce8a03ea..8248a3446 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-telesign-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-telesign-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-textmagic-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-textmagic-provider.md index b43d55ae1..e48aff7e1 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-textmagic-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-textmagic-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-topic.md b/examples/1.9.x/server-swift/examples/messaging/update-topic.md index 4a3cf737f..bead36d2f 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-topic.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-topic.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-twilio-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-twilio-provider.md index 959f7f9e4..0c795e939 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-twilio-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-twilio-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/messaging/update-vonage-provider.md b/examples/1.9.x/server-swift/examples/messaging/update-vonage-provider.md index fc1ed2487..31f1a80fd 100644 --- a/examples/1.9.x/server-swift/examples/messaging/update-vonage-provider.md +++ b/examples/1.9.x/server-swift/examples/messaging/update-vonage-provider.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/organization/create-key.md b/examples/1.9.x/server-swift/examples/organization/create-key.md new file mode 100644 index 000000000..36dc8d523 --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/create-key.md @@ -0,0 +1,19 @@ +```swift +import Appwrite +import AppwriteEnums + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let key = try await organization.createKey( + keyId: "", + name: "", + scopes: [.projectsRead], + expire: "2020-10-15T06:38:00.000+00:00" // optional +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/create-project.md b/examples/1.9.x/server-swift/examples/organization/create-project.md new file mode 100644 index 000000000..3fe6e05e4 --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/create-project.md @@ -0,0 +1,18 @@ +```swift +import Appwrite +import AppwriteEnums + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let project = try await organization.createProject( + projectId: "", + name: "", + region: .fra // optional +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/delete-key.md b/examples/1.9.x/server-swift/examples/organization/delete-key.md new file mode 100644 index 000000000..321f69c95 --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/delete-key.md @@ -0,0 +1,15 @@ +```swift +import Appwrite + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let result = try await organization.deleteKey( + keyId: "" +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/delete-project.md b/examples/1.9.x/server-swift/examples/organization/delete-project.md new file mode 100644 index 000000000..c63203ac8 --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/delete-project.md @@ -0,0 +1,15 @@ +```swift +import Appwrite + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let result = try await organization.deleteProject( + projectId: "" +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/get-key.md b/examples/1.9.x/server-swift/examples/organization/get-key.md new file mode 100644 index 000000000..81c8f3c97 --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/get-key.md @@ -0,0 +1,15 @@ +```swift +import Appwrite + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let key = try await organization.getKey( + keyId: "" +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/get-project.md b/examples/1.9.x/server-swift/examples/organization/get-project.md new file mode 100644 index 000000000..5ae233954 --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/get-project.md @@ -0,0 +1,15 @@ +```swift +import Appwrite + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let project = try await organization.getProject( + projectId: "" +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/list-keys.md b/examples/1.9.x/server-swift/examples/organization/list-keys.md new file mode 100644 index 000000000..748bc5670 --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/list-keys.md @@ -0,0 +1,16 @@ +```swift +import Appwrite + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let keyList = try await organization.listKeys( + queries: [], // optional + total: false // optional +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/list-projects.md b/examples/1.9.x/server-swift/examples/organization/list-projects.md new file mode 100644 index 000000000..ff16ea6b3 --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/list-projects.md @@ -0,0 +1,17 @@ +```swift +import Appwrite + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let projectList = try await organization.listProjects( + queries: [], // optional + search: "", // optional + total: false // optional +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/update-key.md b/examples/1.9.x/server-swift/examples/organization/update-key.md new file mode 100644 index 000000000..3641c01be --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/update-key.md @@ -0,0 +1,19 @@ +```swift +import Appwrite +import AppwriteEnums + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let key = try await organization.updateKey( + keyId: "", + name: "", + scopes: [.projectsRead], + expire: "2020-10-15T06:38:00.000+00:00" // optional +) + +``` diff --git a/examples/1.9.x/server-swift/examples/organization/update-project.md b/examples/1.9.x/server-swift/examples/organization/update-project.md new file mode 100644 index 000000000..18d7b660e --- /dev/null +++ b/examples/1.9.x/server-swift/examples/organization/update-project.md @@ -0,0 +1,16 @@ +```swift +import Appwrite + +let client = Client() + .setEndpoint("") // Your API Endpoint + .setProject("") // Your project ID + .setKey("") // Your secret API key + +let organization = Organization(client) + +let project = try await organization.updateProject( + projectId: "", + name: "" +) + +``` diff --git a/examples/1.9.x/server-swift/examples/presences/delete.md b/examples/1.9.x/server-swift/examples/presences/delete.md index 80d57c887..0b127dbd6 100644 --- a/examples/1.9.x/server-swift/examples/presences/delete.md +++ b/examples/1.9.x/server-swift/examples/presences/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/presences/get.md b/examples/1.9.x/server-swift/examples/presences/get.md index 802d74f62..9122c299f 100644 --- a/examples/1.9.x/server-swift/examples/presences/get.md +++ b/examples/1.9.x/server-swift/examples/presences/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/presences/list.md b/examples/1.9.x/server-swift/examples/presences/list.md index 1123abd00..1e9d6ec4e 100644 --- a/examples/1.9.x/server-swift/examples/presences/list.md +++ b/examples/1.9.x/server-swift/examples/presences/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/presences/update-presence.md b/examples/1.9.x/server-swift/examples/presences/update-presence.md index 3ac1e7e25..beb6b7c0b 100644 --- a/examples/1.9.x/server-swift/examples/presences/update-presence.md +++ b/examples/1.9.x/server-swift/examples/presences/update-presence.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/presences/upsert.md b/examples/1.9.x/server-swift/examples/presences/upsert.md index edba3b102..3152ac3e9 100644 --- a/examples/1.9.x/server-swift/examples/presences/upsert.md +++ b/examples/1.9.x/server-swift/examples/presences/upsert.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-android-platform.md b/examples/1.9.x/server-swift/examples/project/create-android-platform.md index c024b4222..bc5443ce8 100644 --- a/examples/1.9.x/server-swift/examples/project/create-android-platform.md +++ b/examples/1.9.x/server-swift/examples/project/create-android-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-apple-platform.md b/examples/1.9.x/server-swift/examples/project/create-apple-platform.md index 88556791d..1b2a8bb59 100644 --- a/examples/1.9.x/server-swift/examples/project/create-apple-platform.md +++ b/examples/1.9.x/server-swift/examples/project/create-apple-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-ephemeral-key.md b/examples/1.9.x/server-swift/examples/project/create-ephemeral-key.md index c4310ecf7..9090d2fca 100644 --- a/examples/1.9.x/server-swift/examples/project/create-ephemeral-key.md +++ b/examples/1.9.x/server-swift/examples/project/create-ephemeral-key.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-key.md b/examples/1.9.x/server-swift/examples/project/create-key.md index fac75eaa2..d4dc40e2f 100644 --- a/examples/1.9.x/server-swift/examples/project/create-key.md +++ b/examples/1.9.x/server-swift/examples/project/create-key.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-linux-platform.md b/examples/1.9.x/server-swift/examples/project/create-linux-platform.md index 276eea1a9..61b744af4 100644 --- a/examples/1.9.x/server-swift/examples/project/create-linux-platform.md +++ b/examples/1.9.x/server-swift/examples/project/create-linux-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-mock-phone.md b/examples/1.9.x/server-swift/examples/project/create-mock-phone.md index d55045e52..82043da2e 100644 --- a/examples/1.9.x/server-swift/examples/project/create-mock-phone.md +++ b/examples/1.9.x/server-swift/examples/project/create-mock-phone.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-smtp-test.md b/examples/1.9.x/server-swift/examples/project/create-smtp-test.md index 7f58a2797..97b198e28 100644 --- a/examples/1.9.x/server-swift/examples/project/create-smtp-test.md +++ b/examples/1.9.x/server-swift/examples/project/create-smtp-test.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-variable.md b/examples/1.9.x/server-swift/examples/project/create-variable.md index f9a6c3999..a3f45060d 100644 --- a/examples/1.9.x/server-swift/examples/project/create-variable.md +++ b/examples/1.9.x/server-swift/examples/project/create-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-web-platform.md b/examples/1.9.x/server-swift/examples/project/create-web-platform.md index 4623c92a2..acbc230f2 100644 --- a/examples/1.9.x/server-swift/examples/project/create-web-platform.md +++ b/examples/1.9.x/server-swift/examples/project/create-web-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/create-windows-platform.md b/examples/1.9.x/server-swift/examples/project/create-windows-platform.md index 764da9d02..1e7cb75a9 100644 --- a/examples/1.9.x/server-swift/examples/project/create-windows-platform.md +++ b/examples/1.9.x/server-swift/examples/project/create-windows-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/delete-key.md b/examples/1.9.x/server-swift/examples/project/delete-key.md index 4552cc726..2cc1fe02f 100644 --- a/examples/1.9.x/server-swift/examples/project/delete-key.md +++ b/examples/1.9.x/server-swift/examples/project/delete-key.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/delete-mock-phone.md b/examples/1.9.x/server-swift/examples/project/delete-mock-phone.md index b7276924a..9dc33ea01 100644 --- a/examples/1.9.x/server-swift/examples/project/delete-mock-phone.md +++ b/examples/1.9.x/server-swift/examples/project/delete-mock-phone.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/delete-platform.md b/examples/1.9.x/server-swift/examples/project/delete-platform.md index 744ca26bf..06e502141 100644 --- a/examples/1.9.x/server-swift/examples/project/delete-platform.md +++ b/examples/1.9.x/server-swift/examples/project/delete-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/delete-variable.md b/examples/1.9.x/server-swift/examples/project/delete-variable.md index e9fc657d2..cb7e4b1ad 100644 --- a/examples/1.9.x/server-swift/examples/project/delete-variable.md +++ b/examples/1.9.x/server-swift/examples/project/delete-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/delete.md b/examples/1.9.x/server-swift/examples/project/delete.md index e21a359a3..a028df91e 100644 --- a/examples/1.9.x/server-swift/examples/project/delete.md +++ b/examples/1.9.x/server-swift/examples/project/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/get-email-template.md b/examples/1.9.x/server-swift/examples/project/get-email-template.md index 7d32751a8..bc30f8e24 100644 --- a/examples/1.9.x/server-swift/examples/project/get-email-template.md +++ b/examples/1.9.x/server-swift/examples/project/get-email-template.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/get-key.md b/examples/1.9.x/server-swift/examples/project/get-key.md index d988df3cc..40f81ab55 100644 --- a/examples/1.9.x/server-swift/examples/project/get-key.md +++ b/examples/1.9.x/server-swift/examples/project/get-key.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/get-mock-phone.md b/examples/1.9.x/server-swift/examples/project/get-mock-phone.md index c37f50f95..dd59b7a38 100644 --- a/examples/1.9.x/server-swift/examples/project/get-mock-phone.md +++ b/examples/1.9.x/server-swift/examples/project/get-mock-phone.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/get-o-auth-2-provider.md b/examples/1.9.x/server-swift/examples/project/get-o-auth-2-provider.md index 3fc503cdf..4b0dae572 100644 --- a/examples/1.9.x/server-swift/examples/project/get-o-auth-2-provider.md +++ b/examples/1.9.x/server-swift/examples/project/get-o-auth-2-provider.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/get-platform.md b/examples/1.9.x/server-swift/examples/project/get-platform.md index 407f92fd1..a6727cf27 100644 --- a/examples/1.9.x/server-swift/examples/project/get-platform.md +++ b/examples/1.9.x/server-swift/examples/project/get-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/get-policy.md b/examples/1.9.x/server-swift/examples/project/get-policy.md index 56a46ff13..94f23d57b 100644 --- a/examples/1.9.x/server-swift/examples/project/get-policy.md +++ b/examples/1.9.x/server-swift/examples/project/get-policy.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/get-variable.md b/examples/1.9.x/server-swift/examples/project/get-variable.md index 33b8c9695..2dad66512 100644 --- a/examples/1.9.x/server-swift/examples/project/get-variable.md +++ b/examples/1.9.x/server-swift/examples/project/get-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/get.md b/examples/1.9.x/server-swift/examples/project/get.md index 6302f484a..81d9fe0d8 100644 --- a/examples/1.9.x/server-swift/examples/project/get.md +++ b/examples/1.9.x/server-swift/examples/project/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/list-email-templates.md b/examples/1.9.x/server-swift/examples/project/list-email-templates.md index e135eb231..249415c1c 100644 --- a/examples/1.9.x/server-swift/examples/project/list-email-templates.md +++ b/examples/1.9.x/server-swift/examples/project/list-email-templates.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/list-keys.md b/examples/1.9.x/server-swift/examples/project/list-keys.md index ad3eb7e55..4e2ff5055 100644 --- a/examples/1.9.x/server-swift/examples/project/list-keys.md +++ b/examples/1.9.x/server-swift/examples/project/list-keys.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/list-mock-phones.md b/examples/1.9.x/server-swift/examples/project/list-mock-phones.md index 5a1119297..da08d30ef 100644 --- a/examples/1.9.x/server-swift/examples/project/list-mock-phones.md +++ b/examples/1.9.x/server-swift/examples/project/list-mock-phones.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/list-o-auth-2-providers.md b/examples/1.9.x/server-swift/examples/project/list-o-auth-2-providers.md index 06b53932f..0759c4eb8 100644 --- a/examples/1.9.x/server-swift/examples/project/list-o-auth-2-providers.md +++ b/examples/1.9.x/server-swift/examples/project/list-o-auth-2-providers.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/list-platforms.md b/examples/1.9.x/server-swift/examples/project/list-platforms.md index c4d8d038d..38a01a24c 100644 --- a/examples/1.9.x/server-swift/examples/project/list-platforms.md +++ b/examples/1.9.x/server-swift/examples/project/list-platforms.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/list-policies.md b/examples/1.9.x/server-swift/examples/project/list-policies.md index 5dd4fc41c..40ae60678 100644 --- a/examples/1.9.x/server-swift/examples/project/list-policies.md +++ b/examples/1.9.x/server-swift/examples/project/list-policies.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/list-variables.md b/examples/1.9.x/server-swift/examples/project/list-variables.md index fd6d6a03f..3b78a4f7f 100644 --- a/examples/1.9.x/server-swift/examples/project/list-variables.md +++ b/examples/1.9.x/server-swift/examples/project/list-variables.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-android-platform.md b/examples/1.9.x/server-swift/examples/project/update-android-platform.md index e881bfece..2e56e30bb 100644 --- a/examples/1.9.x/server-swift/examples/project/update-android-platform.md +++ b/examples/1.9.x/server-swift/examples/project/update-android-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-apple-platform.md b/examples/1.9.x/server-swift/examples/project/update-apple-platform.md index 8e4bdcb2b..ff57bd94e 100644 --- a/examples/1.9.x/server-swift/examples/project/update-apple-platform.md +++ b/examples/1.9.x/server-swift/examples/project/update-apple-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-auth-method.md b/examples/1.9.x/server-swift/examples/project/update-auth-method.md index 1512ab09b..dc371008c 100644 --- a/examples/1.9.x/server-swift/examples/project/update-auth-method.md +++ b/examples/1.9.x/server-swift/examples/project/update-auth-method.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-deny-aliased-email-policy.md b/examples/1.9.x/server-swift/examples/project/update-deny-aliased-email-policy.md index 712daf818..9e0c7a346 100644 --- a/examples/1.9.x/server-swift/examples/project/update-deny-aliased-email-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-deny-aliased-email-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-deny-disposable-email-policy.md b/examples/1.9.x/server-swift/examples/project/update-deny-disposable-email-policy.md index 011241cb5..bc19dea36 100644 --- a/examples/1.9.x/server-swift/examples/project/update-deny-disposable-email-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-deny-disposable-email-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-deny-free-email-policy.md b/examples/1.9.x/server-swift/examples/project/update-deny-free-email-policy.md index 07734dc11..cd25b1144 100644 --- a/examples/1.9.x/server-swift/examples/project/update-deny-free-email-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-deny-free-email-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-email-template.md b/examples/1.9.x/server-swift/examples/project/update-email-template.md index 917e169cb..df766ba0f 100644 --- a/examples/1.9.x/server-swift/examples/project/update-email-template.md +++ b/examples/1.9.x/server-swift/examples/project/update-email-template.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-key.md b/examples/1.9.x/server-swift/examples/project/update-key.md index b94b74f13..0c630db22 100644 --- a/examples/1.9.x/server-swift/examples/project/update-key.md +++ b/examples/1.9.x/server-swift/examples/project/update-key.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-labels.md b/examples/1.9.x/server-swift/examples/project/update-labels.md index fe290de25..b30bf2379 100644 --- a/examples/1.9.x/server-swift/examples/project/update-labels.md +++ b/examples/1.9.x/server-swift/examples/project/update-labels.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-linux-platform.md b/examples/1.9.x/server-swift/examples/project/update-linux-platform.md index 6d079a677..081da995a 100644 --- a/examples/1.9.x/server-swift/examples/project/update-linux-platform.md +++ b/examples/1.9.x/server-swift/examples/project/update-linux-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-membership-privacy-policy.md b/examples/1.9.x/server-swift/examples/project/update-membership-privacy-policy.md index d3865319a..22652870d 100644 --- a/examples/1.9.x/server-swift/examples/project/update-membership-privacy-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-membership-privacy-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-mock-phone.md b/examples/1.9.x/server-swift/examples/project/update-mock-phone.md index 4181189b3..4c1cce301 100644 --- a/examples/1.9.x/server-swift/examples/project/update-mock-phone.md +++ b/examples/1.9.x/server-swift/examples/project/update-mock-phone.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-amazon.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-amazon.md index 729f57b2e..62c4ad552 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-amazon.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-amazon.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-apple.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-apple.md index 9a5e4a23f..23c51c798 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-apple.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-apple.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-auth-0.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-auth-0.md index 32fa12df4..aed7cb4ff 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-auth-0.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-auth-0.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-authentik.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-authentik.md index e627e0e36..114541f1c 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-authentik.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-authentik.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-autodesk.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-autodesk.md index a20dc1a0b..2e503ec51 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-autodesk.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-autodesk.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-bitbucket.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-bitbucket.md index d147529b3..c0d7e38ba 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-bitbucket.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-bitbucket.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-bitly.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-bitly.md index 5d4e87c98..7d56ebcc8 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-bitly.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-bitly.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-box.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-box.md index 9a11d94d3..b9196c1d4 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-box.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-box.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-dailymotion.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-dailymotion.md index 598ae75eb..8da7b8ee5 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-dailymotion.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-dailymotion.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-discord.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-discord.md index bdab08003..9a8cef30f 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-discord.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-discord.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-disqus.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-disqus.md index ec7f71955..ecc29fcc3 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-disqus.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-disqus.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-dropbox.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-dropbox.md index 81a1fde31..9ce115526 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-dropbox.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-dropbox.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-etsy.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-etsy.md index 252eb52eb..38fa50566 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-etsy.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-etsy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-facebook.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-facebook.md index b2775c8af..696e903c0 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-facebook.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-facebook.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-figma.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-figma.md index a29c713d1..01774e0a0 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-figma.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-figma.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-fusion-auth.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-fusion-auth.md index 64adf24f5..cf7cd4687 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-fusion-auth.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-fusion-auth.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-git-hub.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-git-hub.md index 3a31b270c..b218a2bdb 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-git-hub.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-git-hub.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-gitlab.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-gitlab.md index 35fd4da04..1260fb4c4 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-gitlab.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-gitlab.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-google.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-google.md index 49309b242..8ba57132b 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-google.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-google.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-keycloak.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-keycloak.md index 90f37c1c1..367d7dd8d 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-keycloak.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-keycloak.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-kick.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-kick.md index 091f4651e..99fcb21f9 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-kick.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-kick.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-linkedin.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-linkedin.md index 5045d05aa..c465c2c97 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-linkedin.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-linkedin.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-microsoft.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-microsoft.md index 1ec4428ba..89f467b53 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-microsoft.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-microsoft.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-notion.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-notion.md index 531a55591..03c26983d 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-notion.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-notion.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-oidc.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-oidc.md index 38599490e..7b73a4af3 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-oidc.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-oidc.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-okta.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-okta.md index 5ee9fb6de..7cf387f84 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-okta.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-okta.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-paypal-sandbox.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-paypal-sandbox.md index 148ac7c30..5ebd48461 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-paypal-sandbox.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-paypal-sandbox.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-paypal.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-paypal.md index 893314fb9..c0e1d2b70 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-paypal.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-paypal.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-podio.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-podio.md index 489d1b47a..c792279f2 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-podio.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-podio.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-salesforce.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-salesforce.md index 65eb7468b..a99642632 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-salesforce.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-salesforce.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-slack.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-slack.md index b60e30216..521e3781f 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-slack.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-slack.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-spotify.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-spotify.md index 6d7570eec..1bb67f6d3 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-spotify.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-spotify.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-stripe.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-stripe.md index a600e6f99..3149766f4 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-stripe.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-stripe.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-tradeshift-sandbox.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-tradeshift-sandbox.md index bbfad0edf..69222e679 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-tradeshift-sandbox.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-tradeshift-sandbox.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-tradeshift.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-tradeshift.md index 83f93be73..42c29d8fa 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-tradeshift.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-tradeshift.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-twitch.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-twitch.md index b2bcda440..06d19b3e2 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-twitch.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-twitch.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-word-press.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-word-press.md index 0025d2e5c..5bcecef13 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-word-press.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-word-press.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-yahoo.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-yahoo.md index dd6bb966f..58f0d2ea4 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-yahoo.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-yahoo.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-yandex.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-yandex.md index 0aa910d35..ccba14467 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-yandex.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-yandex.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-zoho.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-zoho.md index db4f04043..54d516512 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-zoho.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-zoho.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-zoom.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-zoom.md index 2adc273c8..aa5a4aaa0 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2-zoom.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2-zoom.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-o-auth-2x.md b/examples/1.9.x/server-swift/examples/project/update-o-auth-2x.md index e04f13b25..27b962977 100644 --- a/examples/1.9.x/server-swift/examples/project/update-o-auth-2x.md +++ b/examples/1.9.x/server-swift/examples/project/update-o-auth-2x.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-password-dictionary-policy.md b/examples/1.9.x/server-swift/examples/project/update-password-dictionary-policy.md index dd32d0e74..97bb8d98f 100644 --- a/examples/1.9.x/server-swift/examples/project/update-password-dictionary-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-password-dictionary-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-password-history-policy.md b/examples/1.9.x/server-swift/examples/project/update-password-history-policy.md index 8c864e9cc..9099d89b6 100644 --- a/examples/1.9.x/server-swift/examples/project/update-password-history-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-password-history-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-password-personal-data-policy.md b/examples/1.9.x/server-swift/examples/project/update-password-personal-data-policy.md index 155a9fa73..a698def3d 100644 --- a/examples/1.9.x/server-swift/examples/project/update-password-personal-data-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-password-personal-data-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-protocol.md b/examples/1.9.x/server-swift/examples/project/update-protocol.md index e2b7637f6..fec6ec173 100644 --- a/examples/1.9.x/server-swift/examples/project/update-protocol.md +++ b/examples/1.9.x/server-swift/examples/project/update-protocol.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-service.md b/examples/1.9.x/server-swift/examples/project/update-service.md index fc4edf817..1a7205675 100644 --- a/examples/1.9.x/server-swift/examples/project/update-service.md +++ b/examples/1.9.x/server-swift/examples/project/update-service.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-session-alert-policy.md b/examples/1.9.x/server-swift/examples/project/update-session-alert-policy.md index b6391d595..8db530691 100644 --- a/examples/1.9.x/server-swift/examples/project/update-session-alert-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-session-alert-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-session-duration-policy.md b/examples/1.9.x/server-swift/examples/project/update-session-duration-policy.md index c7b80f89f..b02f8c1dd 100644 --- a/examples/1.9.x/server-swift/examples/project/update-session-duration-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-session-duration-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-session-invalidation-policy.md b/examples/1.9.x/server-swift/examples/project/update-session-invalidation-policy.md index c7ae97a54..29c1eed88 100644 --- a/examples/1.9.x/server-swift/examples/project/update-session-invalidation-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-session-invalidation-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-session-limit-policy.md b/examples/1.9.x/server-swift/examples/project/update-session-limit-policy.md index bbff0f750..fcd11e68a 100644 --- a/examples/1.9.x/server-swift/examples/project/update-session-limit-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-session-limit-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-smtp.md b/examples/1.9.x/server-swift/examples/project/update-smtp.md index da346c09b..8d7e140b9 100644 --- a/examples/1.9.x/server-swift/examples/project/update-smtp.md +++ b/examples/1.9.x/server-swift/examples/project/update-smtp.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-user-limit-policy.md b/examples/1.9.x/server-swift/examples/project/update-user-limit-policy.md index b3f0ffec6..7741d7d66 100644 --- a/examples/1.9.x/server-swift/examples/project/update-user-limit-policy.md +++ b/examples/1.9.x/server-swift/examples/project/update-user-limit-policy.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-variable.md b/examples/1.9.x/server-swift/examples/project/update-variable.md index a7df7adad..4d5994adb 100644 --- a/examples/1.9.x/server-swift/examples/project/update-variable.md +++ b/examples/1.9.x/server-swift/examples/project/update-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-web-platform.md b/examples/1.9.x/server-swift/examples/project/update-web-platform.md index 3e78f60e5..65338820d 100644 --- a/examples/1.9.x/server-swift/examples/project/update-web-platform.md +++ b/examples/1.9.x/server-swift/examples/project/update-web-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/project/update-windows-platform.md b/examples/1.9.x/server-swift/examples/project/update-windows-platform.md index 26b028f26..507ada3f6 100644 --- a/examples/1.9.x/server-swift/examples/project/update-windows-platform.md +++ b/examples/1.9.x/server-swift/examples/project/update-windows-platform.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/proxy/create-api-rule.md b/examples/1.9.x/server-swift/examples/proxy/create-api-rule.md index 6d64c6910..157740987 100644 --- a/examples/1.9.x/server-swift/examples/proxy/create-api-rule.md +++ b/examples/1.9.x/server-swift/examples/proxy/create-api-rule.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/proxy/create-function-rule.md b/examples/1.9.x/server-swift/examples/proxy/create-function-rule.md index a4ce510e1..f85016d64 100644 --- a/examples/1.9.x/server-swift/examples/proxy/create-function-rule.md +++ b/examples/1.9.x/server-swift/examples/proxy/create-function-rule.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/proxy/create-redirect-rule.md b/examples/1.9.x/server-swift/examples/proxy/create-redirect-rule.md index 573326daf..4e78ea144 100644 --- a/examples/1.9.x/server-swift/examples/proxy/create-redirect-rule.md +++ b/examples/1.9.x/server-swift/examples/proxy/create-redirect-rule.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -12,7 +12,7 @@ let proxy = Proxy(client) let proxyRule = try await proxy.createRedirectRule( domain: "", url: "https://example.com", - statusCode: .movedPermanently301, + statusCode: .movedPermanently, resourceId: "", resourceType: .site ) diff --git a/examples/1.9.x/server-swift/examples/proxy/create-site-rule.md b/examples/1.9.x/server-swift/examples/proxy/create-site-rule.md index 190da0173..838bea68b 100644 --- a/examples/1.9.x/server-swift/examples/proxy/create-site-rule.md +++ b/examples/1.9.x/server-swift/examples/proxy/create-site-rule.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/proxy/delete-rule.md b/examples/1.9.x/server-swift/examples/proxy/delete-rule.md index 019361f8a..9e4370b2e 100644 --- a/examples/1.9.x/server-swift/examples/proxy/delete-rule.md +++ b/examples/1.9.x/server-swift/examples/proxy/delete-rule.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/proxy/get-rule.md b/examples/1.9.x/server-swift/examples/proxy/get-rule.md index 0a91b3cf7..c316d5d43 100644 --- a/examples/1.9.x/server-swift/examples/proxy/get-rule.md +++ b/examples/1.9.x/server-swift/examples/proxy/get-rule.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/proxy/list-rules.md b/examples/1.9.x/server-swift/examples/proxy/list-rules.md index bb252ac88..17e0884b5 100644 --- a/examples/1.9.x/server-swift/examples/proxy/list-rules.md +++ b/examples/1.9.x/server-swift/examples/proxy/list-rules.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/proxy/update-rule-status.md b/examples/1.9.x/server-swift/examples/proxy/update-rule-status.md index fc65fbfab..02f65e528 100644 --- a/examples/1.9.x/server-swift/examples/proxy/update-rule-status.md +++ b/examples/1.9.x/server-swift/examples/proxy/update-rule-status.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/create-deployment.md b/examples/1.9.x/server-swift/examples/sites/create-deployment.md index 9dd28d874..f569655e0 100644 --- a/examples/1.9.x/server-swift/examples/sites/create-deployment.md +++ b/examples/1.9.x/server-swift/examples/sites/create-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/create-duplicate-deployment.md b/examples/1.9.x/server-swift/examples/sites/create-duplicate-deployment.md index 713f301c8..f10bd545c 100644 --- a/examples/1.9.x/server-swift/examples/sites/create-duplicate-deployment.md +++ b/examples/1.9.x/server-swift/examples/sites/create-duplicate-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/create-template-deployment.md b/examples/1.9.x/server-swift/examples/sites/create-template-deployment.md index 3bd90c077..32887efb5 100644 --- a/examples/1.9.x/server-swift/examples/sites/create-template-deployment.md +++ b/examples/1.9.x/server-swift/examples/sites/create-template-deployment.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/create-variable.md b/examples/1.9.x/server-swift/examples/sites/create-variable.md index 12f8beb62..0d293f0af 100644 --- a/examples/1.9.x/server-swift/examples/sites/create-variable.md +++ b/examples/1.9.x/server-swift/examples/sites/create-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/create-vcs-deployment.md b/examples/1.9.x/server-swift/examples/sites/create-vcs-deployment.md index aac865a02..0b7b76e5d 100644 --- a/examples/1.9.x/server-swift/examples/sites/create-vcs-deployment.md +++ b/examples/1.9.x/server-swift/examples/sites/create-vcs-deployment.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/create.md b/examples/1.9.x/server-swift/examples/sites/create.md index 86334cf3e..4ec769d8f 100644 --- a/examples/1.9.x/server-swift/examples/sites/create.md +++ b/examples/1.9.x/server-swift/examples/sites/create.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -28,6 +28,8 @@ let site = try await sites.create( providerBranch: "", // optional providerSilentMode: false, // optional providerRootDirectory: "", // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: "", // optional runtimeSpecification: "", // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-swift/examples/sites/delete-deployment.md b/examples/1.9.x/server-swift/examples/sites/delete-deployment.md index 018be7a4b..8dbbaed8c 100644 --- a/examples/1.9.x/server-swift/examples/sites/delete-deployment.md +++ b/examples/1.9.x/server-swift/examples/sites/delete-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/delete-log.md b/examples/1.9.x/server-swift/examples/sites/delete-log.md index 2b88a5650..e5e9b401d 100644 --- a/examples/1.9.x/server-swift/examples/sites/delete-log.md +++ b/examples/1.9.x/server-swift/examples/sites/delete-log.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/delete-variable.md b/examples/1.9.x/server-swift/examples/sites/delete-variable.md index 513b8232e..d7aff5840 100644 --- a/examples/1.9.x/server-swift/examples/sites/delete-variable.md +++ b/examples/1.9.x/server-swift/examples/sites/delete-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/delete.md b/examples/1.9.x/server-swift/examples/sites/delete.md index c71618cf7..b11528df3 100644 --- a/examples/1.9.x/server-swift/examples/sites/delete.md +++ b/examples/1.9.x/server-swift/examples/sites/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/get-deployment-download.md b/examples/1.9.x/server-swift/examples/sites/get-deployment-download.md index 4c11b91cc..ca334f37f 100644 --- a/examples/1.9.x/server-swift/examples/sites/get-deployment-download.md +++ b/examples/1.9.x/server-swift/examples/sites/get-deployment-download.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/get-deployment.md b/examples/1.9.x/server-swift/examples/sites/get-deployment.md index 03413bb40..68f0b333d 100644 --- a/examples/1.9.x/server-swift/examples/sites/get-deployment.md +++ b/examples/1.9.x/server-swift/examples/sites/get-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/get-log.md b/examples/1.9.x/server-swift/examples/sites/get-log.md index 608a2611a..deeade641 100644 --- a/examples/1.9.x/server-swift/examples/sites/get-log.md +++ b/examples/1.9.x/server-swift/examples/sites/get-log.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/get-variable.md b/examples/1.9.x/server-swift/examples/sites/get-variable.md index 4f22a1905..1678a556b 100644 --- a/examples/1.9.x/server-swift/examples/sites/get-variable.md +++ b/examples/1.9.x/server-swift/examples/sites/get-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/get.md b/examples/1.9.x/server-swift/examples/sites/get.md index be7ab735d..51b4c93e9 100644 --- a/examples/1.9.x/server-swift/examples/sites/get.md +++ b/examples/1.9.x/server-swift/examples/sites/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/list-deployments.md b/examples/1.9.x/server-swift/examples/sites/list-deployments.md index 3427c09f3..672ac2581 100644 --- a/examples/1.9.x/server-swift/examples/sites/list-deployments.md +++ b/examples/1.9.x/server-swift/examples/sites/list-deployments.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/list-frameworks.md b/examples/1.9.x/server-swift/examples/sites/list-frameworks.md index f4fe3a699..55b302e69 100644 --- a/examples/1.9.x/server-swift/examples/sites/list-frameworks.md +++ b/examples/1.9.x/server-swift/examples/sites/list-frameworks.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/list-logs.md b/examples/1.9.x/server-swift/examples/sites/list-logs.md index bc532302e..74b02c55f 100644 --- a/examples/1.9.x/server-swift/examples/sites/list-logs.md +++ b/examples/1.9.x/server-swift/examples/sites/list-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/list-specifications.md b/examples/1.9.x/server-swift/examples/sites/list-specifications.md index c34357da8..ad0986762 100644 --- a/examples/1.9.x/server-swift/examples/sites/list-specifications.md +++ b/examples/1.9.x/server-swift/examples/sites/list-specifications.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/list-variables.md b/examples/1.9.x/server-swift/examples/sites/list-variables.md index a32762a53..710122c31 100644 --- a/examples/1.9.x/server-swift/examples/sites/list-variables.md +++ b/examples/1.9.x/server-swift/examples/sites/list-variables.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/list.md b/examples/1.9.x/server-swift/examples/sites/list.md index 9d5f7763f..cae3d4c62 100644 --- a/examples/1.9.x/server-swift/examples/sites/list.md +++ b/examples/1.9.x/server-swift/examples/sites/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/update-deployment-status.md b/examples/1.9.x/server-swift/examples/sites/update-deployment-status.md index 4b9364be2..796a137ae 100644 --- a/examples/1.9.x/server-swift/examples/sites/update-deployment-status.md +++ b/examples/1.9.x/server-swift/examples/sites/update-deployment-status.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/update-site-deployment.md b/examples/1.9.x/server-swift/examples/sites/update-site-deployment.md index 880060d0b..775860be8 100644 --- a/examples/1.9.x/server-swift/examples/sites/update-site-deployment.md +++ b/examples/1.9.x/server-swift/examples/sites/update-site-deployment.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/update-variable.md b/examples/1.9.x/server-swift/examples/sites/update-variable.md index a79f3a4bb..b310e72df 100644 --- a/examples/1.9.x/server-swift/examples/sites/update-variable.md +++ b/examples/1.9.x/server-swift/examples/sites/update-variable.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/sites/update.md b/examples/1.9.x/server-swift/examples/sites/update.md index 074e24fb3..8934b29fa 100644 --- a/examples/1.9.x/server-swift/examples/sites/update.md +++ b/examples/1.9.x/server-swift/examples/sites/update.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key @@ -28,6 +28,8 @@ let site = try await sites.update( providerBranch: "", // optional providerSilentMode: false, // optional providerRootDirectory: "", // optional + providerBranches: [], // optional + providerPaths: [], // optional buildSpecification: "", // optional runtimeSpecification: "", // optional deploymentRetention: 0 // optional diff --git a/examples/1.9.x/server-swift/examples/storage/create-bucket.md b/examples/1.9.x/server-swift/examples/storage/create-bucket.md index 89ccc8e43..0f9e7bec1 100644 --- a/examples/1.9.x/server-swift/examples/storage/create-bucket.md +++ b/examples/1.9.x/server-swift/examples/storage/create-bucket.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/storage/create-file.md b/examples/1.9.x/server-swift/examples/storage/create-file.md index 6ab324e4b..4ed6e9ee6 100644 --- a/examples/1.9.x/server-swift/examples/storage/create-file.md +++ b/examples/1.9.x/server-swift/examples/storage/create-file.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/storage/delete-bucket.md b/examples/1.9.x/server-swift/examples/storage/delete-bucket.md index 43c58231f..636706dd7 100644 --- a/examples/1.9.x/server-swift/examples/storage/delete-bucket.md +++ b/examples/1.9.x/server-swift/examples/storage/delete-bucket.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/storage/delete-file.md b/examples/1.9.x/server-swift/examples/storage/delete-file.md index 2f6295244..2f69bdd02 100644 --- a/examples/1.9.x/server-swift/examples/storage/delete-file.md +++ b/examples/1.9.x/server-swift/examples/storage/delete-file.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/storage/get-bucket.md b/examples/1.9.x/server-swift/examples/storage/get-bucket.md index e261e7b69..67db33db0 100644 --- a/examples/1.9.x/server-swift/examples/storage/get-bucket.md +++ b/examples/1.9.x/server-swift/examples/storage/get-bucket.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/storage/get-file-download.md b/examples/1.9.x/server-swift/examples/storage/get-file-download.md index 2efb755f7..a0f30cc7b 100644 --- a/examples/1.9.x/server-swift/examples/storage/get-file-download.md +++ b/examples/1.9.x/server-swift/examples/storage/get-file-download.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/storage/get-file-preview.md b/examples/1.9.x/server-swift/examples/storage/get-file-preview.md index e30e19aa5..a5783ba98 100644 --- a/examples/1.9.x/server-swift/examples/storage/get-file-preview.md +++ b/examples/1.9.x/server-swift/examples/storage/get-file-preview.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/storage/get-file-view.md b/examples/1.9.x/server-swift/examples/storage/get-file-view.md index df514f7e4..b71b8c950 100644 --- a/examples/1.9.x/server-swift/examples/storage/get-file-view.md +++ b/examples/1.9.x/server-swift/examples/storage/get-file-view.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/storage/get-file.md b/examples/1.9.x/server-swift/examples/storage/get-file.md index 36b999cff..f2ce1fd7d 100644 --- a/examples/1.9.x/server-swift/examples/storage/get-file.md +++ b/examples/1.9.x/server-swift/examples/storage/get-file.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/storage/list-buckets.md b/examples/1.9.x/server-swift/examples/storage/list-buckets.md index 86e84bd34..cf6ac8080 100644 --- a/examples/1.9.x/server-swift/examples/storage/list-buckets.md +++ b/examples/1.9.x/server-swift/examples/storage/list-buckets.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/storage/list-files.md b/examples/1.9.x/server-swift/examples/storage/list-files.md index 7102270f3..cb95e0c44 100644 --- a/examples/1.9.x/server-swift/examples/storage/list-files.md +++ b/examples/1.9.x/server-swift/examples/storage/list-files.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/storage/update-bucket.md b/examples/1.9.x/server-swift/examples/storage/update-bucket.md index a5b66e39f..06edd32e2 100644 --- a/examples/1.9.x/server-swift/examples/storage/update-bucket.md +++ b/examples/1.9.x/server-swift/examples/storage/update-bucket.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/storage/update-file.md b/examples/1.9.x/server-swift/examples/storage/update-file.md index aa02fd86f..c326e4d15 100644 --- a/examples/1.9.x/server-swift/examples/storage/update-file.md +++ b/examples/1.9.x/server-swift/examples/storage/update-file.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-big-int-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-big-int-column.md index 2d1a5caa6..0fd3d8843 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-big-int-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-big-int-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-boolean-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-boolean-column.md index 5f5f0d6e6..a193fb98d 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-boolean-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-boolean-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-datetime-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-datetime-column.md index c432e48e0..2a82819e7 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-datetime-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-datetime-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-email-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-email-column.md index 507173850..4fe0ab9fa 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-email-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-email-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-enum-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-enum-column.md index 8acc382f6..17f346ec7 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-enum-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-enum-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-float-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-float-column.md index b5cac2dfd..8e1096749 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-float-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-float-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-index.md b/examples/1.9.x/server-swift/examples/tablesdb/create-index.md index 935f0a730..7bd94e1a4 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-index.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-index.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-integer-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-integer-column.md index 27b829466..9912b38c2 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-integer-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-integer-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-ip-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-ip-column.md index 9235e6ee9..c97a41aeb 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-ip-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-ip-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-line-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-line-column.md index a83d45248..34ba35c2a 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-line-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-line-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-longtext-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-longtext-column.md index f94c72be7..edcfe3bde 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-longtext-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-longtext-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-mediumtext-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-mediumtext-column.md index c681ce0e2..219d1aab0 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-mediumtext-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-mediumtext-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-operations.md b/examples/1.9.x/server-swift/examples/tablesdb/create-operations.md index 3f673a5b4..06311cab5 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-operations.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-operations.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-point-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-point-column.md index d52a2ccc6..aa81219fb 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-point-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-point-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-polygon-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-polygon-column.md index 59c880712..df2665c42 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-polygon-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-polygon-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-relationship-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-relationship-column.md index 7d5ed40d1..73bd56501 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-relationship-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-relationship-column.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-row.md b/examples/1.9.x/server-swift/examples/tablesdb/create-row.md index 535ee521e..f0499dbe7 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-row.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-rows.md b/examples/1.9.x/server-swift/examples/tablesdb/create-rows.md index 0a8380717..e8f0d36dd 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-rows.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-rows.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-string-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-string-column.md index 051181632..9b57a8143 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-string-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-string-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-table.md b/examples/1.9.x/server-swift/examples/tablesdb/create-table.md index d8c537dcc..e828ba1d8 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-table.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-table.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-text-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-text-column.md index 71c5b23e6..5cad4c9d6 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-text-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-text-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-transaction.md b/examples/1.9.x/server-swift/examples/tablesdb/create-transaction.md index efa765097..4b6533d70 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-transaction.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-url-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-url-column.md index 22c33bf17..231315732 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-url-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-url-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create-varchar-column.md b/examples/1.9.x/server-swift/examples/tablesdb/create-varchar-column.md index de9771554..a13698314 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create-varchar-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create-varchar-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/create.md b/examples/1.9.x/server-swift/examples/tablesdb/create.md index 91fe76a73..02e34d622 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/create.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/create.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/decrement-row-column.md b/examples/1.9.x/server-swift/examples/tablesdb/decrement-row-column.md index 10f86d5a3..384a87ea2 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/decrement-row-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/decrement-row-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/delete-column.md b/examples/1.9.x/server-swift/examples/tablesdb/delete-column.md index 221e13a97..f8346c37a 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/delete-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/delete-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/delete-index.md b/examples/1.9.x/server-swift/examples/tablesdb/delete-index.md index 982a10cf3..ebb72d034 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/delete-index.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/delete-index.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/delete-row.md b/examples/1.9.x/server-swift/examples/tablesdb/delete-row.md index 89b575fc0..2c1622819 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/delete-row.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/delete-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/delete-rows.md b/examples/1.9.x/server-swift/examples/tablesdb/delete-rows.md index 0ab77ec63..52922cac7 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/delete-rows.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/delete-rows.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/delete-table.md b/examples/1.9.x/server-swift/examples/tablesdb/delete-table.md index b5e613f4c..2afe41b43 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/delete-table.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/delete-table.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/delete-transaction.md b/examples/1.9.x/server-swift/examples/tablesdb/delete-transaction.md index 90c4c4b77..2b8061620 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/delete-transaction.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/delete-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/delete.md b/examples/1.9.x/server-swift/examples/tablesdb/delete.md index 0341da342..c0d222661 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/delete.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/get-column.md b/examples/1.9.x/server-swift/examples/tablesdb/get-column.md index 74f0d8d8f..a7e46533b 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/get-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/get-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/get-index.md b/examples/1.9.x/server-swift/examples/tablesdb/get-index.md index 86e15d515..021f9dfe3 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/get-index.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/get-index.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/get-row.md b/examples/1.9.x/server-swift/examples/tablesdb/get-row.md index 72ef92fec..82cb22409 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/get-row.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/get-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/get-table.md b/examples/1.9.x/server-swift/examples/tablesdb/get-table.md index b3a68b5de..e7247a82c 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/get-table.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/get-table.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/get-transaction.md b/examples/1.9.x/server-swift/examples/tablesdb/get-transaction.md index faf6677a3..1f5c0c633 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/get-transaction.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/get-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/get.md b/examples/1.9.x/server-swift/examples/tablesdb/get.md index b94686d2a..6fa34d973 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/get.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/increment-row-column.md b/examples/1.9.x/server-swift/examples/tablesdb/increment-row-column.md index dc2a16cdc..b4a54323e 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/increment-row-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/increment-row-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/list-columns.md b/examples/1.9.x/server-swift/examples/tablesdb/list-columns.md index 1a4ce6b19..ee3403287 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/list-columns.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/list-columns.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/list-indexes.md b/examples/1.9.x/server-swift/examples/tablesdb/list-indexes.md index 49cb529a8..06f51d385 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/list-indexes.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/list-indexes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/list-rows.md b/examples/1.9.x/server-swift/examples/tablesdb/list-rows.md index 6be251796..01ecb1ede 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/list-rows.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/list-rows.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/list-tables.md b/examples/1.9.x/server-swift/examples/tablesdb/list-tables.md index a611a8f4a..7aae1cbbc 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/list-tables.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/list-tables.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/list-transactions.md b/examples/1.9.x/server-swift/examples/tablesdb/list-transactions.md index bf51907bd..9550c87d0 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/list-transactions.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/list-transactions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/list.md b/examples/1.9.x/server-swift/examples/tablesdb/list.md index 4ac684caf..48f4b0e33 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/list.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-big-int-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-big-int-column.md index ef129384f..bceabf46f 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-big-int-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-big-int-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-boolean-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-boolean-column.md index b67a55bca..e86dfdca5 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-boolean-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-boolean-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-datetime-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-datetime-column.md index 519e87e27..fd59343e6 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-datetime-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-datetime-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-email-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-email-column.md index 1e549ae1f..782881bff 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-email-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-email-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-enum-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-enum-column.md index 5a8b8feec..ff9b651c6 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-enum-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-enum-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-float-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-float-column.md index 1a1490da3..f1f1f8184 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-float-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-float-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-integer-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-integer-column.md index 7754084e5..61532127b 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-integer-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-integer-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-ip-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-ip-column.md index a9b3578b2..d047d615a 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-ip-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-ip-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-line-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-line-column.md index 02c911f4b..c9ff3df8e 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-line-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-line-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-longtext-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-longtext-column.md index 31da3571c..c3c9339b7 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-longtext-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-longtext-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-mediumtext-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-mediumtext-column.md index 6b4744648..0ba56f9a4 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-mediumtext-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-mediumtext-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-point-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-point-column.md index 61c450732..f0b483127 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-point-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-point-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-polygon-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-polygon-column.md index b58f0ddfb..0c6bebf86 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-polygon-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-polygon-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-relationship-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-relationship-column.md index addc38bb1..024e199b5 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-relationship-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-relationship-column.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-row.md b/examples/1.9.x/server-swift/examples/tablesdb/update-row.md index da34394b6..9bd7721f0 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-row.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-rows.md b/examples/1.9.x/server-swift/examples/tablesdb/update-rows.md index 934e441e3..0fa27dfa3 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-rows.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-rows.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-string-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-string-column.md index 2932f5f26..d43772efb 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-string-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-string-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-table.md b/examples/1.9.x/server-swift/examples/tablesdb/update-table.md index f05bb4c86..eb3a533ce 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-table.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-table.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-text-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-text-column.md index a377426c1..338c99284 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-text-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-text-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-transaction.md b/examples/1.9.x/server-swift/examples/tablesdb/update-transaction.md index 69abac950..33a67cd66 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-transaction.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-transaction.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-url-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-url-column.md index 285563541..cb3eddb1d 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-url-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-url-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update-varchar-column.md b/examples/1.9.x/server-swift/examples/tablesdb/update-varchar-column.md index 098463b8f..f9e5ec34e 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update-varchar-column.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update-varchar-column.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/update.md b/examples/1.9.x/server-swift/examples/tablesdb/update.md index b1c2c665b..9c102dc07 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/update.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/update.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tablesdb/upsert-row.md b/examples/1.9.x/server-swift/examples/tablesdb/upsert-row.md index c84ee4b98..e81adadfe 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/upsert-row.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/upsert-row.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tablesdb/upsert-rows.md b/examples/1.9.x/server-swift/examples/tablesdb/upsert-rows.md index 457ea5c58..be4722f56 100644 --- a/examples/1.9.x/server-swift/examples/tablesdb/upsert-rows.md +++ b/examples/1.9.x/server-swift/examples/tablesdb/upsert-rows.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/teams/create-membership.md b/examples/1.9.x/server-swift/examples/teams/create-membership.md index bed0624bc..df6816adb 100644 --- a/examples/1.9.x/server-swift/examples/teams/create-membership.md +++ b/examples/1.9.x/server-swift/examples/teams/create-membership.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/create.md b/examples/1.9.x/server-swift/examples/teams/create.md index 0aadb201a..823f7a7a1 100644 --- a/examples/1.9.x/server-swift/examples/teams/create.md +++ b/examples/1.9.x/server-swift/examples/teams/create.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/delete-membership.md b/examples/1.9.x/server-swift/examples/teams/delete-membership.md index fb1c47830..a19876181 100644 --- a/examples/1.9.x/server-swift/examples/teams/delete-membership.md +++ b/examples/1.9.x/server-swift/examples/teams/delete-membership.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/delete.md b/examples/1.9.x/server-swift/examples/teams/delete.md index e6b1dcbf2..0a9822a15 100644 --- a/examples/1.9.x/server-swift/examples/teams/delete.md +++ b/examples/1.9.x/server-swift/examples/teams/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/get-membership.md b/examples/1.9.x/server-swift/examples/teams/get-membership.md index a2d73f27f..72b915f1f 100644 --- a/examples/1.9.x/server-swift/examples/teams/get-membership.md +++ b/examples/1.9.x/server-swift/examples/teams/get-membership.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/get-prefs.md b/examples/1.9.x/server-swift/examples/teams/get-prefs.md index 210d6c99a..0dadf5b2d 100644 --- a/examples/1.9.x/server-swift/examples/teams/get-prefs.md +++ b/examples/1.9.x/server-swift/examples/teams/get-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/get.md b/examples/1.9.x/server-swift/examples/teams/get.md index fc7734ffb..59e766903 100644 --- a/examples/1.9.x/server-swift/examples/teams/get.md +++ b/examples/1.9.x/server-swift/examples/teams/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/list-memberships.md b/examples/1.9.x/server-swift/examples/teams/list-memberships.md index 0df4809fc..bc156bcad 100644 --- a/examples/1.9.x/server-swift/examples/teams/list-memberships.md +++ b/examples/1.9.x/server-swift/examples/teams/list-memberships.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/list.md b/examples/1.9.x/server-swift/examples/teams/list.md index 4b36faf54..8d1d91dce 100644 --- a/examples/1.9.x/server-swift/examples/teams/list.md +++ b/examples/1.9.x/server-swift/examples/teams/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/update-membership-status.md b/examples/1.9.x/server-swift/examples/teams/update-membership-status.md index b03cdb4b4..8b79784ab 100644 --- a/examples/1.9.x/server-swift/examples/teams/update-membership-status.md +++ b/examples/1.9.x/server-swift/examples/teams/update-membership-status.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/update-membership.md b/examples/1.9.x/server-swift/examples/teams/update-membership.md index b2cce9df7..39d3656ca 100644 --- a/examples/1.9.x/server-swift/examples/teams/update-membership.md +++ b/examples/1.9.x/server-swift/examples/teams/update-membership.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/update-name.md b/examples/1.9.x/server-swift/examples/teams/update-name.md index e2e9b1c0e..1ba090edf 100644 --- a/examples/1.9.x/server-swift/examples/teams/update-name.md +++ b/examples/1.9.x/server-swift/examples/teams/update-name.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/teams/update-prefs.md b/examples/1.9.x/server-swift/examples/teams/update-prefs.md index 572f32b37..7a880e9b0 100644 --- a/examples/1.9.x/server-swift/examples/teams/update-prefs.md +++ b/examples/1.9.x/server-swift/examples/teams/update-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setSession("") // The user session to authenticate with diff --git a/examples/1.9.x/server-swift/examples/tokens/create-file-token.md b/examples/1.9.x/server-swift/examples/tokens/create-file-token.md index a1502fe6c..27891fa31 100644 --- a/examples/1.9.x/server-swift/examples/tokens/create-file-token.md +++ b/examples/1.9.x/server-swift/examples/tokens/create-file-token.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tokens/delete.md b/examples/1.9.x/server-swift/examples/tokens/delete.md index fc82daf5a..a76831fff 100644 --- a/examples/1.9.x/server-swift/examples/tokens/delete.md +++ b/examples/1.9.x/server-swift/examples/tokens/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tokens/get.md b/examples/1.9.x/server-swift/examples/tokens/get.md index 825d8d68a..8f0e6c3b2 100644 --- a/examples/1.9.x/server-swift/examples/tokens/get.md +++ b/examples/1.9.x/server-swift/examples/tokens/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tokens/list.md b/examples/1.9.x/server-swift/examples/tokens/list.md index 3429e2c3f..5f1b7e4f8 100644 --- a/examples/1.9.x/server-swift/examples/tokens/list.md +++ b/examples/1.9.x/server-swift/examples/tokens/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/tokens/update.md b/examples/1.9.x/server-swift/examples/tokens/update.md index 276a9e751..152c6a2a6 100644 --- a/examples/1.9.x/server-swift/examples/tokens/update.md +++ b/examples/1.9.x/server-swift/examples/tokens/update.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/usage/list-events.md b/examples/1.9.x/server-swift/examples/usage/list-events.md index ad7b5209e..f5aecd778 100644 --- a/examples/1.9.x/server-swift/examples/usage/list-events.md +++ b/examples/1.9.x/server-swift/examples/usage/list-events.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/usage/list-gauges.md b/examples/1.9.x/server-swift/examples/usage/list-gauges.md index f68c1e5d1..101b113ea 100644 --- a/examples/1.9.x/server-swift/examples/usage/list-gauges.md +++ b/examples/1.9.x/server-swift/examples/usage/list-gauges.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-argon-2-user.md b/examples/1.9.x/server-swift/examples/users/create-argon-2-user.md index b2233a91c..98b2b0d28 100644 --- a/examples/1.9.x/server-swift/examples/users/create-argon-2-user.md +++ b/examples/1.9.x/server-swift/examples/users/create-argon-2-user.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-bcrypt-user.md b/examples/1.9.x/server-swift/examples/users/create-bcrypt-user.md index 58e32f4de..6a5b57246 100644 --- a/examples/1.9.x/server-swift/examples/users/create-bcrypt-user.md +++ b/examples/1.9.x/server-swift/examples/users/create-bcrypt-user.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-jwt.md b/examples/1.9.x/server-swift/examples/users/create-jwt.md index 7cc76e0fa..ad414d10b 100644 --- a/examples/1.9.x/server-swift/examples/users/create-jwt.md +++ b/examples/1.9.x/server-swift/examples/users/create-jwt.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-md-5-user.md b/examples/1.9.x/server-swift/examples/users/create-md-5-user.md index 979548e20..f69c8d97b 100644 --- a/examples/1.9.x/server-swift/examples/users/create-md-5-user.md +++ b/examples/1.9.x/server-swift/examples/users/create-md-5-user.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-mfa-recovery-codes.md b/examples/1.9.x/server-swift/examples/users/create-mfa-recovery-codes.md index a9c3a8479..36c75fc35 100644 --- a/examples/1.9.x/server-swift/examples/users/create-mfa-recovery-codes.md +++ b/examples/1.9.x/server-swift/examples/users/create-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-ph-pass-user.md b/examples/1.9.x/server-swift/examples/users/create-ph-pass-user.md index 2df63ec2c..415687c1a 100644 --- a/examples/1.9.x/server-swift/examples/users/create-ph-pass-user.md +++ b/examples/1.9.x/server-swift/examples/users/create-ph-pass-user.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-scrypt-modified-user.md b/examples/1.9.x/server-swift/examples/users/create-scrypt-modified-user.md index 707db0d0f..9bd43741d 100644 --- a/examples/1.9.x/server-swift/examples/users/create-scrypt-modified-user.md +++ b/examples/1.9.x/server-swift/examples/users/create-scrypt-modified-user.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-scrypt-user.md b/examples/1.9.x/server-swift/examples/users/create-scrypt-user.md index 1281bfb7d..0e404c9a8 100644 --- a/examples/1.9.x/server-swift/examples/users/create-scrypt-user.md +++ b/examples/1.9.x/server-swift/examples/users/create-scrypt-user.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-session.md b/examples/1.9.x/server-swift/examples/users/create-session.md index 46849ece0..b60059fcd 100644 --- a/examples/1.9.x/server-swift/examples/users/create-session.md +++ b/examples/1.9.x/server-swift/examples/users/create-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-sha-user.md b/examples/1.9.x/server-swift/examples/users/create-sha-user.md index efbf7b7cd..6fec301e6 100644 --- a/examples/1.9.x/server-swift/examples/users/create-sha-user.md +++ b/examples/1.9.x/server-swift/examples/users/create-sha-user.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-target.md b/examples/1.9.x/server-swift/examples/users/create-target.md index e0d7d2c6f..817343f23 100644 --- a/examples/1.9.x/server-swift/examples/users/create-target.md +++ b/examples/1.9.x/server-swift/examples/users/create-target.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create-token.md b/examples/1.9.x/server-swift/examples/users/create-token.md index ec1957fd8..a6023e1e9 100644 --- a/examples/1.9.x/server-swift/examples/users/create-token.md +++ b/examples/1.9.x/server-swift/examples/users/create-token.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/create.md b/examples/1.9.x/server-swift/examples/users/create.md index 8068f438a..d41b8f629 100644 --- a/examples/1.9.x/server-swift/examples/users/create.md +++ b/examples/1.9.x/server-swift/examples/users/create.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/delete-identity.md b/examples/1.9.x/server-swift/examples/users/delete-identity.md index 5c9a22254..7c0397c03 100644 --- a/examples/1.9.x/server-swift/examples/users/delete-identity.md +++ b/examples/1.9.x/server-swift/examples/users/delete-identity.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/delete-mfa-authenticator.md b/examples/1.9.x/server-swift/examples/users/delete-mfa-authenticator.md index 92cc125c1..10bbe5299 100644 --- a/examples/1.9.x/server-swift/examples/users/delete-mfa-authenticator.md +++ b/examples/1.9.x/server-swift/examples/users/delete-mfa-authenticator.md @@ -3,7 +3,7 @@ import Appwrite import AppwriteEnums let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/delete-session.md b/examples/1.9.x/server-swift/examples/users/delete-session.md index f54504e1b..0e36d01ac 100644 --- a/examples/1.9.x/server-swift/examples/users/delete-session.md +++ b/examples/1.9.x/server-swift/examples/users/delete-session.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/delete-sessions.md b/examples/1.9.x/server-swift/examples/users/delete-sessions.md index f719e6ad3..86bd46059 100644 --- a/examples/1.9.x/server-swift/examples/users/delete-sessions.md +++ b/examples/1.9.x/server-swift/examples/users/delete-sessions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/delete-target.md b/examples/1.9.x/server-swift/examples/users/delete-target.md index b2fee1ae9..baed04c1a 100644 --- a/examples/1.9.x/server-swift/examples/users/delete-target.md +++ b/examples/1.9.x/server-swift/examples/users/delete-target.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/delete.md b/examples/1.9.x/server-swift/examples/users/delete.md index 57c549cb5..0ba2a6ce0 100644 --- a/examples/1.9.x/server-swift/examples/users/delete.md +++ b/examples/1.9.x/server-swift/examples/users/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/get-mfa-recovery-codes.md b/examples/1.9.x/server-swift/examples/users/get-mfa-recovery-codes.md index bca1a13fc..8747d6678 100644 --- a/examples/1.9.x/server-swift/examples/users/get-mfa-recovery-codes.md +++ b/examples/1.9.x/server-swift/examples/users/get-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/get-prefs.md b/examples/1.9.x/server-swift/examples/users/get-prefs.md index 5ed3429a0..430274b2c 100644 --- a/examples/1.9.x/server-swift/examples/users/get-prefs.md +++ b/examples/1.9.x/server-swift/examples/users/get-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/get-target.md b/examples/1.9.x/server-swift/examples/users/get-target.md index 8b211888a..dff8b336e 100644 --- a/examples/1.9.x/server-swift/examples/users/get-target.md +++ b/examples/1.9.x/server-swift/examples/users/get-target.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/get.md b/examples/1.9.x/server-swift/examples/users/get.md index 2ced7fb3c..7ea9ecbb4 100644 --- a/examples/1.9.x/server-swift/examples/users/get.md +++ b/examples/1.9.x/server-swift/examples/users/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/list-identities.md b/examples/1.9.x/server-swift/examples/users/list-identities.md index d2617efe3..5afadd28e 100644 --- a/examples/1.9.x/server-swift/examples/users/list-identities.md +++ b/examples/1.9.x/server-swift/examples/users/list-identities.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/list-logs.md b/examples/1.9.x/server-swift/examples/users/list-logs.md index f86ef7bee..cfb0ed27d 100644 --- a/examples/1.9.x/server-swift/examples/users/list-logs.md +++ b/examples/1.9.x/server-swift/examples/users/list-logs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/list-memberships.md b/examples/1.9.x/server-swift/examples/users/list-memberships.md index b2311539b..9f528d2d2 100644 --- a/examples/1.9.x/server-swift/examples/users/list-memberships.md +++ b/examples/1.9.x/server-swift/examples/users/list-memberships.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/list-mfa-factors.md b/examples/1.9.x/server-swift/examples/users/list-mfa-factors.md index ac8ca02de..468243cc3 100644 --- a/examples/1.9.x/server-swift/examples/users/list-mfa-factors.md +++ b/examples/1.9.x/server-swift/examples/users/list-mfa-factors.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/list-sessions.md b/examples/1.9.x/server-swift/examples/users/list-sessions.md index 8f084c40e..35f0bf1df 100644 --- a/examples/1.9.x/server-swift/examples/users/list-sessions.md +++ b/examples/1.9.x/server-swift/examples/users/list-sessions.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/list-targets.md b/examples/1.9.x/server-swift/examples/users/list-targets.md index f0428187e..944d590e5 100644 --- a/examples/1.9.x/server-swift/examples/users/list-targets.md +++ b/examples/1.9.x/server-swift/examples/users/list-targets.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/list.md b/examples/1.9.x/server-swift/examples/users/list.md index 4720e0443..663f155d9 100644 --- a/examples/1.9.x/server-swift/examples/users/list.md +++ b/examples/1.9.x/server-swift/examples/users/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-email-verification.md b/examples/1.9.x/server-swift/examples/users/update-email-verification.md index c8889edb6..47772da67 100644 --- a/examples/1.9.x/server-swift/examples/users/update-email-verification.md +++ b/examples/1.9.x/server-swift/examples/users/update-email-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-email.md b/examples/1.9.x/server-swift/examples/users/update-email.md index f3f705c90..2d7b851e7 100644 --- a/examples/1.9.x/server-swift/examples/users/update-email.md +++ b/examples/1.9.x/server-swift/examples/users/update-email.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-impersonator.md b/examples/1.9.x/server-swift/examples/users/update-impersonator.md index 86cd532c5..66e0321e6 100644 --- a/examples/1.9.x/server-swift/examples/users/update-impersonator.md +++ b/examples/1.9.x/server-swift/examples/users/update-impersonator.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-labels.md b/examples/1.9.x/server-swift/examples/users/update-labels.md index 67d4b95dd..a5573d131 100644 --- a/examples/1.9.x/server-swift/examples/users/update-labels.md +++ b/examples/1.9.x/server-swift/examples/users/update-labels.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-mfa-recovery-codes.md b/examples/1.9.x/server-swift/examples/users/update-mfa-recovery-codes.md index 987cd941d..2d8108472 100644 --- a/examples/1.9.x/server-swift/examples/users/update-mfa-recovery-codes.md +++ b/examples/1.9.x/server-swift/examples/users/update-mfa-recovery-codes.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-mfa.md b/examples/1.9.x/server-swift/examples/users/update-mfa.md index 56b44f33a..b7b558d41 100644 --- a/examples/1.9.x/server-swift/examples/users/update-mfa.md +++ b/examples/1.9.x/server-swift/examples/users/update-mfa.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-name.md b/examples/1.9.x/server-swift/examples/users/update-name.md index 38c63415d..9238adac5 100644 --- a/examples/1.9.x/server-swift/examples/users/update-name.md +++ b/examples/1.9.x/server-swift/examples/users/update-name.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-password.md b/examples/1.9.x/server-swift/examples/users/update-password.md index 6a29be4bd..13c5bc248 100644 --- a/examples/1.9.x/server-swift/examples/users/update-password.md +++ b/examples/1.9.x/server-swift/examples/users/update-password.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-phone-verification.md b/examples/1.9.x/server-swift/examples/users/update-phone-verification.md index 91e332422..8a801722d 100644 --- a/examples/1.9.x/server-swift/examples/users/update-phone-verification.md +++ b/examples/1.9.x/server-swift/examples/users/update-phone-verification.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-phone.md b/examples/1.9.x/server-swift/examples/users/update-phone.md index 17d0095fe..5cf16884d 100644 --- a/examples/1.9.x/server-swift/examples/users/update-phone.md +++ b/examples/1.9.x/server-swift/examples/users/update-phone.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-prefs.md b/examples/1.9.x/server-swift/examples/users/update-prefs.md index 21d2ef06c..6ca29af9b 100644 --- a/examples/1.9.x/server-swift/examples/users/update-prefs.md +++ b/examples/1.9.x/server-swift/examples/users/update-prefs.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-status.md b/examples/1.9.x/server-swift/examples/users/update-status.md index fdf0dcac3..36a7c628c 100644 --- a/examples/1.9.x/server-swift/examples/users/update-status.md +++ b/examples/1.9.x/server-swift/examples/users/update-status.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/users/update-target.md b/examples/1.9.x/server-swift/examples/users/update-target.md index 7114e7e90..67def4569 100644 --- a/examples/1.9.x/server-swift/examples/users/update-target.md +++ b/examples/1.9.x/server-swift/examples/users/update-target.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/webhooks/create.md b/examples/1.9.x/server-swift/examples/webhooks/create.md index 0534f62fb..42fc7caf7 100644 --- a/examples/1.9.x/server-swift/examples/webhooks/create.md +++ b/examples/1.9.x/server-swift/examples/webhooks/create.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/webhooks/delete.md b/examples/1.9.x/server-swift/examples/webhooks/delete.md index 337c001cd..20a640635 100644 --- a/examples/1.9.x/server-swift/examples/webhooks/delete.md +++ b/examples/1.9.x/server-swift/examples/webhooks/delete.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/webhooks/get.md b/examples/1.9.x/server-swift/examples/webhooks/get.md index 7710218d7..a82505dcb 100644 --- a/examples/1.9.x/server-swift/examples/webhooks/get.md +++ b/examples/1.9.x/server-swift/examples/webhooks/get.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/webhooks/list.md b/examples/1.9.x/server-swift/examples/webhooks/list.md index d6dbf7713..6125b9da5 100644 --- a/examples/1.9.x/server-swift/examples/webhooks/list.md +++ b/examples/1.9.x/server-swift/examples/webhooks/list.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/webhooks/update-secret.md b/examples/1.9.x/server-swift/examples/webhooks/update-secret.md index 1a29763f7..f018f4fa6 100644 --- a/examples/1.9.x/server-swift/examples/webhooks/update-secret.md +++ b/examples/1.9.x/server-swift/examples/webhooks/update-secret.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/examples/1.9.x/server-swift/examples/webhooks/update.md b/examples/1.9.x/server-swift/examples/webhooks/update.md index 8c42a8837..7fd036d2d 100644 --- a/examples/1.9.x/server-swift/examples/webhooks/update.md +++ b/examples/1.9.x/server-swift/examples/webhooks/update.md @@ -2,7 +2,7 @@ import Appwrite let client = Client() - .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint + .setEndpoint("") // Your API Endpoint .setProject("") // Your project ID .setKey("") // Your secret API key diff --git a/specs/1.9.x/open-api3-1.9.x-client.json b/specs/1.9.x/open-api3-1.9.x-client.json index 07296e62e..b2c7c1f25 100644 --- a/specs/1.9.x/open-api3-1.9.x-client.json +++ b/specs/1.9.x/open-api3-1.9.x-client.json @@ -31,9 +31,6 @@ } } ], - "x-appwrite": { - "endpointDocs": "https:\/\/.cloud.appwrite.io\/v1" - }, "paths": { "\/account": { "get": { @@ -59,7 +56,6 @@ "x-appwrite": { "method": "get", "group": "account", - "weight": 9, "cookies": false, "type": "", "demo": "account\/get.md", @@ -110,7 +106,6 @@ "x-appwrite": { "method": "create", "group": "account", - "weight": 8, "cookies": false, "type": "", "demo": "account\/create.md", @@ -162,6 +157,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "" } }, @@ -200,7 +196,6 @@ "x-appwrite": { "method": "updateEmail", "group": "account", - "weight": 34, "cookies": false, "type": "", "demo": "account\/update-email.md", @@ -280,7 +275,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 47, "cookies": false, "type": "", "demo": "account\/list-identities.md", @@ -352,7 +346,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 48, "cookies": false, "type": "", "demo": "account\/delete-identity.md", @@ -417,7 +410,6 @@ "x-appwrite": { "method": "createJWT", "group": "tokens", - "weight": 29, "cookies": false, "type": "", "demo": "account\/create-jwt.md", @@ -453,6 +445,7 @@ "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", + "default": 900, "x-example": 0, "format": "int32" } @@ -487,7 +480,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 31, "cookies": false, "type": "", "demo": "account\/list-logs.md", @@ -566,7 +558,6 @@ "x-appwrite": { "method": "updateMFA", "group": "mfa", - "weight": 165, "cookies": false, "type": "", "demo": "account\/update-mfa.md", @@ -638,7 +629,6 @@ "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", - "weight": 167, "cookies": false, "type": "", "demo": "account\/create-mfa-authenticator.md", @@ -732,8 +722,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -762,7 +751,6 @@ "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", - "weight": 168, "cookies": false, "type": "", "demo": "account\/update-mfa-authenticator.md", @@ -860,8 +848,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -902,7 +889,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 169, "cookies": false, "type": "", "demo": "account\/delete-mfa-authenticator.md", @@ -994,8 +980,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -1026,7 +1011,6 @@ "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", - "weight": 173, "cookies": false, "type": "", "demo": "account\/create-mfa-challenge.md", @@ -1125,8 +1109,7 @@ "totp", "recoverycode" ], - "x-enum-name": "AuthenticationFactor", - "x-enum-keys": [] + "x-enum-name": "AuthenticationFactor" } }, "required": [ @@ -1160,7 +1143,6 @@ "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", - "weight": 174, "cookies": false, "type": "", "demo": "account\/update-mfa-challenge.md", @@ -1298,7 +1280,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 166, "cookies": false, "type": "", "demo": "account\/list-mfa-factors.md", @@ -1399,7 +1380,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 172, "cookies": false, "type": "", "demo": "account\/get-mfa-recovery-codes.md", @@ -1498,7 +1478,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 170, "cookies": false, "type": "", "demo": "account\/create-mfa-recovery-codes.md", @@ -1597,7 +1576,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 171, "cookies": false, "type": "", "demo": "account\/update-mfa-recovery-codes.md", @@ -1698,7 +1676,6 @@ "x-appwrite": { "method": "updateName", "group": "account", - "weight": 32, "cookies": false, "type": "", "demo": "account\/update-name.md", @@ -1770,7 +1747,6 @@ "x-appwrite": { "method": "updatePassword", "group": "account", - "weight": 33, "cookies": false, "type": "", "demo": "account\/update-password.md", @@ -1811,6 +1787,7 @@ "oldPassword": { "type": "string", "description": "Current user password. Must be at least 8 chars.", + "default": "", "x-example": "password", "format": "password" } @@ -1848,7 +1825,6 @@ "x-appwrite": { "method": "updatePhone", "group": "account", - "weight": 35, "cookies": false, "type": "", "demo": "account\/update-phone.md", @@ -1928,7 +1904,6 @@ "x-appwrite": { "method": "getPrefs", "group": "account", - "weight": 30, "cookies": false, "type": "", "demo": "account\/get-prefs.md", @@ -1979,7 +1954,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "account", - "weight": 36, "cookies": false, "type": "", "demo": "account\/update-prefs.md", @@ -2051,7 +2025,6 @@ "x-appwrite": { "method": "createRecovery", "group": "recovery", - "weight": 38, "cookies": false, "type": "", "demo": "account\/create-recovery.md", @@ -2132,7 +2105,6 @@ "x-appwrite": { "method": "updateRecovery", "group": "recovery", - "weight": 39, "cookies": false, "type": "", "demo": "account\/update-recovery.md", @@ -2216,7 +2188,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 11, "cookies": false, "type": "", "demo": "account\/list-sessions.md", @@ -2260,7 +2231,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 12, "cookies": false, "type": "", "demo": "account\/delete-sessions.md", @@ -2313,7 +2283,6 @@ "x-appwrite": { "method": "createAnonymousSession", "group": "sessions", - "weight": 17, "cookies": false, "type": "", "demo": "account\/create-anonymous-session.md", @@ -2366,7 +2335,6 @@ "x-appwrite": { "method": "createEmailPasswordSession", "group": "sessions", - "weight": 16, "cookies": false, "type": "", "demo": "account\/create-email-password-session.md", @@ -2446,7 +2414,6 @@ "x-appwrite": { "method": "updateMagicURLSession", "group": "sessions", - "weight": 26, "cookies": false, "type": "", "demo": "account\/update-magic-url-session.md", @@ -2521,7 +2488,6 @@ "x-appwrite": { "method": "createOAuth2Session", "group": "sessions", - "weight": 19, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-session.md", @@ -2601,8 +2567,7 @@ "zoho", "zoom" ], - "x-enum-name": "OAuthProvider", - "x-enum-keys": [] + "x-enum-name": "OAuthProvider" }, "in": "path" }, @@ -2670,7 +2635,6 @@ "x-appwrite": { "method": "updatePhoneSession", "group": "sessions", - "weight": 27, "cookies": false, "type": "", "demo": "account\/update-phone-session.md", @@ -2752,7 +2716,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 18, "cookies": false, "type": "", "demo": "account\/create-session.md", @@ -2830,7 +2793,6 @@ "x-appwrite": { "method": "getSession", "group": "sessions", - "weight": 13, "cookies": false, "type": "", "demo": "account\/get-session.md", @@ -2893,7 +2855,6 @@ "x-appwrite": { "method": "updateSession", "group": "sessions", - "weight": 15, "cookies": false, "type": "", "demo": "account\/update-session.md", @@ -2949,7 +2910,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 14, "cookies": false, "type": "", "demo": "account\/delete-session.md", @@ -3014,7 +2974,6 @@ "x-appwrite": { "method": "updateStatus", "group": "account", - "weight": 37, "cookies": false, "type": "", "demo": "account\/update-status.md", @@ -3067,7 +3026,6 @@ "x-appwrite": { "method": "createPushTarget", "group": "pushTargets", - "weight": 44, "cookies": false, "type": "", "demo": "account\/create-push-target.md", @@ -3077,8 +3035,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -3090,8 +3047,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "requestBody": { @@ -3113,6 +3069,7 @@ "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", + "default": "", "x-example": "" } }, @@ -3150,7 +3107,6 @@ "x-appwrite": { "method": "updatePushTarget", "group": "pushTargets", - "weight": 45, "cookies": false, "type": "", "demo": "account\/update-push-target.md", @@ -3160,8 +3116,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -3173,8 +3128,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -3225,7 +3179,6 @@ "x-appwrite": { "method": "deletePushTarget", "group": "pushTargets", - "weight": 46, "cookies": false, "type": "", "demo": "account\/delete-push-target.md", @@ -3235,8 +3188,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -3248,8 +3200,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -3290,7 +3241,6 @@ "x-appwrite": { "method": "createEmailToken", "group": "tokens", - "weight": 25, "cookies": false, "type": "", "demo": "account\/create-email-token.md", @@ -3340,6 +3290,7 @@ "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", + "default": false, "x-example": false } }, @@ -3377,7 +3328,6 @@ "x-appwrite": { "method": "createMagicURLToken", "group": "tokens", - "weight": 24, "cookies": false, "type": "", "demo": "account\/create-magic-url-token.md", @@ -3427,12 +3377,14 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the magic URL login. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", + "default": "", "x-example": "https:\/\/example.com", "format": "url" }, "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", + "default": false, "x-example": false } }, @@ -3463,7 +3415,6 @@ "x-appwrite": { "method": "createOAuth2Token", "group": "tokens", - "weight": 23, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-token.md", @@ -3543,8 +3494,7 @@ "zoho", "zoom" ], - "x-enum-name": "OAuthProvider", - "x-enum-keys": [] + "x-enum-name": "OAuthProvider" }, "in": "path" }, @@ -3612,7 +3562,6 @@ "x-appwrite": { "method": "createPhoneToken", "group": "tokens", - "weight": 28, "cookies": false, "type": "", "demo": "account\/create-phone-token.md", @@ -3694,7 +3643,6 @@ "x-appwrite": { "method": "createEmailVerification", "group": "verification", - "weight": 40, "cookies": false, "type": "", "demo": "account\/create-email-verification.md", @@ -3817,7 +3765,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "verification", - "weight": 41, "cookies": false, "type": "", "demo": "account\/update-email-verification.md", @@ -3951,7 +3898,6 @@ "x-appwrite": { "method": "createPhoneVerification", "group": "verification", - "weight": 42, "cookies": false, "type": "", "demo": "account\/create-phone-verification.md", @@ -4005,7 +3951,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "verification", - "weight": 43, "cookies": false, "type": "", "demo": "account\/update-phone-verification.md", @@ -4076,7 +4021,6 @@ "x-appwrite": { "method": "getBrowser", "group": null, - "weight": 176, "cookies": false, "type": "location", "demo": "avatars\/get-browser.md", @@ -4204,7 +4148,6 @@ "x-appwrite": { "method": "getCreditCard", "group": null, - "weight": 175, "cookies": false, "type": "location", "demo": "avatars\/get-credit-card.md", @@ -4338,7 +4281,6 @@ "x-appwrite": { "method": "getFavicon", "group": null, - "weight": 179, "cookies": false, "type": "location", "demo": "avatars\/get-favicon.md", @@ -4398,7 +4340,6 @@ "x-appwrite": { "method": "getFlag", "group": null, - "weight": 177, "cookies": false, "type": "location", "demo": "avatars\/get-flag.md", @@ -4888,7 +4829,6 @@ "x-appwrite": { "method": "getImage", "group": null, - "weight": 178, "cookies": false, "type": "location", "demo": "avatars\/get-image.md", @@ -4972,7 +4912,6 @@ "x-appwrite": { "method": "getInitials", "group": null, - "weight": 181, "cookies": false, "type": "location", "demo": "avatars\/get-initials.md", @@ -5066,7 +5005,6 @@ "x-appwrite": { "method": "getQR", "group": null, - "weight": 180, "cookies": false, "type": "location", "demo": "avatars\/get-qr.md", @@ -5160,7 +5098,6 @@ "x-appwrite": { "method": "getScreenshot", "group": null, - "weight": 182, "cookies": false, "type": "location", "demo": "avatars\/get-screenshot.md", @@ -5258,8 +5195,7 @@ "light", "dark" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "BrowserTheme", "default": "light" }, "in": "query" @@ -5725,8 +5661,7 @@ "pacific\/wallis", "utc" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Timezone" }, "in": "query" }, @@ -5807,8 +5742,7 @@ "web-share", "xr-spatial-tracking" ], - "x-enum-name": "BrowserPermission", - "x-enum-keys": [] + "x-enum-name": "BrowserPermission" }, "x-example": "[\"geolocation\",\"notifications\"]", "default": [] @@ -5879,8 +5813,7 @@ "avif", "gif" ], - "x-enum-name": "ImageFormat", - "x-enum-keys": [] + "x-enum-name": "ImageFormat" }, "in": "query" } @@ -5911,7 +5844,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 774, "cookies": false, "type": "", "demo": "databases\/list-transactions.md", @@ -5978,7 +5910,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 770, "cookies": false, "type": "", "demo": "databases\/create-transaction.md", @@ -6015,6 +5946,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -6049,7 +5981,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 771, "cookies": false, "type": "", "demo": "databases\/get-transaction.md", @@ -6113,7 +6044,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 772, "cookies": false, "type": "", "demo": "databases\/update-transaction.md", @@ -6162,11 +6092,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -6191,7 +6123,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 773, "cookies": false, "type": "", "demo": "databases\/delete-transaction.md", @@ -6257,7 +6188,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 775, "cookies": false, "type": "", "demo": "databases\/create-operations.md", @@ -6306,6 +6236,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"\",\n\t \"collectionId\": \"\",\n\t \"documentId\": \"\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -6342,7 +6273,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 918, "cookies": false, "type": "", "demo": "databases\/list-documents.md", @@ -6466,7 +6396,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 715, "cookies": false, "type": "", "demo": "databases\/create-document.md", @@ -6566,11 +6495,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -6585,6 +6516,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -6627,7 +6559,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 716, "cookies": false, "type": "", "demo": "databases\/get-document.md", @@ -6738,7 +6669,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 719, "cookies": false, "type": "", "demo": "databases\/upsert-document.md", @@ -6847,6 +6777,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required attributes of the document to be created or updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -6893,7 +6824,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 717, "cookies": false, "type": "", "demo": "databases\/update-document.md", @@ -6966,6 +6896,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -7005,7 +6936,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 721, "cookies": false, "type": "", "demo": "databases\/delete-document.md", @@ -7112,7 +7042,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 726, "cookies": false, "type": "", "demo": "databases\/decrement-document-attribute.md", @@ -7194,6 +7123,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -7241,7 +7171,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 725, "cookies": false, "type": "", "demo": "databases\/increment-document-attribute.md", @@ -7323,6 +7252,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -7370,7 +7300,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 883, "cookies": false, "type": "", "demo": "documentsdb\/list-transactions.md", @@ -7437,7 +7366,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 879, "cookies": false, "type": "", "demo": "documentsdb\/create-transaction.md", @@ -7474,6 +7402,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -7508,7 +7437,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 880, "cookies": false, "type": "", "demo": "documentsdb\/get-transaction.md", @@ -7572,7 +7500,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 881, "cookies": false, "type": "", "demo": "documentsdb\/update-transaction.md", @@ -7621,11 +7548,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -7650,7 +7579,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 882, "cookies": false, "type": "", "demo": "documentsdb\/delete-transaction.md", @@ -7716,7 +7644,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 884, "cookies": false, "type": "", "demo": "documentsdb\/create-operations.md", @@ -7764,6 +7691,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"\",\n\t \"collectionId\": \"\",\n\t \"documentId\": \"\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -7800,7 +7728,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 921, "cookies": false, "type": "", "demo": "documentsdb\/list-documents.md", @@ -7920,7 +7847,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 868, "cookies": false, "type": "", "demo": "documentsdb\/create-document.md", @@ -8038,11 +7964,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -8056,6 +7984,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -8097,7 +8026,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 869, "cookies": false, "type": "", "demo": "documentsdb\/get-document.md", @@ -8204,7 +8132,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 872, "cookies": false, "type": "", "demo": "documentsdb\/upsert-document.md", @@ -8305,6 +8232,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -8349,7 +8277,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 870, "cookies": false, "type": "", "demo": "documentsdb\/update-document.md", @@ -8418,6 +8345,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -8455,7 +8383,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 874, "cookies": false, "type": "", "demo": "documentsdb\/delete-document.md", @@ -8557,7 +8484,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 878, "cookies": false, "type": "", "demo": "documentsdb\/decrement-document-attribute.md", @@ -8635,6 +8561,7 @@ "value": { "type": "number", "description": "Value to decrement the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -8680,7 +8607,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 877, "cookies": false, "type": "", "demo": "documentsdb\/increment-document-attribute.md", @@ -8758,6 +8684,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -8803,7 +8730,6 @@ "x-appwrite": { "method": "listExecutions", "group": "executions", - "weight": 441, "cookies": false, "type": "", "demo": "functions\/list-executions.md", @@ -8893,7 +8819,6 @@ "x-appwrite": { "method": "createExecution", "group": "executions", - "weight": 439, "cookies": false, "type": "", "demo": "functions\/create-execution.md", @@ -8944,21 +8869,25 @@ "body": { "type": "string", "description": "HTTP body of execution. Default value is empty string.", + "default": "", "x-example": "" }, "async": { "type": "boolean", "description": "Execute code in the background. Default value is false.", + "default": false, "x-example": false }, "path": { "type": "string", "description": "HTTP path of execution. Path can include query params. Default value is \/", + "default": "\/", "x-example": "" }, "method": { "type": "string", "description": "HTTP method of execution. Default value is POST.", + "default": "POST", "x-example": "GET", "enum": [ "GET", @@ -8969,12 +8898,12 @@ "OPTIONS", "HEAD" ], - "x-enum-name": "ExecutionMethod", - "x-enum-keys": [] + "x-enum-name": "ExecutionMethod" }, "headers": { "type": "object", "description": "HTTP headers of execution. Defaults to empty.", + "default": {}, "x-example": "{}" }, "scheduledAt": { @@ -9014,7 +8943,6 @@ "x-appwrite": { "method": "getExecution", "group": "executions", - "weight": 440, "cookies": false, "type": "", "demo": "functions\/get-execution.md", @@ -9092,7 +9020,6 @@ "x-appwrite": { "method": "query", "group": "graphql", - "weight": 116, "cookies": false, "type": "graphql", "demo": "graphql\/query.md", @@ -9146,7 +9073,6 @@ "x-appwrite": { "method": "mutation", "group": "graphql", - "weight": 115, "cookies": false, "type": "graphql", "demo": "graphql\/mutation.md", @@ -9200,7 +9126,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 49, "cookies": false, "type": "", "demo": "locale\/get.md", @@ -9254,7 +9179,6 @@ "x-appwrite": { "method": "listCodes", "group": null, - "weight": 50, "cookies": false, "type": "", "demo": "locale\/list-codes.md", @@ -9308,7 +9232,6 @@ "x-appwrite": { "method": "listContinents", "group": null, - "weight": 54, "cookies": false, "type": "", "demo": "locale\/list-continents.md", @@ -9362,7 +9285,6 @@ "x-appwrite": { "method": "listCountries", "group": null, - "weight": 51, "cookies": false, "type": "", "demo": "locale\/list-countries.md", @@ -9416,7 +9338,6 @@ "x-appwrite": { "method": "listCountriesEU", "group": null, - "weight": 52, "cookies": false, "type": "", "demo": "locale\/list-countries-eu.md", @@ -9470,7 +9391,6 @@ "x-appwrite": { "method": "listCountriesPhones", "group": null, - "weight": 53, "cookies": false, "type": "", "demo": "locale\/list-countries-phones.md", @@ -9524,7 +9444,6 @@ "x-appwrite": { "method": "listCurrencies", "group": null, - "weight": 55, "cookies": false, "type": "", "demo": "locale\/list-currencies.md", @@ -9578,7 +9497,6 @@ "x-appwrite": { "method": "listLanguages", "group": null, - "weight": 56, "cookies": false, "type": "", "demo": "locale\/list-languages.md", @@ -9632,7 +9550,6 @@ "x-appwrite": { "method": "createSubscriber", "group": "subscribers", - "weight": 149, "cookies": false, "type": "", "demo": "messaging\/create-subscriber.md", @@ -9716,7 +9633,6 @@ "x-appwrite": { "method": "deleteSubscriber", "group": "subscribers", - "weight": 153, "cookies": false, "type": "", "demo": "messaging\/delete-subscriber.md", @@ -9792,7 +9708,6 @@ "x-appwrite": { "method": "list", "group": "presences", - "weight": 419, "cookies": false, "type": "", "demo": "presences\/list.md", @@ -9884,7 +9799,6 @@ "x-appwrite": { "method": "get", "group": "presences", - "weight": 418, "cookies": false, "type": "", "demo": "presences\/get.md", @@ -9948,7 +9862,6 @@ "x-appwrite": { "method": "upsert", "group": "presences", - "weight": 416, "cookies": false, "type": "", "demo": "presences\/upsert.md", @@ -10047,6 +9960,7 @@ "metadata": { "type": "object", "description": "Presence metadata object.", + "default": {}, "x-example": "{}" } }, @@ -10081,7 +9995,6 @@ "x-appwrite": { "method": "update", "group": "presences", - "weight": 420, "cookies": false, "type": "", "demo": "presences\/update.md", @@ -10185,6 +10098,7 @@ "purge": { "type": "boolean", "description": "When true, purge cached responses used by list presences endpoint.", + "default": false, "x-example": false } } @@ -10209,7 +10123,6 @@ "x-appwrite": { "method": "delete", "group": "presences", - "weight": 421, "cookies": false, "type": "", "demo": "presences\/delete.md", @@ -10275,7 +10188,6 @@ "x-appwrite": { "method": "listFiles", "group": "files", - "weight": 555, "cookies": false, "type": "", "demo": "storage\/list-files.md", @@ -10374,7 +10286,6 @@ "x-appwrite": { "method": "createFile", "group": "files", - "weight": 1260, "cookies": false, "type": "upload", "demo": "storage\/create-file.md", @@ -10476,7 +10387,6 @@ "x-appwrite": { "method": "getFile", "group": "files", - "weight": 554, "cookies": false, "type": "", "demo": "storage\/get-file.md", @@ -10550,7 +10460,6 @@ "x-appwrite": { "method": "updateFile", "group": "files", - "weight": 556, "cookies": false, "type": "", "demo": "storage\/update-file.md", @@ -10642,7 +10551,6 @@ "x-appwrite": { "method": "deleteFile", "group": "files", - "weight": 557, "cookies": false, "type": "", "demo": "storage\/delete-file.md", @@ -10711,7 +10619,6 @@ "x-appwrite": { "method": "getFileDownload", "group": "files", - "weight": 559, "cookies": false, "type": "location", "demo": "storage\/get-file-download.md", @@ -10791,7 +10698,6 @@ "x-appwrite": { "method": "getFilePreview", "group": "files", - "weight": 558, "cookies": false, "type": "location", "demo": "storage\/get-file-preview.md", @@ -10883,7 +10789,6 @@ "bottom-right" ], "x-enum-name": "ImageGravity", - "x-enum-keys": [], "default": "center" }, "in": "query" @@ -10984,8 +10889,7 @@ "avif", "gif" ], - "x-enum-name": "ImageFormat", - "x-enum-keys": [] + "x-enum-name": "ImageFormat" }, "in": "query" }, @@ -11020,7 +10924,6 @@ "x-appwrite": { "method": "getFileView", "group": "files", - "weight": 560, "cookies": false, "type": "location", "demo": "storage\/get-file-view.md", @@ -11107,7 +11010,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 849, "cookies": false, "type": "", "demo": "tablesdb\/list-transactions.md", @@ -11177,7 +11079,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 845, "cookies": false, "type": "", "demo": "tablesdb\/create-transaction.md", @@ -11217,6 +11118,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -11251,7 +11153,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 846, "cookies": false, "type": "", "demo": "tablesdb\/get-transaction.md", @@ -11318,7 +11219,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 847, "cookies": false, "type": "", "demo": "tablesdb\/update-transaction.md", @@ -11370,11 +11270,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -11399,7 +11301,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 848, "cookies": false, "type": "", "demo": "tablesdb\/delete-transaction.md", @@ -11468,7 +11369,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 850, "cookies": false, "type": "", "demo": "tablesdb\/create-operations.md", @@ -11520,6 +11420,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"\",\n\t \"tableId\": \"\",\n\t \"rowId\": \"\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -11556,7 +11457,6 @@ "x-appwrite": { "method": "listRows", "group": "rows", - "weight": 919, "cookies": false, "type": "", "demo": "tablesdb\/list-rows.md", @@ -11679,7 +11579,6 @@ "x-appwrite": { "method": "createRow", "group": "rows", - "weight": 833, "cookies": false, "type": "", "demo": "tablesdb\/create-row.md", @@ -11774,11 +11673,13 @@ "rowId": { "type": "string", "description": "Row ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "" }, "data": { "type": "object", "description": "Row data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -11793,6 +11694,7 @@ "rows": { "type": "array", "description": "Array of rows data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -11835,7 +11737,6 @@ "x-appwrite": { "method": "getRow", "group": "rows", - "weight": 834, "cookies": false, "type": "", "demo": "tablesdb\/get-row.md", @@ -11945,7 +11846,6 @@ "x-appwrite": { "method": "upsertRow", "group": "rows", - "weight": 837, "cookies": false, "type": "", "demo": "tablesdb\/upsert-row.md", @@ -12049,6 +11949,7 @@ "data": { "type": "object", "description": "Row data as JSON object. Include all required columns of the row to be created or updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -12095,7 +11996,6 @@ "x-appwrite": { "method": "updateRow", "group": "rows", - "weight": 835, "cookies": false, "type": "", "demo": "tablesdb\/update-row.md", @@ -12167,6 +12067,7 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only columns and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -12206,7 +12107,6 @@ "x-appwrite": { "method": "deleteRow", "group": "rows", - "weight": 839, "cookies": false, "type": "", "demo": "tablesdb\/delete-row.md", @@ -12312,7 +12212,6 @@ "x-appwrite": { "method": "decrementRowColumn", "group": "rows", - "weight": 844, "cookies": false, "type": "", "demo": "tablesdb\/decrement-row-column.md", @@ -12393,6 +12292,7 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -12440,7 +12340,6 @@ "x-appwrite": { "method": "incrementRowColumn", "group": "rows", - "weight": 843, "cookies": false, "type": "", "demo": "tablesdb\/increment-row-column.md", @@ -12521,6 +12420,7 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -12568,7 +12468,6 @@ "x-appwrite": { "method": "list", "group": "teams", - "weight": 531, "cookies": false, "type": "", "demo": "teams\/list.md", @@ -12657,7 +12556,6 @@ "x-appwrite": { "method": "create", "group": "teams", - "weight": 529, "cookies": false, "type": "", "demo": "teams\/create.md", @@ -12704,6 +12602,9 @@ "roles": { "type": "array", "description": "Array of strings. Use this param to set the roles in the team for the user who created it. The default role is **owner**. A role can be any string. Learn more about [roles and permissions](https:\/\/appwrite.io\/docs\/permissions). Maximum of 100 roles are allowed, each 32 characters long.", + "default": [ + "owner" + ], "x-example": null, "items": { "type": "string" @@ -12744,7 +12645,6 @@ "x-appwrite": { "method": "get", "group": "teams", - "weight": 530, "cookies": false, "type": "", "demo": "teams\/get.md", @@ -12808,7 +12708,6 @@ "x-appwrite": { "method": "updateName", "group": "teams", - "weight": 533, "cookies": false, "type": "", "demo": "teams\/update-name.md", @@ -12884,7 +12783,6 @@ "x-appwrite": { "method": "delete", "group": "teams", - "weight": 532, "cookies": false, "type": "", "demo": "teams\/delete.md", @@ -12950,7 +12848,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 538, "cookies": false, "type": "", "demo": "teams\/list-memberships.md", @@ -13049,7 +12946,6 @@ "x-appwrite": { "method": "createMembership", "group": "memberships", - "weight": 536, "cookies": false, "type": "", "demo": "teams\/create-membership.md", @@ -13098,17 +12994,20 @@ "email": { "type": "string", "description": "Email of the new team member.", + "default": "", "x-example": "email@example.com", "format": "email" }, "userId": { "type": "string", "description": "ID of the user to be added to a team.", + "default": "", "x-example": "" }, "phone": { "type": "string", "description": "Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, @@ -13123,12 +13022,14 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the invitation email. This parameter is not required when an API key is supplied. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", + "default": "", "x-example": "https:\/\/example.com", "format": "url" }, "name": { "type": "string", "description": "Name of the new team member. Max length: 128 chars.", + "default": "", "x-example": "" } }, @@ -13165,7 +13066,6 @@ "x-appwrite": { "method": "getMembership", "group": "memberships", - "weight": 537, "cookies": false, "type": "", "demo": "teams\/get-membership.md", @@ -13239,7 +13139,6 @@ "x-appwrite": { "method": "updateMembership", "group": "memberships", - "weight": 539, "cookies": false, "type": "", "demo": "teams\/update-membership.md", @@ -13328,7 +13227,6 @@ "x-appwrite": { "method": "deleteMembership", "group": "memberships", - "weight": 1261, "cookies": false, "type": "", "demo": "teams\/delete-membership.md", @@ -13404,7 +13302,6 @@ "x-appwrite": { "method": "updateMembershipStatus", "group": "memberships", - "weight": 541, "cookies": false, "type": "", "demo": "teams\/update-membership-status.md", @@ -13504,7 +13401,6 @@ "x-appwrite": { "method": "getPrefs", "group": "teams", - "weight": 534, "cookies": false, "type": "", "demo": "teams\/get-prefs.md", @@ -13567,7 +13463,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "teams", - "weight": 535, "cookies": false, "type": "", "demo": "teams\/update-prefs.md", @@ -13651,7 +13546,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 916, "cookies": false, "type": "", "demo": "vectorsdb\/list-transactions.md", @@ -13718,7 +13612,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 912, "cookies": false, "type": "", "demo": "vectorsdb\/create-transaction.md", @@ -13755,6 +13648,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -13789,7 +13683,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 913, "cookies": false, "type": "", "demo": "vectorsdb\/get-transaction.md", @@ -13853,7 +13746,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 914, "cookies": false, "type": "", "demo": "vectorsdb\/update-transaction.md", @@ -13902,11 +13794,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -13931,7 +13825,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 915, "cookies": false, "type": "", "demo": "vectorsdb\/delete-transaction.md", @@ -13997,7 +13890,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 917, "cookies": false, "type": "", "demo": "vectorsdb\/create-operations.md", @@ -14046,6 +13938,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"\",\n\t \"collectionId\": \"\",\n\t \"documentId\": \"\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -14082,7 +13975,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 906, "cookies": false, "type": "", "demo": "vectorsdb\/list-documents.md", @@ -14202,7 +14094,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 902, "cookies": false, "type": "", "demo": "vectorsdb\/create-document.md", @@ -14293,11 +14184,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }" }, "permissions": { @@ -14311,6 +14204,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -14352,7 +14246,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 905, "cookies": false, "type": "", "demo": "vectorsdb\/get-document.md", @@ -14459,7 +14352,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 904, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-document.md", @@ -14560,6 +14452,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -14604,7 +14497,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 903, "cookies": false, "type": "", "demo": "vectorsdb\/update-document.md", @@ -14673,6 +14565,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -14710,7 +14603,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 907, "cookies": false, "type": "", "demo": "vectorsdb\/delete-document.md", diff --git a/specs/1.9.x/open-api3-1.9.x-console.json b/specs/1.9.x/open-api3-1.9.x-console.json index 638ed2692..b2945d889 100644 --- a/specs/1.9.x/open-api3-1.9.x-console.json +++ b/specs/1.9.x/open-api3-1.9.x-console.json @@ -31,9 +31,6 @@ } } ], - "x-appwrite": { - "endpointDocs": "https:\/\/.cloud.appwrite.io\/v1" - }, "paths": { "\/account": { "get": { @@ -59,7 +56,6 @@ "x-appwrite": { "method": "get", "group": "account", - "weight": 9, "cookies": false, "type": "", "demo": "account\/get.md", @@ -110,7 +106,6 @@ "x-appwrite": { "method": "create", "group": "account", - "weight": 8, "cookies": false, "type": "", "demo": "account\/create.md", @@ -162,6 +157,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "" } }, @@ -191,7 +187,6 @@ "x-appwrite": { "method": "delete", "group": "account", - "weight": 10, "cookies": false, "type": "", "demo": "account\/delete.md", @@ -240,7 +235,6 @@ "x-appwrite": { "method": "listBillingAddresses", "group": null, - "weight": 1148, "cookies": false, "type": "", "demo": "account\/list-billing-addresses.md", @@ -302,7 +296,6 @@ "x-appwrite": { "method": "createBillingAddress", "group": null, - "weight": 1146, "cookies": false, "type": "", "demo": "account\/create-billing-address.md", @@ -349,16 +342,19 @@ "addressLine2": { "type": "string", "description": "Address line 2", + "default": "", "x-example": "" }, "state": { "type": "string", "description": "State or province", + "default": "", "x-example": "" }, "postalCode": { "type": "string", "description": "Postal code", + "default": "", "x-example": "" } }, @@ -397,7 +393,6 @@ "x-appwrite": { "method": "getBillingAddress", "group": null, - "weight": 1147, "cookies": false, "type": "", "demo": "account\/get-billing-address.md", @@ -456,7 +451,6 @@ "x-appwrite": { "method": "updateBillingAddress", "group": null, - "weight": 1149, "cookies": false, "type": "", "demo": "account\/update-billing-address.md", @@ -515,16 +509,19 @@ "addressLine2": { "type": "string", "description": "Address line 2", + "default": "", "x-example": "" }, "state": { "type": "string", "description": "State or province", + "default": "", "x-example": "" }, "postalCode": { "type": "string", "description": "Postal code", + "default": "", "x-example": "" } }, @@ -554,7 +551,6 @@ "x-appwrite": { "method": "deleteBillingAddress", "group": null, - "weight": 1150, "cookies": false, "type": "", "demo": "account\/delete-billing-address.md", @@ -615,7 +611,6 @@ "x-appwrite": { "method": "getCoupon", "group": null, - "weight": 1152, "cookies": false, "type": "", "demo": "account\/get-coupon.md", @@ -676,7 +671,6 @@ "x-appwrite": { "method": "updateEmail", "group": "account", - "weight": 34, "cookies": false, "type": "", "demo": "account\/update-email.md", @@ -756,7 +750,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 47, "cookies": false, "type": "", "demo": "account\/list-identities.md", @@ -828,7 +821,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 48, "cookies": false, "type": "", "demo": "account\/delete-identity.md", @@ -893,7 +885,6 @@ "x-appwrite": { "method": "listInvoices", "group": null, - "weight": 1151, "cookies": false, "type": "", "demo": "account\/list-invoices.md", @@ -957,7 +948,6 @@ "x-appwrite": { "method": "createJWT", "group": "tokens", - "weight": 29, "cookies": false, "type": "", "demo": "account\/create-jwt.md", @@ -993,6 +983,7 @@ "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", + "default": 900, "x-example": 0, "format": "int32" } @@ -1027,7 +1018,6 @@ "x-appwrite": { "method": "listKeys", "group": "keys", - "weight": 1134, "cookies": false, "type": "", "demo": "account\/list-keys.md", @@ -1086,7 +1076,6 @@ "x-appwrite": { "method": "createKey", "group": "keys", - "weight": 1135, "cookies": false, "type": "", "demo": "account\/create-key.md", @@ -1130,8 +1119,7 @@ "teams.read", "teams.write" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "AccountKeyScopes" } }, "expire": { @@ -1176,7 +1164,6 @@ "x-appwrite": { "method": "getKey", "group": "keys", - "weight": 1138, "cookies": false, "type": "", "demo": "account\/get-key.md", @@ -1234,7 +1221,6 @@ "x-appwrite": { "method": "updateKey", "group": "keys", - "weight": 1137, "cookies": false, "type": "", "demo": "account\/update-key.md", @@ -1290,8 +1276,7 @@ "teams.read", "teams.write" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "AccountKeyScopes" } }, "expire": { @@ -1327,7 +1312,6 @@ "x-appwrite": { "method": "deleteKey", "group": "keys", - "weight": 1136, "cookies": false, "type": "", "demo": "account\/delete-key.md", @@ -1387,7 +1371,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 31, "cookies": false, "type": "", "demo": "account\/list-logs.md", @@ -1466,7 +1449,6 @@ "x-appwrite": { "method": "updateMFA", "group": "mfa", - "weight": 165, "cookies": false, "type": "", "demo": "account\/update-mfa.md", @@ -1538,7 +1520,6 @@ "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", - "weight": 167, "cookies": false, "type": "", "demo": "account\/create-mfa-authenticator.md", @@ -1632,8 +1613,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -1662,7 +1642,6 @@ "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", - "weight": 168, "cookies": false, "type": "", "demo": "account\/update-mfa-authenticator.md", @@ -1760,8 +1739,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -1802,7 +1780,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 169, "cookies": false, "type": "", "demo": "account\/delete-mfa-authenticator.md", @@ -1894,8 +1871,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -1926,7 +1902,6 @@ "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", - "weight": 173, "cookies": false, "type": "", "demo": "account\/create-mfa-challenge.md", @@ -2025,8 +2000,7 @@ "totp", "recoverycode" ], - "x-enum-name": "AuthenticationFactor", - "x-enum-keys": [] + "x-enum-name": "AuthenticationFactor" } }, "required": [ @@ -2060,7 +2034,6 @@ "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", - "weight": 174, "cookies": false, "type": "", "demo": "account\/update-mfa-challenge.md", @@ -2198,7 +2171,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 166, "cookies": false, "type": "", "demo": "account\/list-mfa-factors.md", @@ -2299,7 +2271,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 172, "cookies": false, "type": "", "demo": "account\/get-mfa-recovery-codes.md", @@ -2398,7 +2369,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 170, "cookies": false, "type": "", "demo": "account\/create-mfa-recovery-codes.md", @@ -2497,7 +2467,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 171, "cookies": false, "type": "", "demo": "account\/update-mfa-recovery-codes.md", @@ -2598,7 +2567,6 @@ "x-appwrite": { "method": "updateName", "group": "account", - "weight": 32, "cookies": false, "type": "", "demo": "account\/update-name.md", @@ -2670,7 +2638,6 @@ "x-appwrite": { "method": "updatePassword", "group": "account", - "weight": 33, "cookies": false, "type": "", "demo": "account\/update-password.md", @@ -2711,6 +2678,7 @@ "oldPassword": { "type": "string", "description": "Current user password. Must be at least 8 chars.", + "default": "", "x-example": "password", "format": "password" } @@ -2748,7 +2716,6 @@ "x-appwrite": { "method": "listPaymentMethods", "group": null, - "weight": 1141, "cookies": false, "type": "", "demo": "account\/list-payment-methods.md", @@ -2810,7 +2777,6 @@ "x-appwrite": { "method": "createPaymentMethod", "group": null, - "weight": 1139, "cookies": false, "type": "", "demo": "account\/create-payment-method.md", @@ -2859,7 +2825,6 @@ "x-appwrite": { "method": "getPaymentMethod", "group": null, - "weight": 1140, "cookies": false, "type": "", "demo": "account\/get-payment-method.md", @@ -2918,7 +2883,6 @@ "x-appwrite": { "method": "updatePaymentMethod", "group": null, - "weight": 1142, "cookies": false, "type": "", "demo": "account\/update-payment-method.md", @@ -3002,7 +2966,6 @@ "x-appwrite": { "method": "deletePaymentMethod", "group": null, - "weight": 1145, "cookies": false, "type": "", "demo": "account\/delete-payment-method.md", @@ -3063,7 +3026,6 @@ "x-appwrite": { "method": "updatePaymentMethodProvider", "group": null, - "weight": 1143, "cookies": false, "type": "", "demo": "account\/update-payment-method-provider.md", @@ -3155,7 +3117,6 @@ "x-appwrite": { "method": "updatePaymentMethodMandateOptions", "group": null, - "weight": 1144, "cookies": false, "type": "", "demo": "account\/update-payment-method-mandate-options.md", @@ -3216,7 +3177,6 @@ "x-appwrite": { "method": "updatePhone", "group": "account", - "weight": 35, "cookies": false, "type": "", "demo": "account\/update-phone.md", @@ -3296,7 +3256,6 @@ "x-appwrite": { "method": "getPrefs", "group": "account", - "weight": 30, "cookies": false, "type": "", "demo": "account\/get-prefs.md", @@ -3347,7 +3306,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "account", - "weight": 36, "cookies": false, "type": "", "demo": "account\/update-prefs.md", @@ -3419,7 +3377,6 @@ "x-appwrite": { "method": "createRecovery", "group": "recovery", - "weight": 38, "cookies": false, "type": "", "demo": "account\/create-recovery.md", @@ -3500,7 +3457,6 @@ "x-appwrite": { "method": "updateRecovery", "group": "recovery", - "weight": 39, "cookies": false, "type": "", "demo": "account\/update-recovery.md", @@ -3584,7 +3540,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 11, "cookies": false, "type": "", "demo": "account\/list-sessions.md", @@ -3628,7 +3583,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 12, "cookies": false, "type": "", "demo": "account\/delete-sessions.md", @@ -3681,7 +3635,6 @@ "x-appwrite": { "method": "createAnonymousSession", "group": "sessions", - "weight": 17, "cookies": false, "type": "", "demo": "account\/create-anonymous-session.md", @@ -3734,7 +3687,6 @@ "x-appwrite": { "method": "createEmailPasswordSession", "group": "sessions", - "weight": 16, "cookies": false, "type": "", "demo": "account\/create-email-password-session.md", @@ -3814,7 +3766,6 @@ "x-appwrite": { "method": "updateMagicURLSession", "group": "sessions", - "weight": 26, "cookies": false, "type": "", "demo": "account\/update-magic-url-session.md", @@ -3889,7 +3840,6 @@ "x-appwrite": { "method": "createOAuth2Session", "group": "sessions", - "weight": 19, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-session.md", @@ -3969,8 +3919,7 @@ "zoho", "zoom" ], - "x-enum-name": "OAuthProvider", - "x-enum-keys": [] + "x-enum-name": "OAuthProvider" }, "in": "path" }, @@ -4038,7 +3987,6 @@ "x-appwrite": { "method": "updatePhoneSession", "group": "sessions", - "weight": 27, "cookies": false, "type": "", "demo": "account\/update-phone-session.md", @@ -4120,7 +4068,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 18, "cookies": false, "type": "", "demo": "account\/create-session.md", @@ -4198,7 +4145,6 @@ "x-appwrite": { "method": "getSession", "group": "sessions", - "weight": 13, "cookies": false, "type": "", "demo": "account\/get-session.md", @@ -4261,7 +4207,6 @@ "x-appwrite": { "method": "updateSession", "group": "sessions", - "weight": 15, "cookies": false, "type": "", "demo": "account\/update-session.md", @@ -4317,7 +4262,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 14, "cookies": false, "type": "", "demo": "account\/delete-session.md", @@ -4382,7 +4326,6 @@ "x-appwrite": { "method": "updateStatus", "group": "account", - "weight": 37, "cookies": false, "type": "", "demo": "account\/update-status.md", @@ -4435,7 +4378,6 @@ "x-appwrite": { "method": "createPushTarget", "group": "pushTargets", - "weight": 44, "cookies": false, "type": "", "demo": "account\/create-push-target.md", @@ -4445,8 +4387,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -4458,8 +4399,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "requestBody": { @@ -4481,6 +4421,7 @@ "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", + "default": "", "x-example": "" } }, @@ -4518,7 +4459,6 @@ "x-appwrite": { "method": "updatePushTarget", "group": "pushTargets", - "weight": 45, "cookies": false, "type": "", "demo": "account\/update-push-target.md", @@ -4528,8 +4468,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -4541,8 +4480,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -4593,7 +4531,6 @@ "x-appwrite": { "method": "deletePushTarget", "group": "pushTargets", - "weight": 46, "cookies": false, "type": "", "demo": "account\/delete-push-target.md", @@ -4603,8 +4540,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -4616,8 +4552,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -4658,7 +4593,6 @@ "x-appwrite": { "method": "createEmailToken", "group": "tokens", - "weight": 25, "cookies": false, "type": "", "demo": "account\/create-email-token.md", @@ -4708,6 +4642,7 @@ "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", + "default": false, "x-example": false } }, @@ -4745,7 +4680,6 @@ "x-appwrite": { "method": "createMagicURLToken", "group": "tokens", - "weight": 24, "cookies": false, "type": "", "demo": "account\/create-magic-url-token.md", @@ -4795,12 +4729,14 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the magic URL login. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", + "default": "", "x-example": "https:\/\/example.com", "format": "url" }, "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", + "default": false, "x-example": false } }, @@ -4831,7 +4767,6 @@ "x-appwrite": { "method": "createOAuth2Token", "group": "tokens", - "weight": 23, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-token.md", @@ -4911,8 +4846,7 @@ "zoho", "zoom" ], - "x-enum-name": "OAuthProvider", - "x-enum-keys": [] + "x-enum-name": "OAuthProvider" }, "in": "path" }, @@ -4980,7 +4914,6 @@ "x-appwrite": { "method": "createPhoneToken", "group": "tokens", - "weight": 28, "cookies": false, "type": "", "demo": "account\/create-phone-token.md", @@ -5062,7 +4995,6 @@ "x-appwrite": { "method": "createEmailVerification", "group": "verification", - "weight": 40, "cookies": false, "type": "", "demo": "account\/create-email-verification.md", @@ -5185,7 +5117,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "verification", - "weight": 41, "cookies": false, "type": "", "demo": "account\/update-email-verification.md", @@ -5319,7 +5250,6 @@ "x-appwrite": { "method": "createPhoneVerification", "group": "verification", - "weight": 42, "cookies": false, "type": "", "demo": "account\/create-phone-verification.md", @@ -5373,7 +5303,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "verification", - "weight": 43, "cookies": false, "type": "", "demo": "account\/update-phone-verification.md", @@ -5451,7 +5380,6 @@ "x-appwrite": { "method": "listEvents", "group": null, - "weight": 1258, "cookies": false, "type": "", "demo": "activities\/list-events.md", @@ -5514,7 +5442,6 @@ "x-appwrite": { "method": "getEvent", "group": "events", - "weight": 1259, "cookies": false, "type": "", "demo": "activities\/get-event.md", @@ -5570,7 +5497,6 @@ "x-appwrite": { "method": "getBrowser", "group": null, - "weight": 176, "cookies": false, "type": "location", "demo": "avatars\/get-browser.md", @@ -5699,7 +5625,6 @@ "x-appwrite": { "method": "getCreditCard", "group": null, - "weight": 175, "cookies": false, "type": "location", "demo": "avatars\/get-credit-card.md", @@ -5834,7 +5759,6 @@ "x-appwrite": { "method": "getFavicon", "group": null, - "weight": 179, "cookies": false, "type": "location", "demo": "avatars\/get-favicon.md", @@ -5895,7 +5819,6 @@ "x-appwrite": { "method": "getFlag", "group": null, - "weight": 177, "cookies": false, "type": "location", "demo": "avatars\/get-flag.md", @@ -6386,7 +6309,6 @@ "x-appwrite": { "method": "getImage", "group": null, - "weight": 178, "cookies": false, "type": "location", "demo": "avatars\/get-image.md", @@ -6471,7 +6393,6 @@ "x-appwrite": { "method": "getInitials", "group": null, - "weight": 181, "cookies": false, "type": "location", "demo": "avatars\/get-initials.md", @@ -6566,7 +6487,6 @@ "x-appwrite": { "method": "getQR", "group": null, - "weight": 180, "cookies": false, "type": "location", "demo": "avatars\/get-qr.md", @@ -6661,7 +6581,6 @@ "x-appwrite": { "method": "getScreenshot", "group": null, - "weight": 182, "cookies": false, "type": "location", "demo": "avatars\/get-screenshot.md", @@ -6760,8 +6679,7 @@ "light", "dark" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "BrowserTheme", "default": "light" }, "in": "query" @@ -7227,8 +7145,7 @@ "pacific\/wallis", "utc" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Timezone" }, "in": "query" }, @@ -7309,8 +7226,7 @@ "web-share", "xr-spatial-tracking" ], - "x-enum-name": "BrowserPermission", - "x-enum-keys": [] + "x-enum-name": "BrowserPermission" }, "x-example": "[\"geolocation\",\"notifications\"]", "default": [] @@ -7381,8 +7297,7 @@ "avif", "gif" ], - "x-enum-name": "ImageFormat", - "x-enum-keys": [] + "x-enum-name": "ImageFormat" }, "in": "query" } @@ -7413,7 +7328,6 @@ "x-appwrite": { "method": "listArchives", "group": null, - "weight": 1127, "cookies": false, "type": "", "demo": "backups\/list-archives.md", @@ -7477,7 +7391,6 @@ "x-appwrite": { "method": "createArchive", "group": null, - "weight": 1128, "cookies": false, "type": "", "demo": "backups\/create-archive.md", @@ -7522,8 +7435,7 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "resourceId": { @@ -7566,7 +7478,6 @@ "x-appwrite": { "method": "getArchive", "group": null, - "weight": 1126, "cookies": false, "type": "", "demo": "backups\/get-archive.md", @@ -7620,7 +7531,6 @@ "x-appwrite": { "method": "deleteArchive", "group": null, - "weight": 1129, "cookies": false, "type": "", "demo": "backups\/delete-archive.md", @@ -7683,7 +7593,6 @@ "x-appwrite": { "method": "listPolicies", "group": null, - "weight": 1122, "cookies": false, "type": "", "demo": "backups\/list-policies.md", @@ -7750,7 +7659,6 @@ "x-appwrite": { "method": "createPolicy", "group": null, - "weight": 1123, "cookies": false, "type": "", "demo": "backups\/create-policy.md", @@ -7792,6 +7700,7 @@ "name": { "type": "string", "description": "Policy name. Max length: 128 chars.", + "default": "", "x-example": "" }, "services": { @@ -7808,8 +7717,7 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "resourceId": { @@ -7821,6 +7729,7 @@ "enabled": { "type": "boolean", "description": "Is policy enabled? When set to 'disabled', no backups will be taken", + "default": true, "x-example": false }, "retention": { @@ -7871,7 +7780,6 @@ "x-appwrite": { "method": "getPolicy", "group": null, - "weight": 1121, "cookies": false, "type": "", "demo": "backups\/get-policy.md", @@ -7935,7 +7843,6 @@ "x-appwrite": { "method": "updatePolicy", "group": null, - "weight": 1124, "cookies": false, "type": "", "demo": "backups\/update-policy.md", @@ -8027,7 +7934,6 @@ "x-appwrite": { "method": "deletePolicy", "group": null, - "weight": 1125, "cookies": false, "type": "", "demo": "backups\/delete-policy.md", @@ -8093,7 +7999,6 @@ "x-appwrite": { "method": "createRestoration", "group": null, - "weight": 1132, "cookies": false, "type": "", "demo": "backups\/create-restoration.md", @@ -8143,18 +8048,19 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "newResourceId": { "type": "string", "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "" }, "newResourceName": { "type": "string", "description": "Database name. Max length: 128 chars.", + "default": "", "x-example": "" } }, @@ -8192,7 +8098,6 @@ "x-appwrite": { "method": "listRestorations", "group": null, - "weight": 1131, "cookies": false, "type": "", "demo": "backups\/list-restorations.md", @@ -8258,7 +8163,6 @@ "x-appwrite": { "method": "getRestoration", "group": null, - "weight": 1130, "cookies": false, "type": "", "demo": "backups\/get-restoration.md", @@ -8304,7 +8208,7 @@ "tags": [ "compute" ], - "description": " List all dedicated databases. Results support pagination.", + "description": "List all dedicated databases. Results support pagination.", "responses": { "200": { "description": "Dedicated databases list", @@ -8321,7 +8225,6 @@ "x-appwrite": { "method": "listDatabases", "group": "databases", - "weight": 929, "cookies": false, "type": "", "demo": "compute\/list-databases.md", @@ -8365,7 +8268,7 @@ "tags": [ "compute" ], - "description": " Create a new dedicated database with the chosen engine and configuration. Status will be 'provisioning' until the database is ready.", + "description": "Create a new dedicated database with the chosen engine and configuration. Status will be 'provisioning' until the database is ready.", "responses": { "201": { "description": "DedicatedDatabase", @@ -8382,7 +8285,6 @@ "x-appwrite": { "method": "createDatabase", "group": "databases", - "weight": 927, "cookies": false, "type": "", "demo": "compute\/create-database.md", @@ -8423,127 +8325,83 @@ "engine": { "type": "string", "description": "Database engine: postgres, mysql, mariadb, or mongodb.", - "x-example": "postgres", - "enum": [ - "postgres", - "mysql", - "mariadb", - "mongodb" - ], - "x-enum-name": null, - "x-enum-keys": [] + "default": "postgres", + "x-example": "postgres" }, "version": { "type": "string", "description": "Database engine version. Defaults to latest for selected engine.", "x-example": "17", - "enum": [ - "17", - "18", - "8.0", - "8.4", - "10.11", - "11.4", - "7.0" - ], - "x-enum-name": null, - "x-enum-keys": [ - "Postgres 17", - "Postgres 18", - "MySQL 8.0", - "MySQL 8.4", - "MariaDB 10.11", - "MariaDB 11.4", - "MongoDB 7.0" - ], "x-nullable": true }, "region": { "type": "string", "description": "Region identifier. Use one of the enabled region codes (e.g., fra, nyc, syd).", - "x-example": "fra", - "enum": [ - "fra", - "nyc", - "syd", - "sfo", - "sgp", - "tor" - ], - "x-enum-name": null, - "x-enum-keys": [] + "default": "fra", + "x-example": "fra" }, "type": { "type": "string", "description": "Database type: shared (serverless) or dedicated (always-on).", - "x-example": "shared", - "enum": [ - "shared", - "dedicated" - ], - "x-enum-name": null, - "x-enum-keys": [] + "default": "shared", + "x-example": "shared" }, "specification": { "type": "string", "description": "Specification identifier.", + "default": "starter", "x-example": "" }, "backend": { "type": "string", "description": "Database backend provider: prisma, or edge.", - "x-example": "prisma", - "enum": [ - "prisma", - "edge" - ], - "x-enum-name": null, - "x-enum-keys": [] + "default": "edge", + "x-example": "prisma" }, "cpu": { "type": "integer", "description": "CPU in millicores (125-16000).", + "default": 1000, "x-example": 125, "format": "int32" }, "memory": { "type": "integer", "description": "Memory in MB to allocate (128-65536).", + "default": 1024, "x-example": 128, "format": "int32" }, "storage": { "type": "integer", "description": "Storage in GB to allocate (1-16384).", + "default": 10, "x-example": 1, "format": "int32" }, "storageClass": { "type": "string", "description": "Storage class: ssd, nvme, or hdd.", - "x-example": "ssd", - "enum": [ - "ssd", - "nvme", - "hdd" - ], - "x-enum-name": null, - "x-enum-keys": [] + "default": "ssd", + "x-example": "ssd" }, "storageMaxGb": { "type": "integer", "description": "Maximum storage limit in GB. 0 uses system default.", + "default": 0, "x-example": 0, "format": "int32" }, "highAvailability": { "type": "boolean", "description": "Enable high availability.", + "default": false, "x-example": false }, "highAvailabilityReplicaCount": { "type": "integer", "description": "Number of high availability replicas (0-5).", + "default": 0, "x-example": 0, "format": "int32" }, @@ -8551,24 +8409,19 @@ "type": "string", "description": "Replication sync mode. Allowed values: async, sync, quorum.", "x-example": "async", - "enum": [ - "async", - "sync", - "quorum" - ], - "x-enum-name": null, - "x-enum-keys": [], "x-nullable": true }, "networkMaxConnections": { "type": "integer", "description": "Maximum concurrent connections.", + "default": 100, "x-example": 10, "format": "int32" }, "networkIdleTimeoutSeconds": { "type": "integer", "description": "Connection idle timeout in seconds.", + "default": 900, "x-example": 60, "format": "int32" }, @@ -8584,61 +8437,72 @@ "idleTimeoutMinutes": { "type": "integer", "description": "Minutes of inactivity before container scales to zero.", + "default": 15, "x-example": 5, "format": "int32" }, "backupEnabled": { "type": "boolean", "description": "Enable automatic backups.", + "default": true, "x-example": false }, "backupPitr": { "type": "boolean", "description": "Enable point-in-time recovery.", + "default": true, "x-example": false }, "backupCron": { "type": "string", "description": "Backup schedule in cron format.", + "default": "0 3 * * *", "x-example": null }, "backupRetentionDays": { "type": "integer", "description": "Number of days to retain backups.", + "default": 14, "x-example": 1, "format": "int32" }, "pitrRetentionDays": { "type": "integer", "description": "Number of days to retain PITR data.", + "default": 7, "x-example": 1, "format": "int32" }, "storageAutoscaling": { "type": "boolean", "description": "Enable automatic storage expansion when usage exceeds threshold.", + "default": false, "x-example": false }, "storageAutoscalingThresholdPercent": { "type": "integer", "description": "Storage usage percentage (50-95) that triggers automatic expansion.", + "default": 85, "x-example": 50, "format": "int32" }, "storageAutoscalingMaxGb": { "type": "integer", "description": "Maximum storage size in GB for autoscaling. 0 means no limit.", + "default": 0, "x-example": 0, "format": "int32" }, "metricsEnabled": { "type": "boolean", "description": "Enable metrics collection.", + "default": true, "x-example": false }, "poolerEnabled": { "type": "boolean", "description": "Enable connection pooler on provision.", + "default": true, "x-example": false } }, @@ -8659,7 +8523,7 @@ "tags": [ "compute" ], - "description": " Get a dedicated database by its unique ID. Returns the database configuration and current status.", + "description": "Get a dedicated database by its unique ID. Returns the database configuration and current status.", "responses": { "200": { "description": "DedicatedDatabase", @@ -8676,7 +8540,6 @@ "x-appwrite": { "method": "getDatabase", "group": "databases", - "weight": 928, "cookies": false, "type": "", "demo": "compute\/get-database.md", @@ -8717,7 +8580,7 @@ "tags": [ "compute" ], - "description": " Update a dedicated database configuration. All changes are applied with zero downtime. Resource changes (cpu, memory) are handled via rolling cutover. Storage expansion is done online. All other settings are applied in-place.", + "description": "Update a dedicated database configuration. All changes are applied with zero downtime. Resource changes (cpu, memory) are handled via rolling cutover. Storage expansion is done online. All other settings are applied in-place.", "responses": { "200": { "description": "DedicatedDatabase", @@ -8734,7 +8597,6 @@ "x-appwrite": { "method": "updateDatabase", "group": "databases", - "weight": 930, "cookies": false, "type": "", "demo": "compute\/update-database.md", @@ -8784,13 +8646,6 @@ "type": "string", "description": "Database status. Allowed values: ready, paused, inactive. Set to \"paused\" to pause, \"ready\" to resume, or \"inactive\" to spin down a shared database.", "x-example": "ready", - "enum": [ - "ready", - "paused", - "inactive" - ], - "x-enum-name": null, - "x-enum-keys": [], "x-nullable": true }, "specification": { @@ -8824,13 +8679,6 @@ "type": "string", "description": "Storage class. Allowed values: ssd, nvme, hdd.", "x-example": "ssd", - "enum": [ - "ssd", - "nvme", - "hdd" - ], - "x-enum-name": null, - "x-enum-keys": [], "x-nullable": true }, "highAvailability": { @@ -8965,15 +8813,7 @@ "description": "Statement types the SQL API accepts. Allowed values: SELECT, INSERT, UPDATE, DELETE.", "x-example": null, "items": { - "type": "string", - "enum": [ - "select", - "insert", - "update", - "delete" - ], - "x-enum-name": null, - "x-enum-keys": [] + "type": "string" }, "x-nullable": true }, @@ -9010,7 +8850,7 @@ "tags": [ "compute" ], - "description": " Delete a dedicated database. This action is irreversible. The database status will be set to 'deleting' and all resources will be cleaned up.", + "description": "Delete a dedicated database. This action is irreversible. The database status will be set to 'deleting' and all resources will be cleaned up.", "responses": { "204": { "description": "No content" @@ -9020,7 +8860,6 @@ "x-appwrite": { "method": "deleteDatabase", "group": "databases", - "weight": 931, "cookies": false, "type": "", "demo": "compute\/delete-database.md", @@ -9063,7 +8902,7 @@ "tags": [ "compute" ], - "description": " List all backups for a dedicated database. Results can be filtered by status and type.", + "description": "List all backups for a dedicated database. Results can be filtered by status and type.", "responses": { "200": { "description": "BackupList", @@ -9080,7 +8919,6 @@ "x-appwrite": { "method": "listDatabaseBackups", "group": "databases", - "weight": 959, "cookies": false, "type": "", "demo": "compute\/list-database-backups.md", @@ -9134,7 +8972,7 @@ "tags": [ "compute" ], - "description": " Create a manual backup of a dedicated database. The backup will be created asynchronously and its status can be checked via the get backup endpoint.", + "description": "Create a manual backup of a dedicated database. The backup will be created asynchronously and its status can be checked via the get backup endpoint.", "responses": { "202": { "description": "Backup", @@ -9151,7 +8989,6 @@ "x-appwrite": { "method": "createDatabaseBackup", "group": "databases", - "weight": 957, "cookies": false, "type": "", "demo": "compute\/create-database-backup.md", @@ -9194,13 +9031,8 @@ "type": { "type": "string", "description": "Backup type: full or incremental.", - "x-example": "full", - "enum": [ - "full", - "incremental" - ], - "x-enum-name": null, - "x-enum-keys": [] + "default": "full", + "x-example": "full" } } } @@ -9216,7 +9048,7 @@ "tags": [ "compute" ], - "description": " Configure off-cluster backup storage for a dedicated database. Supports S3, GCS, and Azure Blob Storage destinations. Backups will be stored to the configured destination in addition to on-cluster storage.", + "description": "Configure off-cluster backup storage for a dedicated database. Supports S3, GCS, and Azure Blob Storage destinations. Backups will be stored to the configured destination in addition to on-cluster storage.", "responses": { "200": { "description": "BackupStorageConfig", @@ -9233,7 +9065,6 @@ "x-appwrite": { "method": "updateDatabaseBackupStorage", "group": "databases", - "weight": 961, "cookies": false, "type": "", "demo": "compute\/update-database-backup-storage.md", @@ -9276,14 +9107,7 @@ "provider": { "type": "string", "description": "Storage provider for off-cluster backups. Allowed values: s3 (Amazon S3 or S3-compatible), gcs (Google Cloud Storage), azure (Azure Blob Storage).", - "x-example": "s3", - "enum": [ - "s3", - "gcs", - "azure" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "s3" }, "bucket": { "type": "string", @@ -9293,16 +9117,19 @@ "region": { "type": "string", "description": "Storage region.", + "default": "", "x-example": "" }, "prefix": { "type": "string", "description": "Object key prefix for backups.", + "default": "backups\/", "x-example": "" }, "endpoint": { "type": "string", "description": "Custom endpoint for S3-compatible storage (e.g. MinIO).", + "default": "", "x-example": "" }, "accessKey": { @@ -9335,7 +9162,7 @@ "tags": [ "compute" ], - "description": " Get details of a specific database backup including its status, size, and timestamps.", + "description": "Get details of a specific database backup including its status, size, and timestamps.", "responses": { "200": { "description": "Backup", @@ -9352,7 +9179,6 @@ "x-appwrite": { "method": "getDatabaseBackup", "group": "databases", - "weight": 958, "cookies": false, "type": "", "demo": "compute\/get-database-backup.md", @@ -9403,7 +9229,7 @@ "tags": [ "compute" ], - "description": " Delete a database backup. This will permanently remove the backup from storage and cannot be undone.", + "description": "Delete a database backup. This will permanently remove the backup from storage and cannot be undone.", "responses": { "204": { "description": "No content" @@ -9413,7 +9239,6 @@ "x-appwrite": { "method": "deleteDatabaseBackup", "group": "databases", - "weight": 960, "cookies": false, "type": "", "demo": "compute\/delete-database-backup.md", @@ -9466,7 +9291,7 @@ "tags": [ "compute" ], - "description": " List all ephemeral branches for a dedicated database. Returns branch metadata including ID, name, namespace, and expiration time.", + "description": "List all ephemeral branches for a dedicated database. Returns branch metadata including ID, name, namespace, and expiration time.", "responses": { "200": { "description": "BranchList", @@ -9483,7 +9308,6 @@ "x-appwrite": { "method": "listDatabaseBranches", "group": "databases", - "weight": 949, "cookies": false, "type": "", "demo": "compute\/list-database-branches.md", @@ -9524,7 +9348,7 @@ "tags": [ "compute" ], - "description": " Create an ephemeral database branch from the primary via PVC snapshot. The branch is a full copy of the database at the current point in time, useful for testing schema migrations or running experiments without affecting production data. Branches expire after the configured TTL (default 24 hours). The branch is created asynchronously.", + "description": "Create an ephemeral database branch from the primary via PVC snapshot. The branch is a full copy of the database at the current point in time, useful for testing schema migrations or running experiments without affecting production data. Branches expire after the configured TTL (default 24 hours). The branch is created asynchronously.", "responses": { "202": { "description": "DedicatedDatabase", @@ -9541,7 +9365,6 @@ "x-appwrite": { "method": "createDatabaseBranch", "group": "databases", - "weight": 948, "cookies": false, "type": "", "demo": "compute\/create-database-branch.md", @@ -9584,11 +9407,13 @@ "branchId": { "type": "string", "description": "Branch ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "" }, "ttl": { "type": "integer", "description": "Time-to-live in seconds before the branch expires. Min 300 (5 min), max 604800 (7 days). Default: 86400 (24h).", + "default": 86400, "x-example": 300, "format": "int32" } @@ -9606,7 +9431,7 @@ "tags": [ "compute" ], - "description": " Delete an ephemeral database branch. This removes the branch namespace, its PVC, and the associated VolumeSnapshot. The deletion runs asynchronously and is irreversible.", + "description": "Delete an ephemeral database branch. This removes the branch namespace, its PVC, and the associated VolumeSnapshot. The deletion runs asynchronously and is irreversible.", "responses": { "202": { "description": "DedicatedDatabase", @@ -9623,7 +9448,6 @@ "x-appwrite": { "method": "deleteDatabaseBranch", "group": "databases", - "weight": 950, "cookies": false, "type": "", "demo": "compute\/delete-database-branch.md", @@ -9676,7 +9500,7 @@ "tags": [ "compute" ], - "description": " List all database connection users\/roles for a dedicated database.", + "description": "List all database connection users\/roles for a dedicated database.", "responses": { "200": { "description": "Dedicated database connections list", @@ -9693,7 +9517,6 @@ "x-appwrite": { "method": "listDatabaseConnections", "group": "databases", - "weight": 940, "cookies": false, "type": "", "demo": "compute\/list-database-connections.md", @@ -9734,7 +9557,7 @@ "tags": [ "compute" ], - "description": " Create a new database connection user\/role. Returns the connection details including the generated credentials.", + "description": "Create a new database connection user\/role. Returns the connection details including the generated credentials.", "responses": { "201": { "description": "Connection", @@ -9751,7 +9574,6 @@ "x-appwrite": { "method": "createDatabaseConnection", "group": "databases", - "weight": 939, "cookies": false, "type": "", "demo": "compute\/create-database-connection.md", @@ -9799,6 +9621,7 @@ "role": { "type": "string", "description": "Connection role for the new user. Common values: readonly (read-only access), readwrite (full read and write access).", + "default": "readwrite", "x-example": "" } }, @@ -9818,7 +9641,7 @@ "tags": [ "compute" ], - "description": " Delete a database connection user\/role. The connection will be terminated immediately.", + "description": "Delete a database connection user\/role. The connection will be terminated immediately.", "responses": { "204": { "description": "No content" @@ -9828,7 +9651,6 @@ "x-appwrite": { "method": "deleteDatabaseConnection", "group": "databases", - "weight": 941, "cookies": false, "type": "", "demo": "compute\/delete-database-connection.md", @@ -9881,7 +9703,7 @@ "tags": [ "compute" ], - "description": " Get connection credentials for a dedicated database. Returns the hostname, port, username, password, database name, and full connection string.", + "description": "Get connection credentials for a dedicated database. Returns the hostname, port, username, password, database name, and full connection string.", "responses": { "200": { "description": "Credentials", @@ -9898,7 +9720,6 @@ "x-appwrite": { "method": "getDatabaseCredentials", "group": "databases", - "weight": 932, "cookies": false, "type": "", "demo": "compute\/get-database-credentials.md", @@ -9939,7 +9760,7 @@ "tags": [ "compute" ], - "description": " Rotate the primary credentials for a dedicated database. Generates a new password and updates the database. Previous credentials will stop working immediately.", + "description": "Rotate the primary credentials for a dedicated database. Generates a new password and updates the database. Previous credentials will stop working immediately.", "responses": { "200": { "description": "Credentials", @@ -9956,7 +9777,6 @@ "x-appwrite": { "method": "updateDatabaseCredentials", "group": "databases", - "weight": 933, "cookies": false, "type": "", "demo": "compute\/update-database-credentials.md", @@ -10016,7 +9836,6 @@ "x-appwrite": { "method": "createDatabaseExecution", "group": "databases", - "weight": 947, "cookies": false, "type": "", "demo": "compute\/create-database-execution.md", @@ -10091,7 +9910,7 @@ "tags": [ "compute" ], - "description": " Run EXPLAIN on a query against a dedicated database. Available for SQL-compatible engines. Returns the query execution plan including scan types, estimated cost, and resource usage. Optionally run EXPLAIN ANALYZE to get actual execution statistics.", + "description": "Run EXPLAIN on a query against a dedicated database. Available for SQL-compatible engines. Returns the query execution plan including scan types, estimated cost, and resource usage. Optionally run EXPLAIN ANALYZE to get actual execution statistics.", "responses": { "200": { "description": "QueryExplanation", @@ -10108,7 +9927,6 @@ "x-appwrite": { "method": "createDatabaseQueryExplanation", "group": "databases", - "weight": 968, "cookies": false, "type": "", "demo": "compute\/create-database-query-explanation.md", @@ -10156,6 +9974,7 @@ "analyze": { "type": "boolean", "description": "Run EXPLAIN ANALYZE to get actual execution statistics. This executes the query.", + "default": false, "x-example": false } }, @@ -10175,7 +9994,7 @@ "tags": [ "compute" ], - "description": " List installed and available extensions for a PostgreSQL database.", + "description": "List installed and available extensions for a PostgreSQL database.", "responses": { "200": { "description": "Extensions", @@ -10192,7 +10011,6 @@ "x-appwrite": { "method": "listDatabaseExtensions", "group": "databases", - "weight": 943, "cookies": false, "type": "", "demo": "compute\/list-database-extensions.md", @@ -10233,7 +10051,7 @@ "tags": [ "compute" ], - "description": " Install a database extension. Only available for PostgreSQL databases. The install runs asynchronously; poll the extensions list endpoint for status.", + "description": "Install a database extension. Only available for PostgreSQL databases. The install runs asynchronously; poll the extensions list endpoint for status.", "responses": { "202": { "description": "DedicatedDatabase", @@ -10250,7 +10068,6 @@ "x-appwrite": { "method": "createDatabaseExtension", "group": "databases", - "weight": 942, "cookies": false, "type": "", "demo": "compute\/create-database-extension.md", @@ -10312,7 +10129,7 @@ "tags": [ "compute" ], - "description": " Uninstall a database extension from a PostgreSQL database. The uninstall runs asynchronously; poll the extensions list endpoint for status.", + "description": "Uninstall a database extension from a PostgreSQL database. The uninstall runs asynchronously; poll the extensions list endpoint for status.", "responses": { "202": { "description": "DedicatedDatabase", @@ -10329,7 +10146,6 @@ "x-appwrite": { "method": "deleteDatabaseExtension", "group": "databases", - "weight": 944, "cookies": false, "type": "", "demo": "compute\/delete-database-extension.md", @@ -10382,7 +10198,7 @@ "tags": [ "compute" ], - "description": " Get high availability status for a dedicated database. Returns replica statuses, replication lag, and sync mode.", + "description": "Get high availability status for a dedicated database. Returns replica statuses, replication lag, and sync mode.", "responses": { "200": { "description": "HAStatus", @@ -10399,7 +10215,6 @@ "x-appwrite": { "method": "getDatabaseHAStatus", "group": "databases", - "weight": 954, "cookies": false, "type": "", "demo": "compute\/get-database-ha-status.md", @@ -10442,7 +10257,7 @@ "tags": [ "compute" ], - "description": " Trigger a manual failover for a dedicated database with high availability enabled. Promotes a replica to primary. The failover runs asynchronously; poll the database document for status updates.", + "description": "Trigger a manual failover for a dedicated database with high availability enabled. Promotes a replica to primary. The failover runs asynchronously; poll the database document for status updates.", "responses": { "202": { "description": "DedicatedDatabase", @@ -10459,7 +10274,6 @@ "x-appwrite": { "method": "createDatabaseFailover", "group": "databases", - "weight": 955, "cookies": false, "type": "", "demo": "compute\/create-database-failover.md", @@ -10519,7 +10333,7 @@ "tags": [ "compute" ], - "description": " Get query-level performance insights for a dedicated database. Returns top queries by execution time, wait events, and aggregate query statistics.", + "description": "Get query-level performance insights for a dedicated database. Returns top queries by execution time, wait events, and aggregate query statistics.", "responses": { "200": { "description": "PerformanceInsights", @@ -10536,7 +10350,6 @@ "x-appwrite": { "method": "getDatabaseInsights", "group": "databases", - "weight": 953, "cookies": false, "type": "", "demo": "compute\/get-database-insights.md", @@ -10576,17 +10389,6 @@ "schema": { "type": "string", "x-example": "1h", - "enum": [ - "1h", - "24h", - "7d" - ], - "x-enum-name": null, - "x-enum-keys": [ - "One Hour", - "Twenty Four Hours", - "Seven Days" - ], "default": "1h" }, "in": "query" @@ -10612,7 +10414,7 @@ "tags": [ "compute" ], - "description": " List audit logs for a dedicated database. Returns DDL operations and security-relevant events.", + "description": "List audit logs for a dedicated database. Returns DDL operations and security-relevant events.", "responses": { "200": { "description": "Dedicated database audit logs list", @@ -10629,7 +10431,6 @@ "x-appwrite": { "method": "listDatabaseLogs", "group": "databases", - "weight": 952, "cookies": false, "type": "", "demo": "compute\/list-database-logs.md", @@ -10704,7 +10505,7 @@ "tags": [ "compute" ], - "description": " Update the maintenance window for a dedicated database. Maintenance operations like minor version upgrades will be performed during this window.", + "description": "Update the maintenance window for a dedicated database. Maintenance operations like minor version upgrades will be performed during this window.", "responses": { "200": { "description": "DedicatedDatabase", @@ -10721,7 +10522,6 @@ "x-appwrite": { "method": "updateDatabaseMaintenanceWindow", "group": "databases", - "weight": 938, "cookies": false, "type": "", "demo": "compute\/update-database-maintenance-window.md", @@ -10764,18 +10564,7 @@ "day": { "type": "string", "description": "Day of the week for the maintenance window. Allowed values: sun, mon, tue, wed, thu, fri, sat.", - "x-example": "sun", - "enum": [ - "sun", - "mon", - "tue", - "wed", - "thu", - "fri", - "sat" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "sun" }, "hourUtc": { "type": "integer", @@ -10801,7 +10590,7 @@ "tags": [ "compute" ], - "description": " Get detailed performance metrics for a dedicated database. Returns CPU, memory, storage, IOPS, QPS, and connection metrics.", + "description": "Get detailed performance metrics for a dedicated database. Returns CPU, memory, storage, IOPS, QPS, and connection metrics.", "responses": { "200": { "description": "DatabaseMetrics", @@ -10818,7 +10607,6 @@ "x-appwrite": { "method": "getDatabaseMetrics", "group": "databases", - "weight": 936, "cookies": false, "type": "", "demo": "compute\/get-database-metrics.md", @@ -10858,19 +10646,6 @@ "schema": { "type": "string", "x-example": "1h", - "enum": [ - "1h", - "24h", - "7d", - "30d" - ], - "x-enum-name": null, - "x-enum-keys": [ - "One Hour", - "Twenty Four Hours", - "Seven Days", - "Thirty Days" - ], "default": "24h" }, "in": "query" @@ -10885,7 +10660,7 @@ "tags": [ "compute" ], - "description": " Migrate a database between shared and dedicated types. Shared to dedicated creates an always-on StatefulSet with external access. Dedicated to shared converts to a serverless pod that scales to zero when idle. Data is preserved during migration.", + "description": "Migrate a database between shared and dedicated types. Shared to dedicated creates an always-on StatefulSet with external access. Dedicated to shared converts to a serverless pod that scales to zero when idle. Data is preserved during migration.", "responses": { "200": { "description": "DedicatedDatabase", @@ -10902,7 +10677,6 @@ "x-appwrite": { "method": "createDatabaseMigration", "group": "databases", - "weight": 965, "cookies": false, "type": "", "demo": "compute\/create-database-migration.md", @@ -10945,13 +10719,7 @@ "targetType": { "type": "string", "description": "Target database type to migrate to. Allowed values: shared (serverless, scales to zero when idle), dedicated (always-on with persistent resources).", - "x-example": "shared", - "enum": [ - "shared", - "dedicated" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "shared" } }, "required": [ @@ -10970,7 +10738,7 @@ "tags": [ "compute" ], - "description": " Get available point-in-time recovery windows for a dedicated database. Returns the earliest and latest recovery points.", + "description": "Get available point-in-time recovery windows for a dedicated database. Returns the earliest and latest recovery points.", "responses": { "200": { "description": "PITRWindows", @@ -10987,7 +10755,6 @@ "x-appwrite": { "method": "getDatabasePITRWindows", "group": "databases", - "weight": 956, "cookies": false, "type": "", "demo": "compute\/get-database-pitr-windows.md", @@ -11030,7 +10797,7 @@ "tags": [ "compute" ], - "description": " Get the connection pooler configuration for a dedicated database. Returns pooler mode, max connections, and pool size settings.", + "description": "Get the connection pooler configuration for a dedicated database. Returns pooler mode, max connections, and pool size settings.", "responses": { "200": { "description": "PoolerConfig", @@ -11047,7 +10814,6 @@ "x-appwrite": { "method": "getDatabasePooler", "group": "databases", - "weight": 945, "cookies": false, "type": "", "demo": "compute\/get-database-pooler.md", @@ -11088,7 +10854,7 @@ "tags": [ "compute" ], - "description": " Update the connection pooler configuration for a dedicated database. Configure pool mode, max connections, and pool sizes.", + "description": "Update the connection pooler configuration for a dedicated database. Configure pool mode, max connections, and pool sizes.", "responses": { "200": { "description": "PoolerConfig", @@ -11105,7 +10871,6 @@ "x-appwrite": { "method": "updateDatabasePooler", "group": "databases", - "weight": 946, "cookies": false, "type": "", "demo": "compute\/update-database-pooler.md", @@ -11149,12 +10914,6 @@ "type": "string", "description": "Connection pool mode. Allowed values: transaction, session. Transaction mode returns connections to the pool after each transaction; session mode holds connections for the entire session lifetime.", "x-example": "transaction", - "enum": [ - "transaction", - "session" - ], - "x-enum-name": null, - "x-enum-keys": [], "x-nullable": true }, "maxConnections": { @@ -11215,7 +10974,7 @@ "tags": [ "compute" ], - "description": " List all restorations for a dedicated database. Results can be filtered by status and type.", + "description": "List all restorations for a dedicated database. Results can be filtered by status and type.", "responses": { "200": { "description": "Dedicated database restorations list", @@ -11232,7 +10991,6 @@ "x-appwrite": { "method": "listDatabaseRestorations", "group": "databases", - "weight": 964, "cookies": false, "type": "", "demo": "compute\/list-database-restorations.md", @@ -11271,15 +11029,7 @@ "required": false, "schema": { "type": "string", - "x-example": "pending", - "enum": [ - "pending", - "running", - "completed", - "failed" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "pending" }, "in": "query" }, @@ -11289,13 +11039,7 @@ "required": false, "schema": { "type": "string", - "x-example": "backup", - "enum": [ - "backup", - "pitr" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "backup" }, "in": "query" }, @@ -11331,7 +11075,7 @@ "tags": [ "compute" ], - "description": " Restore a database from a backup or to a specific point in time (PITR). For backup restoration, provide a backupId. For PITR, provide a targetTime. PITR requires the database to have PITR enabled and is only available for enterprise databases.", + "description": "Restore a database from a backup or to a specific point in time (PITR). For backup restoration, provide a backupId. For PITR, provide a targetTime. PITR requires the database to have PITR enabled and is only available for enterprise databases.", "responses": { "202": { "description": "Restoration", @@ -11348,7 +11092,6 @@ "x-appwrite": { "method": "createDatabaseRestoration", "group": "databases", - "weight": 962, "cookies": false, "type": "", "demo": "compute\/create-database-restoration.md", @@ -11391,13 +11134,8 @@ "type": { "type": "string", "description": "Restoration type. Allowed values: backup, pitr. Use \"backup\" to restore from a specific backup, or \"pitr\" for point-in-time recovery.", - "x-example": "backup", - "enum": [ - "backup", - "pitr" - ], - "x-enum-name": null, - "x-enum-keys": [] + "default": "backup", + "x-example": "backup" }, "backupId": { "type": "string", @@ -11426,7 +11164,7 @@ "tags": [ "compute" ], - "description": " Get details of a specific database restoration including its status, type, and timestamps.", + "description": "Get details of a specific database restoration including its status, type, and timestamps.", "responses": { "200": { "description": "Restoration", @@ -11443,7 +11181,6 @@ "x-appwrite": { "method": "getDatabaseRestoration", "group": "databases", - "weight": 963, "cookies": false, "type": "", "demo": "compute\/get-database-restoration.md", @@ -11496,7 +11233,7 @@ "tags": [ "compute" ], - "description": " Get the current schema for a dedicated database. Returns collections, fields, data types, constraints, and indexes.", + "description": "Get the current schema for a dedicated database. Returns collections, fields, data types, constraints, and indexes.", "responses": { "200": { "description": "Schema", @@ -11513,7 +11250,6 @@ "x-appwrite": { "method": "getDatabaseSchema", "group": "databases", - "weight": 966, "cookies": false, "type": "", "demo": "compute\/get-database-schema.md", @@ -11556,7 +11292,7 @@ "tags": [ "compute" ], - "description": " Preview a schema change against a dedicated database. Returns the expected impact including affected collections, records, and a dry-run diff of the schema before and after the change.", + "description": "Preview a schema change against a dedicated database. Returns the expected impact including affected collections, records, and a dry-run diff of the schema before and after the change.", "responses": { "200": { "description": "SchemaPreview", @@ -11573,7 +11309,6 @@ "x-appwrite": { "method": "createDatabaseSchemaPreview", "group": "databases", - "weight": 967, "cookies": false, "type": "", "demo": "compute\/create-database-schema-preview.md", @@ -11635,7 +11370,7 @@ "tags": [ "compute" ], - "description": " List slow queries for a dedicated database. Returns queries that exceeded the specified threshold.", + "description": "List slow queries for a dedicated database. Returns queries that exceeded the specified threshold.", "responses": { "200": { "description": "Dedicated database slow queries list", @@ -11652,7 +11387,6 @@ "x-appwrite": { "method": "listDatabaseQueries", "group": "databases", - "weight": 951, "cookies": false, "type": "", "demo": "compute\/list-database-queries.md", @@ -11719,7 +11453,7 @@ "tags": [ "compute" ], - "description": " Get real-time health and status information for a dedicated database. Returns health status, readiness, uptime, connection info, replica status, and volume information.", + "description": "Get real-time health and status information for a dedicated database. Returns health status, readiness, uptime, connection info, replica status, and volume information.", "responses": { "200": { "description": "Status", @@ -11736,7 +11470,6 @@ "x-appwrite": { "method": "getDatabaseStatus", "group": "databases", - "weight": 934, "cookies": false, "type": "", "demo": "compute\/get-database-status.md", @@ -11779,7 +11512,7 @@ "tags": [ "compute" ], - "description": " Upgrade a dedicated database to a new engine version. Uses blue-green deployment for zero-downtime cutover.", + "description": "Upgrade a dedicated database to a new engine version. Uses blue-green deployment for zero-downtime cutover.", "responses": { "200": { "description": "DedicatedDatabase", @@ -11796,7 +11529,6 @@ "x-appwrite": { "method": "createDatabaseUpgrade", "group": "databases", - "weight": 937, "cookies": false, "type": "", "demo": "compute\/create-database-upgrade.md", @@ -11858,7 +11590,7 @@ "tags": [ "compute" ], - "description": " Get usage metrics for a dedicated database including CPU, memory, storage, connections, and query statistics.", + "description": "Get usage metrics for a dedicated database including CPU, memory, storage, connections, and query statistics.", "responses": { "200": { "description": "DedicatedDatabase", @@ -11875,7 +11607,6 @@ "x-appwrite": { "method": "getDatabaseUsage", "group": "databases", - "weight": 935, "cookies": false, "type": "", "demo": "compute\/get-database-usage.md", @@ -11915,17 +11646,6 @@ "schema": { "type": "string", "x-example": "24h", - "enum": [ - "24h", - "30d", - "90d" - ], - "x-enum-name": null, - "x-enum-keys": [ - "Twenty Four Hours", - "Thirty Days", - "Ninety Days" - ], "default": "30d" }, "in": "query" @@ -11957,7 +11677,6 @@ "x-appwrite": { "method": "chat", "group": "console", - "weight": 511, "cookies": false, "type": "", "demo": "assistant\/chat.md", @@ -12025,7 +11744,6 @@ "x-appwrite": { "method": "getCampaign", "group": null, - "weight": 981, "cookies": false, "type": "", "demo": "console\/get-campaign.md", @@ -12086,7 +11804,6 @@ "x-appwrite": { "method": "getCoupon", "group": null, - "weight": 978, "cookies": false, "type": "", "demo": "console\/get-coupon.md", @@ -12147,7 +11864,6 @@ "x-appwrite": { "method": "listOAuth2Providers", "group": "console", - "weight": 508, "cookies": false, "type": "", "demo": "console\/list-o-auth-2-providers.md", @@ -12195,7 +11911,6 @@ "x-appwrite": { "method": "getPlans", "group": null, - "weight": 976, "cookies": false, "type": "", "demo": "console\/get-plans.md", @@ -12230,8 +11945,7 @@ "appwrite", "imagine" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "Platform", "default": "appwrite" }, "in": "query" @@ -12263,7 +11977,6 @@ "x-appwrite": { "method": "getPlan", "group": null, - "weight": 977, "cookies": false, "type": "", "demo": "console\/get-plan.md", @@ -12324,7 +12037,6 @@ "x-appwrite": { "method": "getProgram", "group": null, - "weight": 979, "cookies": false, "type": "", "demo": "console\/get-program.md", @@ -12385,7 +12097,6 @@ "x-appwrite": { "method": "createProgramMembership", "group": null, - "weight": 980, "cookies": false, "type": "", "demo": "console\/create-program-membership.md", @@ -12446,7 +12157,6 @@ "x-appwrite": { "method": "listRegions", "group": null, - "weight": 975, "cookies": false, "type": "", "demo": "console\/list-regions.md", @@ -12488,7 +12198,6 @@ "x-appwrite": { "method": "getResource", "group": null, - "weight": 512, "cookies": false, "type": "", "demo": "console\/get-resource.md", @@ -12531,8 +12240,7 @@ "enum": [ "rules" ], - "x-enum-name": "ConsoleResourceType", - "x-enum-keys": [] + "x-enum-name": "ConsoleResourceType" }, "in": "query" } @@ -12563,7 +12271,6 @@ "x-appwrite": { "method": "listOrganizationScopes", "group": "console", - "weight": 510, "cookies": false, "type": "", "demo": "console\/list-organization-scopes.md", @@ -12611,7 +12318,6 @@ "x-appwrite": { "method": "listProjectScopes", "group": "console", - "weight": 509, "cookies": false, "type": "", "demo": "console\/list-project-scopes.md", @@ -12659,7 +12365,6 @@ "x-appwrite": { "method": "createSource", "group": null, - "weight": 982, "cookies": false, "type": "", "demo": "console\/create-source.md", @@ -12750,7 +12455,6 @@ "x-appwrite": { "method": "suggestColumns", "group": null, - "weight": 983, "cookies": false, "type": "", "demo": "console\/suggest-columns.md", @@ -12855,7 +12559,6 @@ "x-appwrite": { "method": "suggestIndexes", "group": null, - "weight": 984, "cookies": false, "type": "", "demo": "console\/suggest-indexes.md", @@ -12950,7 +12653,6 @@ "x-appwrite": { "method": "suggestQueries", "group": null, - "weight": 985, "cookies": false, "type": "", "demo": "console\/suggest-queries.md", @@ -13140,7 +12842,13 @@ "transactions", "transaction_logs", "presence_logs", - "stats" + "stats", + "dedicated_databases", + "dedicated_database_configs", + "dedicated_database_runtimes", + "dedicated_database_operations", + "dedicated_database_backups", + "dedicated_database_restorations" ] }, "in": "query" @@ -13202,7 +12910,6 @@ "x-appwrite": { "method": "getEmailTemplate", "group": null, - "weight": 507, "cookies": false, "type": "", "demo": "console\/get-email-template.md", @@ -13241,8 +12948,7 @@ "sessionAlert", "otpSession" ], - "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateId" }, "in": "path" }, @@ -13386,8 +13092,7 @@ "zh-tw", "zu" ], - "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateLocale" }, "in": "query" } @@ -13418,7 +13123,6 @@ "x-appwrite": { "method": "variables", "group": "console", - "weight": 506, "cookies": false, "type": "", "demo": "console\/variables.md", @@ -13466,7 +13170,6 @@ "x-appwrite": { "method": "list", "group": "databases", - "weight": 704, "cookies": false, "type": "", "demo": "databases\/list.md", @@ -13585,7 +13288,6 @@ "x-appwrite": { "method": "create", "group": "databases", - "weight": 700, "cookies": false, "type": "", "demo": "databases\/create.md", @@ -13665,6 +13367,7 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -13702,7 +13405,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 774, "cookies": false, "type": "", "demo": "databases\/list-transactions.md", @@ -13770,7 +13472,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 770, "cookies": false, "type": "", "demo": "databases\/create-transaction.md", @@ -13808,6 +13509,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -13842,7 +13544,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 771, "cookies": false, "type": "", "demo": "databases\/get-transaction.md", @@ -13907,7 +13608,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 772, "cookies": false, "type": "", "demo": "databases\/update-transaction.md", @@ -13957,11 +13657,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -13986,7 +13688,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 773, "cookies": false, "type": "", "demo": "databases\/delete-transaction.md", @@ -14053,7 +13754,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 775, "cookies": false, "type": "", "demo": "databases\/create-operations.md", @@ -14103,6 +13803,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"\",\n\t \"collectionId\": \"\",\n\t \"documentId\": \"\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -14139,7 +13840,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 707, "cookies": false, "type": "", "demo": "databases\/list-usage.md", @@ -14243,7 +13943,6 @@ "x-appwrite": { "method": "get", "group": "databases", - "weight": 701, "cookies": false, "type": "", "demo": "databases\/get.md", @@ -14337,7 +14036,6 @@ "x-appwrite": { "method": "update", "group": "databases", - "weight": 702, "cookies": false, "type": "", "demo": "databases\/update.md", @@ -14423,6 +14121,7 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } } @@ -14447,7 +14146,6 @@ "x-appwrite": { "method": "delete", "group": "databases", - "weight": 703, "cookies": false, "type": "", "demo": "databases\/delete.md", @@ -14542,7 +14240,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 712, "cookies": false, "type": "", "demo": "databases\/list-collections.md", @@ -14642,7 +14339,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 708, "cookies": false, "type": "", "demo": "databases\/create-collection.md", @@ -14711,16 +14407,19 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false }, "attributes": { "type": "array", "description": "Array of attribute definitions to create. Each attribute should contain: key (string), type (string: string, integer, float, boolean, datetime), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", + "default": [], "x-example": null, "items": { "type": "object" @@ -14729,6 +14428,7 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of attribute keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", + "default": [], "x-example": null, "items": { "type": "object" @@ -14769,7 +14469,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 709, "cookies": false, "type": "", "demo": "databases\/get-collection.md", @@ -14844,7 +14543,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 710, "cookies": false, "type": "", "demo": "databases\/update-collection.md", @@ -14918,16 +14616,19 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this collection as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", + "default": false, "x-example": false } } @@ -14952,7 +14653,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 711, "cookies": false, "type": "", "demo": "databases\/delete-collection.md", @@ -15029,7 +14729,6 @@ "x-appwrite": { "method": "listAttributes", "group": "attributes", - "weight": 729, "cookies": false, "type": "", "demo": "databases\/list-attributes.md", @@ -15130,7 +14829,6 @@ "x-appwrite": { "method": "createBigIntAttribute", "group": "attributes", - "weight": 742, "cookies": false, "type": "", "demo": "databases\/create-big-int-attribute.md", @@ -15221,6 +14919,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -15258,7 +14957,6 @@ "x-appwrite": { "method": "updateBigIntAttribute", "group": "attributes", - "weight": 743, "cookies": false, "type": "", "demo": "databases\/update-big-int-attribute.md", @@ -15391,7 +15089,6 @@ "x-appwrite": { "method": "createBooleanAttribute", "group": "attributes", - "weight": 730, "cookies": false, "type": "", "demo": "databases\/create-boolean-attribute.md", @@ -15467,6 +15164,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -15504,7 +15202,6 @@ "x-appwrite": { "method": "updateBooleanAttribute", "group": "attributes", - "weight": 731, "cookies": false, "type": "", "demo": "databases\/update-boolean-attribute.md", @@ -15622,7 +15319,6 @@ "x-appwrite": { "method": "createDatetimeAttribute", "group": "attributes", - "weight": 732, "cookies": false, "type": "", "demo": "databases\/create-datetime-attribute.md", @@ -15699,6 +15395,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -15736,7 +15433,6 @@ "x-appwrite": { "method": "updateDatetimeAttribute", "group": "attributes", - "weight": 733, "cookies": false, "type": "", "demo": "databases\/update-datetime-attribute.md", @@ -15855,7 +15551,6 @@ "x-appwrite": { "method": "createEmailAttribute", "group": "attributes", - "weight": 734, "cookies": false, "type": "", "demo": "databases\/create-email-attribute.md", @@ -15932,6 +15627,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -15969,7 +15665,6 @@ "x-appwrite": { "method": "updateEmailAttribute", "group": "attributes", - "weight": 735, "cookies": false, "type": "", "demo": "databases\/update-email-attribute.md", @@ -16088,7 +15783,6 @@ "x-appwrite": { "method": "createEnumAttribute", "group": "attributes", - "weight": 736, "cookies": false, "type": "", "demo": "databases\/create-enum-attribute.md", @@ -16172,6 +15866,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -16210,7 +15905,6 @@ "x-appwrite": { "method": "updateEnumAttribute", "group": "attributes", - "weight": 737, "cookies": false, "type": "", "demo": "databases\/update-enum-attribute.md", @@ -16337,7 +16031,6 @@ "x-appwrite": { "method": "createFloatAttribute", "group": "attributes", - "weight": 738, "cookies": false, "type": "", "demo": "databases\/create-float-attribute.md", @@ -16428,6 +16121,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -16465,7 +16159,6 @@ "x-appwrite": { "method": "updateFloatAttribute", "group": "attributes", - "weight": 739, "cookies": false, "type": "", "demo": "databases\/update-float-attribute.md", @@ -16598,7 +16291,6 @@ "x-appwrite": { "method": "createIntegerAttribute", "group": "attributes", - "weight": 740, "cookies": false, "type": "", "demo": "databases\/create-integer-attribute.md", @@ -16689,6 +16381,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -16726,7 +16419,6 @@ "x-appwrite": { "method": "updateIntegerAttribute", "group": "attributes", - "weight": 741, "cookies": false, "type": "", "demo": "databases\/update-integer-attribute.md", @@ -16859,7 +16551,6 @@ "x-appwrite": { "method": "createIpAttribute", "group": "attributes", - "weight": 744, "cookies": false, "type": "", "demo": "databases\/create-ip-attribute.md", @@ -16935,6 +16626,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -16972,7 +16664,6 @@ "x-appwrite": { "method": "updateIpAttribute", "group": "attributes", - "weight": 745, "cookies": false, "type": "", "demo": "databases\/update-ip-attribute.md", @@ -17090,7 +16781,6 @@ "x-appwrite": { "method": "createLineAttribute", "group": "attributes", - "weight": 746, "cookies": false, "type": "", "demo": "databases\/create-line-attribute.md", @@ -17205,7 +16895,6 @@ "x-appwrite": { "method": "updateLineAttribute", "group": "attributes", - "weight": 747, "cookies": false, "type": "", "demo": "databases\/update-line-attribute.md", @@ -17329,7 +17018,6 @@ "x-appwrite": { "method": "createLongtextAttribute", "group": "attributes", - "weight": 764, "cookies": false, "type": "", "demo": "databases\/create-longtext-attribute.md", @@ -17401,11 +17089,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -17443,7 +17133,6 @@ "x-appwrite": { "method": "updateLongtextAttribute", "group": "attributes", - "weight": 765, "cookies": false, "type": "", "demo": "databases\/update-longtext-attribute.md", @@ -17557,7 +17246,6 @@ "x-appwrite": { "method": "createMediumtextAttribute", "group": "attributes", - "weight": 762, "cookies": false, "type": "", "demo": "databases\/create-mediumtext-attribute.md", @@ -17629,11 +17317,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -17671,7 +17361,6 @@ "x-appwrite": { "method": "updateMediumtextAttribute", "group": "attributes", - "weight": 763, "cookies": false, "type": "", "demo": "databases\/update-mediumtext-attribute.md", @@ -17785,7 +17474,6 @@ "x-appwrite": { "method": "createPointAttribute", "group": "attributes", - "weight": 748, "cookies": false, "type": "", "demo": "databases\/create-point-attribute.md", @@ -17900,7 +17588,6 @@ "x-appwrite": { "method": "updatePointAttribute", "group": "attributes", - "weight": 749, "cookies": false, "type": "", "demo": "databases\/update-point-attribute.md", @@ -18024,7 +17711,6 @@ "x-appwrite": { "method": "createPolygonAttribute", "group": "attributes", - "weight": 750, "cookies": false, "type": "", "demo": "databases\/create-polygon-attribute.md", @@ -18139,7 +17825,6 @@ "x-appwrite": { "method": "updatePolygonAttribute", "group": "attributes", - "weight": 751, "cookies": false, "type": "", "demo": "databases\/update-polygon-attribute.md", @@ -18263,7 +17948,6 @@ "x-appwrite": { "method": "createRelationshipAttribute", "group": "attributes", - "weight": 752, "cookies": false, "type": "", "demo": "databases\/create-relationship-attribute.md", @@ -18335,12 +18019,12 @@ "manyToMany", "oneToMany" ], - "x-enum-name": "RelationshipType", - "x-enum-keys": [] + "x-enum-name": "RelationshipType" }, "twoWay": { "type": "boolean", "description": "Is Two Way?", + "default": false, "x-example": false }, "key": { @@ -18358,14 +18042,14 @@ "onDelete": { "type": "string", "description": "Constraints option", + "default": "restrict", "x-example": "cascade", "enum": [ "cascade", "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" } }, "required": [ @@ -18402,7 +18086,6 @@ "x-appwrite": { "method": "updateRelationshipAttribute", "group": "attributes", - "weight": 753, "cookies": false, "type": "", "demo": "databases\/update-relationship-attribute.md", @@ -18477,8 +18160,7 @@ "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" }, "newKey": { "type": "string", @@ -18517,7 +18199,6 @@ "x-appwrite": { "method": "createStringAttribute", "group": "attributes", - "weight": 754, "cookies": false, "type": "", "demo": "databases\/create-string-attribute.md", @@ -18599,11 +18280,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -18642,7 +18325,6 @@ "x-appwrite": { "method": "updateStringAttribute", "group": "attributes", - "weight": 755, "cookies": false, "type": "", "demo": "databases\/update-string-attribute.md", @@ -18767,7 +18449,6 @@ "x-appwrite": { "method": "createTextAttribute", "group": "attributes", - "weight": 760, "cookies": false, "type": "", "demo": "databases\/create-text-attribute.md", @@ -18839,11 +18520,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -18881,7 +18564,6 @@ "x-appwrite": { "method": "updateTextAttribute", "group": "attributes", - "weight": 761, "cookies": false, "type": "", "demo": "databases\/update-text-attribute.md", @@ -18995,7 +18677,6 @@ "x-appwrite": { "method": "createUrlAttribute", "group": "attributes", - "weight": 756, "cookies": false, "type": "", "demo": "databases\/create-url-attribute.md", @@ -19072,6 +18753,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -19109,7 +18791,6 @@ "x-appwrite": { "method": "updateUrlAttribute", "group": "attributes", - "weight": 757, "cookies": false, "type": "", "demo": "databases\/update-url-attribute.md", @@ -19228,7 +18909,6 @@ "x-appwrite": { "method": "createVarcharAttribute", "group": "attributes", - "weight": 758, "cookies": false, "type": "", "demo": "databases\/create-varchar-attribute.md", @@ -19306,11 +18986,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -19349,7 +19031,6 @@ "x-appwrite": { "method": "updateVarcharAttribute", "group": "attributes", - "weight": 759, "cookies": false, "type": "", "demo": "databases\/update-varchar-attribute.md", @@ -19552,7 +19233,6 @@ "x-appwrite": { "method": "getAttribute", "group": "attributes", - "weight": 727, "cookies": false, "type": "", "demo": "databases\/get-attribute.md", @@ -19629,7 +19309,6 @@ "x-appwrite": { "method": "deleteAttribute", "group": "attributes", - "weight": 728, "cookies": false, "type": "", "demo": "databases\/delete-attribute.md", @@ -19715,7 +19394,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 918, "cookies": false, "type": "", "demo": "databases\/list-documents.md", @@ -19840,7 +19518,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 715, "cookies": false, "type": "", "demo": "databases\/create-document.md", @@ -19973,11 +19650,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -19992,6 +19671,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -20032,7 +19712,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 720, "cookies": false, "type": "", "demo": "databases\/upsert-documents.md", @@ -20169,7 +19848,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 718, "cookies": false, "type": "", "demo": "databases\/update-documents.md", @@ -20229,11 +19907,13 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -20274,7 +19954,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 722, "cookies": false, "type": "", "demo": "databases\/delete-documents.md", @@ -20334,6 +20013,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -20376,7 +20056,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 716, "cookies": false, "type": "", "demo": "databases\/get-document.md", @@ -20488,7 +20167,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 719, "cookies": false, "type": "", "demo": "databases\/upsert-document.md", @@ -20598,6 +20276,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required attributes of the document to be created or updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -20644,7 +20323,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 717, "cookies": false, "type": "", "demo": "databases\/update-document.md", @@ -20718,6 +20396,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -20757,7 +20436,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 721, "cookies": false, "type": "", "demo": "databases\/delete-document.md", @@ -20865,7 +20543,6 @@ "x-appwrite": { "method": "listDocumentLogs", "group": "logs", - "weight": 724, "cookies": false, "type": "", "demo": "databases\/list-document-logs.md", @@ -20963,7 +20640,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 726, "cookies": false, "type": "", "demo": "databases\/decrement-document-attribute.md", @@ -21046,6 +20722,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -21093,7 +20770,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 725, "cookies": false, "type": "", "demo": "databases\/increment-document-attribute.md", @@ -21176,6 +20852,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -21223,7 +20900,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 769, "cookies": false, "type": "", "demo": "databases\/list-indexes.md", @@ -21322,7 +20998,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 766, "cookies": false, "type": "", "demo": "databases\/create-index.md", @@ -21394,8 +21069,7 @@ "unique", "spatial" ], - "x-enum-name": "DatabasesIndexType", - "x-enum-keys": [] + "x-enum-name": "DatabasesIndexType" }, "attributes": { "type": "array", @@ -21408,6 +21082,7 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -21415,13 +21090,13 @@ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", + "default": [], "x-example": null, "items": { "type": "integer" @@ -21463,7 +21138,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 767, "cookies": false, "type": "", "demo": "databases\/get-index.md", @@ -21540,7 +21214,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 768, "cookies": false, "type": "", "demo": "databases\/delete-index.md", @@ -21626,7 +21299,6 @@ "x-appwrite": { "method": "listCollectionLogs", "group": "collections", - "weight": 713, "cookies": false, "type": "", "demo": "databases\/list-collection-logs.md", @@ -21714,7 +21386,6 @@ "x-appwrite": { "method": "getCollectionUsage", "group": null, - "weight": 714, "cookies": false, "type": "", "demo": "databases\/get-collection-usage.md", @@ -21811,7 +21482,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 705, "cookies": false, "type": "", "demo": "databases\/list-logs.md", @@ -21919,7 +21589,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 706, "cookies": false, "type": "", "demo": "databases\/get-usage.md", @@ -22036,7 +21705,6 @@ "x-appwrite": { "method": "list", "group": "documentsdb", - "weight": 920, "cookies": false, "type": "", "demo": "documentsdb\/list.md", @@ -22111,7 +21779,6 @@ "x-appwrite": { "method": "create", "group": "documentsdb", - "weight": 922, "cookies": false, "type": "", "demo": "documentsdb\/create.md", @@ -22155,6 +21822,7 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -22192,7 +21860,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 883, "cookies": false, "type": "", "demo": "documentsdb\/list-transactions.md", @@ -22260,7 +21927,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 879, "cookies": false, "type": "", "demo": "documentsdb\/create-transaction.md", @@ -22298,6 +21964,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -22332,7 +21999,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 880, "cookies": false, "type": "", "demo": "documentsdb\/get-transaction.md", @@ -22397,7 +22063,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 881, "cookies": false, "type": "", "demo": "documentsdb\/update-transaction.md", @@ -22447,11 +22112,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -22476,7 +22143,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 882, "cookies": false, "type": "", "demo": "documentsdb\/delete-transaction.md", @@ -22543,7 +22209,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 857, "cookies": false, "type": "", "demo": "documentsdb\/list-usage.md", @@ -22639,7 +22304,6 @@ "x-appwrite": { "method": "get", "group": "documentsdb", - "weight": 852, "cookies": false, "type": "", "demo": "documentsdb\/get.md", @@ -22700,7 +22364,6 @@ "x-appwrite": { "method": "update", "group": "documentsdb", - "weight": 853, "cookies": false, "type": "", "demo": "documentsdb\/update.md", @@ -22751,6 +22414,7 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -22778,7 +22442,6 @@ "x-appwrite": { "method": "delete", "group": "documentsdb", - "weight": 923, "cookies": false, "type": "", "demo": "documentsdb\/delete.md", @@ -22841,7 +22504,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 862, "cookies": false, "type": "", "demo": "documentsdb\/list-collections.md", @@ -22937,7 +22599,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 858, "cookies": false, "type": "", "demo": "documentsdb\/create-collection.md", @@ -23002,16 +22663,19 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false }, "attributes": { "type": "array", "description": "Array of attribute definitions to create. Each attribute should contain: key (string), type (string: string, integer, float, boolean, datetime, relationship), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", + "default": [], "x-example": null, "items": { "type": "object" @@ -23020,6 +22684,7 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of attribute keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", + "default": [], "x-example": null, "items": { "type": "object" @@ -23060,7 +22725,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 859, "cookies": false, "type": "", "demo": "documentsdb\/get-collection.md", @@ -23131,7 +22795,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 860, "cookies": false, "type": "", "demo": "documentsdb\/update-collection.md", @@ -23200,16 +22863,19 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this collection as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", + "default": false, "x-example": false } }, @@ -23237,7 +22903,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 861, "cookies": false, "type": "", "demo": "documentsdb\/delete-collection.md", @@ -23310,7 +22975,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 921, "cookies": false, "type": "", "demo": "documentsdb\/list-documents.md", @@ -23431,7 +23095,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 868, "cookies": false, "type": "", "demo": "documentsdb\/create-document.md", @@ -23550,11 +23213,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -23568,6 +23233,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -23607,7 +23273,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 873, "cookies": false, "type": "", "demo": "documentsdb\/upsert-documents.md", @@ -23735,7 +23400,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 871, "cookies": false, "type": "", "demo": "documentsdb\/update-documents.md", @@ -23791,11 +23455,13 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23835,7 +23501,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 875, "cookies": false, "type": "", "demo": "documentsdb\/delete-documents.md", @@ -23891,6 +23556,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23932,7 +23598,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 869, "cookies": false, "type": "", "demo": "documentsdb\/get-document.md", @@ -24040,7 +23705,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 872, "cookies": false, "type": "", "demo": "documentsdb\/upsert-document.md", @@ -24142,6 +23806,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -24186,7 +23851,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 870, "cookies": false, "type": "", "demo": "documentsdb\/update-document.md", @@ -24256,6 +23920,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -24293,7 +23958,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 874, "cookies": false, "type": "", "demo": "documentsdb\/delete-document.md", @@ -24396,7 +24060,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 878, "cookies": false, "type": "", "demo": "documentsdb\/decrement-document-attribute.md", @@ -24475,6 +24138,7 @@ "value": { "type": "number", "description": "Value to decrement the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -24520,7 +24184,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 877, "cookies": false, "type": "", "demo": "documentsdb\/increment-document-attribute.md", @@ -24599,6 +24262,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -24644,7 +24308,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 867, "cookies": false, "type": "", "demo": "documentsdb\/list-indexes.md", @@ -24739,7 +24402,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 864, "cookies": false, "type": "", "demo": "documentsdb\/create-index.md", @@ -24806,8 +24468,7 @@ "fulltext", "unique" ], - "x-enum-name": "DocumentsDBIndexType", - "x-enum-keys": [] + "x-enum-name": "DocumentsDBIndexType" }, "attributes": { "type": "array", @@ -24820,6 +24481,7 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -24827,13 +24489,13 @@ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", + "default": [], "x-example": null, "items": { "type": "integer" @@ -24875,7 +24537,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 865, "cookies": false, "type": "", "demo": "documentsdb\/get-index.md", @@ -24948,7 +24609,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 866, "cookies": false, "type": "", "demo": "documentsdb\/delete-index.md", @@ -25030,7 +24690,6 @@ "x-appwrite": { "method": "getCollectionUsage", "group": null, - "weight": 863, "cookies": false, "type": "", "demo": "documentsdb\/get-collection-usage.md", @@ -25123,7 +24782,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 856, "cookies": false, "type": "", "demo": "documentsdb\/get-usage.md", @@ -25215,7 +24873,7 @@ "tags": [ "domains" ], - "description": " List all domains registered for this project. This endpoint supports pagination.", + "description": "List all domains registered for this project. This endpoint supports pagination.", "responses": { "200": { "description": "Domains list", @@ -25232,7 +24890,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 991, "cookies": false, "type": "", "demo": "domains\/list.md", @@ -25287,7 +24944,7 @@ "tags": [ "domains" ], - "description": " Create a new domain. Before creating a domain, you need to ensure that your DNS provider is properly configured. After creating the domain, you can use the verification endpoint to check if the domain is ready to be used.", + "description": "Create a new domain. Before creating a domain, you need to ensure that your DNS provider is properly configured. After creating the domain, you can use the verification endpoint to check if the domain is ready to be used.", "responses": { "201": { "description": "Domain", @@ -25304,7 +24961,6 @@ "x-appwrite": { "method": "create", "group": null, - "weight": 986, "cookies": false, "type": "", "demo": "domains\/create.md", @@ -25360,7 +25016,7 @@ "tags": [ "domains" ], - "description": " Get the registration price for a domain name.", + "description": "Get the registration price for a domain name.", "responses": { "200": { "description": "DomainPrice", @@ -25377,7 +25033,6 @@ "x-appwrite": { "method": "getPrice", "group": null, - "weight": 989, "cookies": false, "type": "", "demo": "domains\/get-price.md", @@ -25433,8 +25088,7 @@ "renewal", "trade" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "DomainRegistrationType", "default": "new" }, "in": "query" @@ -25449,7 +25103,7 @@ "tags": [ "domains" ], - "description": " Initiate a domain purchase by providing registrant details and a payment method. Authorizes the payment and returns a `clientSecret`. If 3D Secure is required, use the `clientSecret` on the client to complete the authentication challenge. Once authentication is complete (or if none is needed), call the Update Purchase endpoint to capture the payment and finalize the purchase.", + "description": "Initiate a domain purchase by providing registrant details and a payment method. Authorizes the payment and returns a `clientSecret`. If 3D Secure is required, use the `clientSecret` on the client to complete the authentication challenge. Once authentication is complete (or if none is needed), call the Update Purchase endpoint to capture the payment and finalize the purchase.", "responses": { "201": { "description": "DomainPurchase", @@ -25466,7 +25120,6 @@ "x-appwrite": { "method": "createPurchase", "group": null, - "weight": 1036, "cookies": false, "type": "", "demo": "domains\/create-purchase.md", @@ -25534,22 +25187,26 @@ "addressLine3": { "type": "string", "description": "Additional address line for the registrant (line 3).", + "default": "", "x-example": "" }, "companyName": { "type": "string", "description": "Company or organization name for the registrant.", + "default": "", "x-example": "" }, "periodYears": { "type": "integer", "description": "Registration term in years (1-10).", + "default": 1, "x-example": 1, "format": "int32" }, "autoRenewal": { "type": "boolean", "description": "Whether the domain should renew automatically after purchase.", + "default": true, "x-example": false }, "paymentMethodId": { @@ -25581,7 +25238,7 @@ "tags": [ "domains" ], - "description": " Finalize a domain purchase initiated with Create Purchase. Verifies that any required 3D Secure authentication is complete, registers the domain, captures the payment, and provisions default DNS records. Returns a 402 error if authentication is still pending.", + "description": "Finalize a domain purchase initiated with Create Purchase. Verifies that any required 3D Secure authentication is complete, registers the domain, captures the payment, and provisions default DNS records. Returns a 402 error if authentication is still pending.", "responses": { "200": { "description": "DomainPurchase", @@ -25598,7 +25255,6 @@ "x-appwrite": { "method": "updatePurchase", "group": null, - "weight": 1037, "cookies": false, "type": "", "demo": "domains\/update-purchase.md", @@ -25660,7 +25316,7 @@ "tags": [ "domains" ], - "description": " List domain suggestions.", + "description": "List domain suggestions.", "responses": { "200": { "description": "Domain suggestions list", @@ -25677,7 +25333,6 @@ "x-appwrite": { "method": "listSuggestions", "group": null, - "weight": 1035, "cookies": false, "type": "", "demo": "domains\/list-suggestions.md", @@ -25744,8 +25399,7 @@ "premium", "suggestion" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "DomainSuggestionType" }, "in": "query" }, @@ -25779,7 +25433,7 @@ "tags": [ "domains" ], - "description": " Initiate a domain transfer-in by providing an authorization code, registrant details, and a payment method. Authorizes the payment and returns a `clientSecret`. If 3D Secure is required, use the `clientSecret` on the client to complete the authentication challenge. Once authentication is complete (or if none is needed), call the Update Transfer In endpoint to capture the payment and submit the transfer.", + "description": "Initiate a domain transfer-in by providing an authorization code, registrant details, and a payment method. Authorizes the payment and returns a `clientSecret`. If 3D Secure is required, use the `clientSecret` on the client to complete the authentication challenge. Once authentication is complete (or if none is needed), call the Update Transfer In endpoint to capture the payment and submit the transfer.", "responses": { "201": { "description": "DomainPurchase", @@ -25796,7 +25450,6 @@ "x-appwrite": { "method": "createTransferIn", "group": null, - "weight": 996, "cookies": false, "type": "", "demo": "domains\/create-transfer-in.md", @@ -25842,6 +25495,7 @@ "autoRenewal": { "type": "boolean", "description": "Whether the domain should renew automatically after transfer.", + "default": true, "x-example": false }, "paymentMethodId": { @@ -25869,7 +25523,7 @@ "tags": [ "domains" ], - "description": " Finalize a domain transfer-in initiated with Create Transfer In. Verifies that any required 3D Secure authentication is complete, submits the transfer with the authorization code, captures the payment, and sends a confirmation email. Returns a 402 error if authentication is still pending.", + "description": "Finalize a domain transfer-in initiated with Create Transfer In. Verifies that any required 3D Secure authentication is complete, submits the transfer with the authorization code, captures the payment, and sends a confirmation email. Returns a 402 error if authentication is still pending.", "responses": { "200": { "description": "DomainPurchase", @@ -25886,7 +25540,6 @@ "x-appwrite": { "method": "updateTransferIn", "group": null, - "weight": 997, "cookies": false, "type": "", "demo": "domains\/update-transfer-in.md", @@ -25948,7 +25601,7 @@ "tags": [ "domains" ], - "description": " Initiate a domain transfer-out by generating an authorization code for the specified domain. The returned `authCode` should be provided to the gaining provider to complete the transfer. If the domain has auto-renewal enabled, it will be automatically disabled as part of this operation.", + "description": "Initiate a domain transfer-out by generating an authorization code for the specified domain. The returned `authCode` should be provided to the gaining provider to complete the transfer. If the domain has auto-renewal enabled, it will be automatically disabled as part of this operation.", "responses": { "202": { "description": "domainTransferOut", @@ -25965,7 +25618,6 @@ "x-appwrite": { "method": "createTransferOut", "group": null, - "weight": 998, "cookies": false, "type": "", "demo": "domains\/create-transfer-out.md", @@ -26021,7 +25673,7 @@ "tags": [ "domains" ], - "description": " Get a domain by its unique ID.", + "description": "Get a domain by its unique ID.", "responses": { "200": { "description": "Domain", @@ -26038,7 +25690,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 988, "cookies": false, "type": "", "demo": "domains\/get.md", @@ -26089,7 +25740,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 987, "cookies": false, "type": "", "demo": "domains\/delete.md", @@ -26132,7 +25782,7 @@ "tags": [ "domains" ], - "description": " Enable or disable auto-renewal for a domain.", + "description": "Enable or disable auto-renewal for a domain.", "responses": { "200": { "description": "Domain", @@ -26149,7 +25799,6 @@ "x-appwrite": { "method": "updateAutoRenewal", "group": null, - "weight": 992, "cookies": false, "type": "", "demo": "domains\/update-auto-renewal.md", @@ -26211,7 +25860,7 @@ "tags": [ "domains" ], - "description": " Verify which NS records are used and update the domain accordingly. This will check the domain's\n nameservers and update the domain's status based on whether the nameservers match the expected\n Appwrite nameservers.", + "description": "Verify which NS records are used and update the domain accordingly. This will check the domain's\nnameservers and update the domain's status based on whether the nameservers match the expected\nAppwrite nameservers.", "responses": { "200": { "description": "Domain", @@ -26228,7 +25877,6 @@ "x-appwrite": { "method": "updateNameservers", "group": null, - "weight": 993, "cookies": false, "type": "", "demo": "domains\/update-nameservers.md", @@ -26271,7 +25919,7 @@ "tags": [ "domains" ], - "description": " List Google Workspace DNS records.", + "description": "List Google Workspace DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26288,7 +25936,6 @@ "x-appwrite": { "method": "getPresetGoogleWorkspace", "group": null, - "weight": 1024, "cookies": false, "type": "", "demo": "domains\/get-preset-google-workspace.md", @@ -26329,7 +25976,7 @@ "tags": [ "domains" ], - "description": " Add Google Workspace DNS records to the domain. This will create the required MX records \n for Google Workspace email hosting.", + "description": "Add Google Workspace DNS records to the domain. This will create the required MX records \nfor Google Workspace email hosting.", "responses": { "201": { "description": "DNS records list", @@ -26346,7 +25993,6 @@ "x-appwrite": { "method": "createPresetGoogleWorkspace", "group": null, - "weight": 1023, "cookies": false, "type": "", "demo": "domains\/create-preset-google-workspace.md", @@ -26389,7 +26035,7 @@ "tags": [ "domains" ], - "description": " List iCloud DNS records.", + "description": "List iCloud DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26406,7 +26052,6 @@ "x-appwrite": { "method": "getPresetICloud", "group": null, - "weight": 1034, "cookies": false, "type": "", "demo": "domains\/get-preset-i-cloud.md", @@ -26447,7 +26092,7 @@ "tags": [ "domains" ], - "description": " Add iCloud DNS records to the domain. This will create the required MX and SPF records\n for using iCloud email services with your domain.", + "description": "Add iCloud DNS records to the domain. This will create the required MX and SPF records\nfor using iCloud email services with your domain.", "responses": { "201": { "description": "DNS records list", @@ -26464,7 +26109,6 @@ "x-appwrite": { "method": "createPresetICloud", "group": null, - "weight": 1033, "cookies": false, "type": "", "demo": "domains\/create-preset-i-cloud.md", @@ -26507,7 +26151,7 @@ "tags": [ "domains" ], - "description": " List Mailgun DNS records.", + "description": "List Mailgun DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26524,7 +26168,6 @@ "x-appwrite": { "method": "getPresetMailgun", "group": null, - "weight": 1026, "cookies": false, "type": "", "demo": "domains\/get-preset-mailgun.md", @@ -26565,7 +26208,7 @@ "tags": [ "domains" ], - "description": " Add Mailgun DNS records to the domain. This endpoint will create the required DNS records \n for Mailgun in the specified domain.", + "description": "Add Mailgun DNS records to the domain. This endpoint will create the required DNS records \nfor Mailgun in the specified domain.", "responses": { "201": { "description": "DNS records list", @@ -26582,7 +26225,6 @@ "x-appwrite": { "method": "createPresetMailgun", "group": null, - "weight": 1025, "cookies": false, "type": "", "demo": "domains\/create-preset-mailgun.md", @@ -26625,7 +26267,7 @@ "tags": [ "domains" ], - "description": " List Outlook DNS records.", + "description": "List Outlook DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26642,7 +26284,6 @@ "x-appwrite": { "method": "getPresetOutlook", "group": null, - "weight": 1032, "cookies": false, "type": "", "demo": "domains\/get-preset-outlook.md", @@ -26683,7 +26324,7 @@ "tags": [ "domains" ], - "description": " Add Outlook DNS records to the domain. This will create the required MX records\n for setting up Outlook email hosting for your domain.", + "description": "Add Outlook DNS records to the domain. This will create the required MX records\nfor setting up Outlook email hosting for your domain.", "responses": { "201": { "description": "DNS records list", @@ -26700,7 +26341,6 @@ "x-appwrite": { "method": "createPresetOutlook", "group": null, - "weight": 1031, "cookies": false, "type": "", "demo": "domains\/create-preset-outlook.md", @@ -26743,7 +26383,7 @@ "tags": [ "domains" ], - "description": " List ProtonMail DNS records.", + "description": "List ProtonMail DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26760,7 +26400,6 @@ "x-appwrite": { "method": "getPresetProtonMail", "group": null, - "weight": 1030, "cookies": false, "type": "", "demo": "domains\/get-preset-proton-mail.md", @@ -26801,7 +26440,7 @@ "tags": [ "domains" ], - "description": " Add ProtonMail DNS records to the domain. This will create the required MX records\n for using ProtonMail with your custom domain.", + "description": "Add ProtonMail DNS records to the domain. This will create the required MX records\nfor using ProtonMail with your custom domain.", "responses": { "201": { "description": "DNS records list", @@ -26818,7 +26457,6 @@ "x-appwrite": { "method": "createPresetProtonMail", "group": null, - "weight": 1029, "cookies": false, "type": "", "demo": "domains\/create-preset-proton-mail.md", @@ -26861,7 +26499,7 @@ "tags": [ "domains" ], - "description": " List Zoho DNS records.", + "description": "List Zoho DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26878,7 +26516,6 @@ "x-appwrite": { "method": "getPresetZoho", "group": null, - "weight": 1028, "cookies": false, "type": "", "demo": "domains\/get-preset-zoho.md", @@ -26919,7 +26556,7 @@ "tags": [ "domains" ], - "description": " Add Zoho Mail DNS records to the domain. This will create the required MX records\n for setting up Zoho Mail on your domain.", + "description": "Add Zoho Mail DNS records to the domain. This will create the required MX records\nfor setting up Zoho Mail on your domain.", "responses": { "201": { "description": "DNS records list", @@ -26936,7 +26573,6 @@ "x-appwrite": { "method": "createPresetZoho", "group": null, - "weight": 1027, "cookies": false, "type": "", "demo": "domains\/create-preset-zoho.md", @@ -26979,7 +26615,7 @@ "tags": [ "domains" ], - "description": " List DNS records for a given domain. You can use this endpoint to list all the DNS records\n associated with your domain.", + "description": "List DNS records for a given domain. You can use this endpoint to list all the DNS records\nassociated with your domain.", "responses": { "200": { "description": "DNS records list", @@ -26996,7 +26632,6 @@ "x-appwrite": { "method": "listRecords", "group": null, - "weight": 1022, "cookies": false, "type": "", "demo": "domains\/list-records.md", @@ -27069,7 +26704,6 @@ "x-appwrite": { "method": "createRecordA", "group": null, - "weight": 1000, "cookies": false, "type": "", "demo": "domains\/create-record-a.md", @@ -27128,6 +26762,7 @@ "comment": { "type": "string", "description": "A comment explaining what this record is for.", + "default": "", "x-example": "" } }, @@ -27149,7 +26784,7 @@ "tags": [ "domains" ], - "description": " Update an existing A record for the given domain. This endpoint allows you to modify \n the properties of an A record including its name (subdomain), IPv4 address, TTL, \n and optional comment.", + "description": "Update an existing A record for the given domain. This endpoint allows you to modify \nthe properties of an A record including its name (subdomain), IPv4 address, TTL, \nand optional comment.", "responses": { "200": { "description": "DNSRecord", @@ -27166,7 +26801,6 @@ "x-appwrite": { "method": "updateRecordA", "group": null, - "weight": 1001, "cookies": false, "type": "", "demo": "domains\/update-record-a.md", @@ -27235,6 +26869,7 @@ "comment": { "type": "string", "description": "A comment explaining what this record is for.", + "default": "", "x-example": "" } }, @@ -27256,7 +26891,7 @@ "tags": [ "domains" ], - "description": " Create a new AAAA record for the given domain. This endpoint allows you to add a new IPv6 DNS record \n to your domain. The record will be used to point a hostname to an IPv6 address.", + "description": "Create a new AAAA record for the given domain. This endpoint allows you to add a new IPv6 DNS record \nto your domain. The record will be used to point a hostname to an IPv6 address.", "responses": { "201": { "description": "DNSRecord", @@ -27273,7 +26908,6 @@ "x-appwrite": { "method": "createRecordAAAA", "group": null, - "weight": 1002, "cookies": false, "type": "", "demo": "domains\/create-record-aaaa.md", @@ -27332,6 +26966,7 @@ "comment": { "type": "string", "description": "A comment explaining what this record is for.", + "default": "", "x-example": "" } }, @@ -27353,7 +26988,7 @@ "tags": [ "domains" ], - "description": " Update an existing AAAA record for the given domain. This endpoint allows you to modify\n the properties of an existing AAAA record, including its name (subdomain), IPv6 address,\n TTL, and optional comment.", + "description": "Update an existing AAAA record for the given domain. This endpoint allows you to modify\nthe properties of an existing AAAA record, including its name (subdomain), IPv6 address,\nTTL, and optional comment.", "responses": { "200": { "description": "DNSRecord", @@ -27370,7 +27005,6 @@ "x-appwrite": { "method": "updateRecordAAAA", "group": null, - "weight": 1003, "cookies": false, "type": "", "demo": "domains\/update-record-aaaa.md", @@ -27439,6 +27073,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -27460,7 +27095,7 @@ "tags": [ "domains" ], - "description": " Create a new ALIAS record for the given domain. This record type can be used to point your domain \n to another domain name that will serve as an alias. This is particularly useful when you want to \n map your domain to a target domain that may change its IP address.", + "description": "Create a new ALIAS record for the given domain. This record type can be used to point your domain \nto another domain name that will serve as an alias. This is particularly useful when you want to \nmap your domain to a target domain that may change its IP address.", "responses": { "201": { "description": "DNSRecord", @@ -27477,7 +27112,6 @@ "x-appwrite": { "method": "createRecordAlias", "group": null, - "weight": 1004, "cookies": false, "type": "", "demo": "domains\/create-record-alias.md", @@ -27536,6 +27170,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -27557,7 +27192,7 @@ "tags": [ "domains" ], - "description": " Update an existing ALIAS record for the specified domain. This endpoint allows you to modify\n the properties of an existing ALIAS record including its name, target domain, TTL, and comment.\n \n The ALIAS record type is similar to a CNAME record but can be used at the zone apex (root domain).\n It provides a way to map one domain name to another.", + "description": "Update an existing ALIAS record for the specified domain. This endpoint allows you to modify\nthe properties of an existing ALIAS record including its name, target domain, TTL, and comment.\n \nThe ALIAS record type is similar to a CNAME record but can be used at the zone apex (root domain).\nIt provides a way to map one domain name to another.", "responses": { "200": { "description": "DNSRecord", @@ -27574,7 +27209,6 @@ "x-appwrite": { "method": "updateRecordAlias", "group": null, - "weight": 1005, "cookies": false, "type": "", "demo": "domains\/update-record-alias.md", @@ -27643,6 +27277,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -27681,7 +27316,6 @@ "x-appwrite": { "method": "createRecordCAA", "group": null, - "weight": 1006, "cookies": false, "type": "", "demo": "domains\/create-record-caa.md", @@ -27740,6 +27374,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -27761,7 +27396,7 @@ "tags": [ "domains" ], - "description": " Update an existing CAA record for the given domain. A CAA (Certification Authority Authorization) \n record is used to specify which certificate authorities (CAs) are authorized to issue certificates \n for a domain.", + "description": "Update an existing CAA record for the given domain. A CAA (Certification Authority Authorization) \nrecord is used to specify which certificate authorities (CAs) are authorized to issue certificates \nfor a domain.", "responses": { "200": { "description": "DNSRecord", @@ -27778,7 +27413,6 @@ "x-appwrite": { "method": "updateRecordCAA", "group": null, - "weight": 1007, "cookies": false, "type": "", "demo": "domains\/update-record-caa.md", @@ -27847,6 +27481,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -27868,7 +27503,7 @@ "tags": [ "domains" ], - "description": " Create a new CNAME record for the given domain.\n \n A CNAME record maps a subdomain to another domain name, allowing you to create aliases \n for your domain. For example, you can create a CNAME record to point 'blog.example.com' \n to 'example.wordpress.com'.", + "description": "Create a new CNAME record for the given domain.\n \nA CNAME record maps a subdomain to another domain name, allowing you to create aliases \nfor your domain. For example, you can create a CNAME record to point 'blog.example.com' \nto 'example.wordpress.com'.", "responses": { "201": { "description": "DNSRecord", @@ -27885,7 +27520,6 @@ "x-appwrite": { "method": "createRecordCNAME", "group": null, - "weight": 1008, "cookies": false, "type": "", "demo": "domains\/create-record-cname.md", @@ -27944,6 +27578,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -27965,7 +27600,7 @@ "tags": [ "domains" ], - "description": " Update an existing CNAME record for the given domain.", + "description": "Update an existing CNAME record for the given domain.", "responses": { "200": { "description": "DNSRecord", @@ -27982,7 +27617,6 @@ "x-appwrite": { "method": "updateRecordCNAME", "group": null, - "weight": 1009, "cookies": false, "type": "", "demo": "domains\/update-record-cname.md", @@ -28051,6 +27685,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28072,7 +27707,7 @@ "tags": [ "domains" ], - "description": " Create a new HTTPS record for the given domain. This record is used to configure HTTPS \n settings for your domain, enabling secure communication over SSL\/TLS.", + "description": "Create a new HTTPS record for the given domain. This record is used to configure HTTPS \nsettings for your domain, enabling secure communication over SSL\/TLS.", "responses": { "201": { "description": "DNSRecord", @@ -28089,7 +27724,6 @@ "x-appwrite": { "method": "createRecordHTTPS", "group": null, - "weight": 1010, "cookies": false, "type": "", "demo": "domains\/create-record-https.md", @@ -28148,6 +27782,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28186,7 +27821,6 @@ "x-appwrite": { "method": "updateRecordHTTPS", "group": null, - "weight": 1011, "cookies": false, "type": "", "demo": "domains\/update-record-https.md", @@ -28255,6 +27889,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28276,7 +27911,7 @@ "tags": [ "domains" ], - "description": " Create a new MX record for the given domain. MX records are used to define the mail servers responsible \n for accepting email messages for the domain. Multiple MX records can be created with different priorities.\n The priority parameter determines the order in which mail servers are used, with lower values indicating \n higher priority.", + "description": "Create a new MX record for the given domain. MX records are used to define the mail servers responsible \nfor accepting email messages for the domain. Multiple MX records can be created with different priorities.\nThe priority parameter determines the order in which mail servers are used, with lower values indicating \nhigher priority.", "responses": { "201": { "description": "DNSRecord", @@ -28293,7 +27928,6 @@ "x-appwrite": { "method": "createRecordMX", "group": null, - "weight": 1012, "cookies": false, "type": "", "demo": "domains\/create-record-mx.md", @@ -28358,6 +27992,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28380,7 +28015,7 @@ "tags": [ "domains" ], - "description": " Update an existing MX record for the given domain.", + "description": "Update an existing MX record for the given domain.", "responses": { "200": { "description": "DNSRecord", @@ -28397,7 +28032,6 @@ "x-appwrite": { "method": "updateRecordMX", "group": null, - "weight": 1013, "cookies": false, "type": "", "demo": "domains\/update-record-mx.md", @@ -28472,6 +28106,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28494,7 +28129,7 @@ "tags": [ "domains" ], - "description": " Create a new NS record for the given domain. NS records specify the nameservers that are used \n to resolve the domain name to IP addresses. Each domain can have multiple NS records.", + "description": "Create a new NS record for the given domain. NS records specify the nameservers that are used \nto resolve the domain name to IP addresses. Each domain can have multiple NS records.", "responses": { "201": { "description": "DNSRecord", @@ -28511,7 +28146,6 @@ "x-appwrite": { "method": "createRecordNS", "group": null, - "weight": 1014, "cookies": false, "type": "", "demo": "domains\/create-record-ns.md", @@ -28570,6 +28204,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28591,7 +28226,7 @@ "tags": [ "domains" ], - "description": " Update an existing NS record for the given domain. This endpoint allows you to modify \n the properties of an NS (nameserver) record associated with your domain. You can update \n the record name (subdomain), target nameserver value, TTL, and add or modify comments \n for better record management.", + "description": "Update an existing NS record for the given domain. This endpoint allows you to modify \nthe properties of an NS (nameserver) record associated with your domain. You can update \nthe record name (subdomain), target nameserver value, TTL, and add or modify comments \nfor better record management.", "responses": { "200": { "description": "DNSRecord", @@ -28608,7 +28243,6 @@ "x-appwrite": { "method": "updateRecordNS", "group": null, - "weight": 1015, "cookies": false, "type": "", "demo": "domains\/update-record-ns.md", @@ -28677,6 +28311,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28698,7 +28333,7 @@ "tags": [ "domains" ], - "description": " Create a new SRV record for the given domain. SRV records are used to define the location \n of servers for specific services. For example, they can be used to specify which server \n handles a specific service like SIP or XMPP for the domain.", + "description": "Create a new SRV record for the given domain. SRV records are used to define the location \nof servers for specific services. For example, they can be used to specify which server \nhandles a specific service like SIP or XMPP for the domain.", "responses": { "201": { "description": "DNSRecord", @@ -28715,7 +28350,6 @@ "x-appwrite": { "method": "createRecordSRV", "group": null, - "weight": 1016, "cookies": false, "type": "", "demo": "domains\/create-record-srv.md", @@ -28792,6 +28426,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28816,7 +28451,7 @@ "tags": [ "domains" ], - "description": " Update an existing SRV record for the given domain.\n \n Required parameters:\n - domainId: Domain unique ID\n - recordId: DNS record unique ID\n - name: Record name (service name)\n - value: Target hostname for this SRV record\n - ttl: Time to live, in seconds\n - priority: Record priority\n - weight: Record weight\n - port: Port number for the service\n \n Optional parameters:\n - comment: A comment for this record", + "description": "Update an existing SRV record for the given domain.\n \nRequired parameters:\n- domainId: Domain unique ID\n- recordId: DNS record unique ID\n- name: Record name (service name)\n- value: Target hostname for this SRV record\n- ttl: Time to live, in seconds\n- priority: Record priority\n- weight: Record weight\n- port: Port number for the service\n \nOptional parameters:\n- comment: A comment for this record", "responses": { "200": { "description": "DNSRecord", @@ -28833,7 +28468,6 @@ "x-appwrite": { "method": "updateRecordSRV", "group": null, - "weight": 1017, "cookies": false, "type": "", "demo": "domains\/update-record-srv.md", @@ -28920,6 +28554,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -28944,7 +28579,7 @@ "tags": [ "domains" ], - "description": " Create a new TXT record for the given domain. TXT records can be used \n to provide additional information about your domain, such as domain \n verification records, SPF records, or DKIM records.", + "description": "Create a new TXT record for the given domain. TXT records can be used \nto provide additional information about your domain, such as domain \nverification records, SPF records, or DKIM records.", "responses": { "201": { "description": "DNSRecord", @@ -28961,7 +28596,6 @@ "x-appwrite": { "method": "createRecordTXT", "group": null, - "weight": 1018, "cookies": false, "type": "", "demo": "domains\/create-record-txt.md", @@ -29009,6 +28643,7 @@ "value": { "type": "string", "description": "TXT record value.", + "default": "", "x-example": "" }, "ttl": { @@ -29020,6 +28655,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -29040,7 +28676,7 @@ "tags": [ "domains" ], - "description": " Update an existing TXT record for the given domain.\n \n Update the TXT record details for a specific domain by providing the domain ID,\n record ID, and the new record configuration including name, value, TTL, and an optional comment.", + "description": "Update an existing TXT record for the given domain.\n \nUpdate the TXT record details for a specific domain by providing the domain ID,\nrecord ID, and the new record configuration including name, value, TTL, and an optional comment.", "responses": { "200": { "description": "DNSRecord", @@ -29057,7 +28693,6 @@ "x-appwrite": { "method": "updateRecordTXT", "group": null, - "weight": 1019, "cookies": false, "type": "", "demo": "domains\/update-record-txt.md", @@ -29126,6 +28761,7 @@ "comment": { "type": "string", "description": "A comment for this record.", + "default": "", "x-example": "" } }, @@ -29147,7 +28783,7 @@ "tags": [ "domains" ], - "description": " Get a single DNS record for a given domain by record ID.\n \n This endpoint allows you to retrieve a specific DNS record associated with a domain\n using its unique identifier. The record contains information about the DNS configuration\n such as type, value, and TTL settings.", + "description": "Get a single DNS record for a given domain by record ID.\n \nThis endpoint allows you to retrieve a specific DNS record associated with a domain\nusing its unique identifier. The record contains information about the DNS configuration\nsuch as type, value, and TTL settings.", "responses": { "200": { "description": "DNSRecord", @@ -29164,7 +28800,6 @@ "x-appwrite": { "method": "getRecord", "group": null, - "weight": 1021, "cookies": false, "type": "", "demo": "domains\/get-record.md", @@ -29215,7 +28850,7 @@ "tags": [ "domains" ], - "description": " Delete a DNS record for the given domain. This endpoint allows you to delete an existing DNS record \n from a specific domain.", + "description": "Delete a DNS record for the given domain. This endpoint allows you to delete an existing DNS record \nfrom a specific domain.", "responses": { "204": { "description": "No content" @@ -29225,7 +28860,6 @@ "x-appwrite": { "method": "deleteRecord", "group": null, - "weight": 1020, "cookies": false, "type": "", "demo": "domains\/delete-record.md", @@ -29278,7 +28912,7 @@ "tags": [ "domains" ], - "description": " Update the team ID for a specific domain. This endpoint requires admin access.\n \n Updating the team ID will transfer ownership and access control of the domain\n and all its DNS records to the new team.", + "description": "Update the team ID for a specific domain. This endpoint requires admin access.\n \nUpdating the team ID will transfer ownership and access control of the domain\nand all its DNS records to the new team.", "responses": { "200": { "description": "Domain", @@ -29295,7 +28929,6 @@ "x-appwrite": { "method": "updateTeam", "group": null, - "weight": 995, "cookies": false, "type": "", "demo": "domains\/update-team.md", @@ -29357,7 +28990,7 @@ "tags": [ "domains" ], - "description": " Retrieve the current transfer status for a domain. Returns the status, an optional reason, and a timestamp of the last status change.", + "description": "Retrieve the current transfer status for a domain. Returns the status, an optional reason, and a timestamp of the last status change.", "responses": { "200": { "description": "domainTransferStatus", @@ -29374,7 +29007,6 @@ "x-appwrite": { "method": "getTransferStatus", "group": null, - "weight": 999, "cookies": false, "type": "", "demo": "domains\/get-transfer-status.md", @@ -29417,7 +29049,7 @@ "tags": [ "domains" ], - "description": " Retrieve the DNS zone file for the given domain. This endpoint will return the DNS\n zone file in a standardized format that can be used to configure DNS servers.", + "description": "Retrieve the DNS zone file for the given domain. This endpoint will return the DNS\nzone file in a standardized format that can be used to configure DNS servers.", "responses": { "200": { "description": "Text", @@ -29434,7 +29066,6 @@ "x-appwrite": { "method": "getZone", "group": null, - "weight": 990, "cookies": false, "type": "", "demo": "domains\/get-zone.md", @@ -29492,7 +29123,6 @@ "x-appwrite": { "method": "updateZone", "group": null, - "weight": 994, "cookies": false, "type": "", "demo": "domains\/update-zone.md", @@ -29571,7 +29201,6 @@ "x-appwrite": { "method": "list", "group": "functions", - "weight": 425, "cookies": false, "type": "", "demo": "functions\/list.md", @@ -29656,7 +29285,6 @@ "x-appwrite": { "method": "create", "group": "functions", - "weight": 969, "cookies": false, "type": "", "demo": "functions\/create.md", @@ -29753,6 +29381,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -29792,14 +29421,15 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "execute": { "type": "array", "description": "An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", + "default": [], "x-example": "[\"any\"]", "items": { "type": "string" @@ -29808,6 +29438,7 @@ "events": { "type": "array", "description": "Events list. Maximum of 100 events are allowed.", + "default": [], "x-example": null, "items": { "type": "string" @@ -29816,37 +29447,44 @@ "schedule": { "type": "string", "description": "Schedule CRON syntax.", + "default": "", "x-example": null }, "timeout": { "type": "integer", "description": "Function maximum execution time in seconds.", + "default": 15, "x-example": 1, "format": "int32" }, "enabled": { "type": "boolean", "description": "Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.", + "default": true, "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, executions will exclude logs and errors, and will be slightly faster.", + "default": true, "x-example": false }, "entrypoint": { "type": "string", "description": "Entrypoint File. This path is relative to the \"providerRootDirectory\".", + "default": "", "x-example": "" }, "commands": { "type": "string", "description": "Build Commands.", + "default": "", "x-example": "" }, "scopes": { "type": "array", "description": "List of scopes allowed for API key auto-generated for every execution. Maximum of 100 scopes are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -29946,48 +29584,73 @@ "events.read", "usage.read" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", + "default": "", "x-example": "" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the function.", + "default": "", "x-example": "" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the function.", + "default": "", "x-example": "" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.", + "default": false, "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to function code in the linked repo.", + "default": "", "x-example": "" }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, "buildSpecification": { "type": "string", "description": "Build specification for the function deployments.", + "default": {}, "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the function executions.", + "default": {}, "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", + "default": 0, "x-example": 0, "format": "int32" } @@ -30027,7 +29690,6 @@ "x-appwrite": { "method": "listRuntimes", "group": "runtimes", - "weight": 427, "cookies": false, "type": "", "demo": "functions\/list-runtimes.md", @@ -30077,7 +29739,6 @@ "x-appwrite": { "method": "listSpecifications", "group": "runtimes", - "weight": 428, "cookies": false, "type": "", "demo": "functions\/list-specifications.md", @@ -30127,7 +29788,6 @@ "x-appwrite": { "method": "listTemplates", "group": "templates", - "weight": 451, "cookies": false, "type": "", "demo": "functions\/list-templates.md", @@ -30211,6 +29871,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -30250,10 +29911,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "default": [] }, @@ -30276,8 +29937,7 @@ "dev-tools", "auth" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionTemplateUseCase" }, "default": [] }, @@ -30345,7 +30005,6 @@ "x-appwrite": { "method": "getTemplate", "group": "templates", - "weight": 450, "cookies": false, "type": "", "demo": "functions\/get-template.md", @@ -30405,7 +30064,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 444, "cookies": false, "type": "", "demo": "functions\/list-usage.md", @@ -30477,7 +30135,6 @@ "x-appwrite": { "method": "get", "group": "functions", - "weight": 423, "cookies": false, "type": "", "demo": "functions\/get.md", @@ -30537,7 +30194,6 @@ "x-appwrite": { "method": "update", "group": "functions", - "weight": 970, "cookies": false, "type": "", "demo": "functions\/update.md", @@ -30641,6 +30297,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -30680,14 +30337,15 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "execute": { "type": "array", "description": "An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", + "default": [], "x-example": "[\"any\"]", "items": { "type": "string" @@ -30696,6 +30354,7 @@ "events": { "type": "array", "description": "Events list. Maximum of 100 events are allowed.", + "default": [], "x-example": null, "items": { "type": "string" @@ -30704,37 +30363,44 @@ "schedule": { "type": "string", "description": "Schedule CRON syntax.", + "default": "", "x-example": null }, "timeout": { "type": "integer", "description": "Maximum execution time in seconds.", + "default": 15, "x-example": 1, "format": "int32" }, "enabled": { "type": "boolean", "description": "Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.", + "default": true, "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, executions will exclude logs and errors, and will be slightly faster.", + "default": true, "x-example": false }, "entrypoint": { "type": "string", "description": "Entrypoint File. This path is relative to the \"providerRootDirectory\".", + "default": "", "x-example": "" }, "commands": { "type": "string", "description": "Build Commands.", + "default": "", "x-example": "" }, "scopes": { "type": "array", "description": "List of scopes allowed for API Key auto-generated for every execution. Maximum of 100 scopes are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -30834,13 +30500,13 @@ "events.read", "usage.read" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Controle System) deployment.", + "default": "", "x-example": "" }, "providerRepositoryId": { @@ -30852,31 +30518,55 @@ "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the function", + "default": "", "x-example": "" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.", + "default": false, "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to function code in the linked repo.", + "default": "", "x-example": "" }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "x-example": null, + "items": { + "type": "string" + }, + "x-nullable": true + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "x-example": null, + "items": { + "type": "string" + }, + "x-nullable": true + }, "buildSpecification": { "type": "string", "description": "Build specification for the function deployments.", + "default": {}, "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the function executions.", + "default": {}, "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", + "default": 0, "x-example": 0, "format": "int32" } @@ -30905,7 +30595,6 @@ "x-appwrite": { "method": "delete", "group": "functions", - "weight": 426, "cookies": false, "type": "", "demo": "functions\/delete.md", @@ -30967,7 +30656,6 @@ "x-appwrite": { "method": "updateFunctionDeployment", "group": "functions", - "weight": 431, "cookies": false, "type": "", "demo": "functions\/update-function-deployment.md", @@ -31048,7 +30736,6 @@ "x-appwrite": { "method": "listDeployments", "group": "deployments", - "weight": 432, "cookies": false, "type": "", "demo": "functions\/list-deployments.md", @@ -31143,7 +30830,6 @@ "x-appwrite": { "method": "createDeployment", "group": "deployments", - "weight": 429, "cookies": false, "type": "upload", "demo": "functions\/create-deployment.md", @@ -31243,7 +30929,6 @@ "x-appwrite": { "method": "createDuplicateDeployment", "group": "deployments", - "weight": 437, "cookies": false, "type": "", "demo": "functions\/create-duplicate-deployment.md", @@ -31293,6 +30978,7 @@ "buildId": { "type": "string", "description": "Build unique ID.", + "default": "", "x-example": "" } }, @@ -31329,7 +31015,6 @@ "x-appwrite": { "method": "createTemplateDeployment", "group": "deployments", - "weight": 434, "cookies": false, "type": "", "demo": "functions\/create-template-deployment.md", @@ -31395,8 +31080,7 @@ "branch", "tag" ], - "x-enum-name": "TemplateReferenceType", - "x-enum-keys": [] + "x-enum-name": "TemplateReferenceType" }, "reference": { "type": "string", @@ -31406,6 +31090,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -31446,7 +31131,6 @@ "x-appwrite": { "method": "createVcsDeployment", "group": "deployments", - "weight": 435, "cookies": false, "type": "", "demo": "functions\/create-vcs-deployment.md", @@ -31496,8 +31180,7 @@ "branch", "commit" ], - "x-enum-name": "VCSReferenceType", - "x-enum-keys": [] + "x-enum-name": "VCSReferenceType" }, "reference": { "type": "string", @@ -31507,6 +31190,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -31544,7 +31228,6 @@ "x-appwrite": { "method": "getDeployment", "group": "deployments", - "weight": 430, "cookies": false, "type": "", "demo": "functions\/get-deployment.md", @@ -31607,7 +31290,6 @@ "x-appwrite": { "method": "deleteDeployment", "group": "deployments", - "weight": 433, "cookies": false, "type": "", "demo": "functions\/delete-deployment.md", @@ -31672,7 +31354,6 @@ "x-appwrite": { "method": "getDeploymentDownload", "group": "deployments", - "weight": 436, "cookies": false, "type": "location", "demo": "functions\/get-deployment-download.md", @@ -31731,7 +31412,6 @@ "output" ], "x-enum-name": "DeploymentDownloadType", - "x-enum-keys": [], "default": "source" }, "in": "query" @@ -31763,7 +31443,6 @@ "x-appwrite": { "method": "updateDeploymentStatus", "group": "deployments", - "weight": 438, "cookies": false, "type": "", "demo": "functions\/update-deployment-status.md", @@ -31835,7 +31514,6 @@ "x-appwrite": { "method": "listExecutions", "group": "executions", - "weight": 441, "cookies": false, "type": "", "demo": "functions\/list-executions.md", @@ -31926,7 +31604,6 @@ "x-appwrite": { "method": "createExecution", "group": "executions", - "weight": 439, "cookies": false, "type": "", "demo": "functions\/create-execution.md", @@ -31978,21 +31655,25 @@ "body": { "type": "string", "description": "HTTP body of execution. Default value is empty string.", + "default": "", "x-example": "" }, "async": { "type": "boolean", "description": "Execute code in the background. Default value is false.", + "default": false, "x-example": false }, "path": { "type": "string", "description": "HTTP path of execution. Path can include query params. Default value is \/", + "default": "\/", "x-example": "" }, "method": { "type": "string", "description": "HTTP method of execution. Default value is POST.", + "default": "POST", "x-example": "GET", "enum": [ "GET", @@ -32003,12 +31684,12 @@ "OPTIONS", "HEAD" ], - "x-enum-name": "ExecutionMethod", - "x-enum-keys": [] + "x-enum-name": "ExecutionMethod" }, "headers": { "type": "object", "description": "HTTP headers of execution. Defaults to empty.", + "default": {}, "x-example": "{}" }, "scheduledAt": { @@ -32048,7 +31729,6 @@ "x-appwrite": { "method": "getExecution", "group": "executions", - "weight": 440, "cookies": false, "type": "", "demo": "functions\/get-execution.md", @@ -32118,7 +31798,6 @@ "x-appwrite": { "method": "deleteExecution", "group": "executions", - "weight": 442, "cookies": false, "type": "", "demo": "functions\/delete-execution.md", @@ -32193,7 +31872,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 443, "cookies": false, "type": "", "demo": "functions\/get-usage.md", @@ -32275,7 +31953,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 447, "cookies": false, "type": "", "demo": "functions\/list-variables.md", @@ -32359,7 +32036,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 971, "cookies": false, "type": "", "demo": "functions\/create-variable.md", @@ -32419,6 +32095,7 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only functions can read them during build and runtime.", + "default": true, "x-example": false } }, @@ -32457,7 +32134,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 446, "cookies": false, "type": "", "demo": "functions\/get-variable.md", @@ -32527,7 +32203,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 448, "cookies": false, "type": "", "demo": "functions\/update-variable.md", @@ -32619,7 +32294,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 449, "cookies": false, "type": "", "demo": "functions\/delete-variable.md", @@ -32691,7 +32365,6 @@ "x-appwrite": { "method": "query", "group": "graphql", - "weight": 116, "cookies": false, "type": "graphql", "demo": "graphql\/query.md", @@ -32746,7 +32419,6 @@ "x-appwrite": { "method": "mutation", "group": "graphql", - "weight": 115, "cookies": false, "type": "graphql", "demo": "graphql\/mutation.md", @@ -32801,7 +32473,6 @@ "x-appwrite": { "method": "get", "group": "health", - "weight": 452, "cookies": false, "type": "", "demo": "health\/get.md", @@ -32852,7 +32523,6 @@ "x-appwrite": { "method": "getAntivirus", "group": "health", - "weight": 461, "cookies": false, "type": "", "demo": "health\/get-antivirus.md", @@ -32903,7 +32573,6 @@ "x-appwrite": { "method": "getCache", "group": "health", - "weight": 455, "cookies": false, "type": "", "demo": "health\/get-cache.md", @@ -32954,7 +32623,6 @@ "x-appwrite": { "method": "getCertificate", "group": "health", - "weight": 458, "cookies": false, "type": "", "demo": "health\/get-certificate.md", @@ -33016,7 +32684,6 @@ "x-appwrite": { "method": "getConsolePausing", "group": null, - "weight": 1115, "cookies": false, "type": "", "demo": "health\/get-console-pausing.md", @@ -33091,7 +32758,6 @@ "x-appwrite": { "method": "getDB", "group": "health", - "weight": 454, "cookies": false, "type": "", "demo": "health\/get-db.md", @@ -33142,7 +32808,6 @@ "x-appwrite": { "method": "getPubSub", "group": "health", - "weight": 456, "cookies": false, "type": "", "demo": "health\/get-pub-sub.md", @@ -33193,7 +32858,6 @@ "x-appwrite": { "method": "getQueueAudits", "group": "queue", - "weight": 462, "cookies": false, "type": "", "demo": "health\/get-queue-audits.md", @@ -33257,7 +32921,6 @@ "x-appwrite": { "method": "getQueueBillingProjectAggregation", "group": null, - "weight": 1111, "cookies": false, "type": "", "demo": "health\/get-queue-billing-project-aggregation.md", @@ -33321,7 +32984,6 @@ "x-appwrite": { "method": "getQueueBillingTeamAggregation", "group": null, - "weight": 1110, "cookies": false, "type": "", "demo": "health\/get-queue-billing-team-aggregation.md", @@ -33385,7 +33047,6 @@ "x-appwrite": { "method": "getQueueBuilds", "group": "queue", - "weight": 466, "cookies": false, "type": "", "demo": "health\/get-queue-builds.md", @@ -33449,7 +33110,6 @@ "x-appwrite": { "method": "getQueuePriorityBuilds", "group": null, - "weight": 1112, "cookies": false, "type": "", "demo": "health\/get-queue-priority-builds.md", @@ -33513,7 +33173,6 @@ "x-appwrite": { "method": "getQueueCertificates", "group": "queue", - "weight": 465, "cookies": false, "type": "", "demo": "health\/get-queue-certificates.md", @@ -33577,7 +33236,6 @@ "x-appwrite": { "method": "getQueueDatabases", "group": "queue", - "weight": 467, "cookies": false, "type": "", "demo": "health\/get-queue-databases.md", @@ -33652,7 +33310,6 @@ "x-appwrite": { "method": "getQueueDeletes", "group": "queue", - "weight": 468, "cookies": false, "type": "", "demo": "health\/get-queue-deletes.md", @@ -33716,7 +33373,6 @@ "x-appwrite": { "method": "getFailedJobs", "group": "queue", - "weight": 475, "cookies": false, "type": "", "demo": "health\/get-failed-jobs.md", @@ -33764,8 +33420,7 @@ "v1-messaging", "v1-migrations" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "HealthQueueName" }, "in": "path" }, @@ -33807,7 +33462,6 @@ "x-appwrite": { "method": "getQueueFunctions", "group": "queue", - "weight": 472, "cookies": false, "type": "", "demo": "health\/get-queue-functions.md", @@ -33871,7 +33525,6 @@ "x-appwrite": { "method": "getQueueLogs", "group": "queue", - "weight": 464, "cookies": false, "type": "", "demo": "health\/get-queue-logs.md", @@ -33935,7 +33588,6 @@ "x-appwrite": { "method": "getQueueMails", "group": "queue", - "weight": 469, "cookies": false, "type": "", "demo": "health\/get-queue-mails.md", @@ -33999,7 +33651,6 @@ "x-appwrite": { "method": "getQueueMessaging", "group": "queue", - "weight": 470, "cookies": false, "type": "", "demo": "health\/get-queue-messaging.md", @@ -34063,7 +33714,6 @@ "x-appwrite": { "method": "getQueueMigrations", "group": "queue", - "weight": 471, "cookies": false, "type": "", "demo": "health\/get-queue-migrations.md", @@ -34127,7 +33777,6 @@ "x-appwrite": { "method": "getQueueRegionManager", "group": null, - "weight": 1113, "cookies": false, "type": "", "demo": "health\/get-queue-region-manager.md", @@ -34191,7 +33840,6 @@ "x-appwrite": { "method": "getQueueStatsResources", "group": "queue", - "weight": 473, "cookies": false, "type": "", "demo": "health\/get-queue-stats-resources.md", @@ -34255,7 +33903,6 @@ "x-appwrite": { "method": "getQueueUsage", "group": "queue", - "weight": 474, "cookies": false, "type": "", "demo": "health\/get-queue-usage.md", @@ -34319,7 +33966,6 @@ "x-appwrite": { "method": "getQueueThreats", "group": null, - "weight": 1114, "cookies": false, "type": "", "demo": "health\/get-queue-threats.md", @@ -34383,7 +34029,6 @@ "x-appwrite": { "method": "getQueueWebhooks", "group": "queue", - "weight": 463, "cookies": false, "type": "", "demo": "health\/get-queue-webhooks.md", @@ -34447,7 +34092,6 @@ "x-appwrite": { "method": "getStorage", "group": "storage", - "weight": 460, "cookies": false, "type": "", "demo": "health\/get-storage.md", @@ -34498,7 +34142,6 @@ "x-appwrite": { "method": "getStorageLocal", "group": "storage", - "weight": 459, "cookies": false, "type": "", "demo": "health\/get-storage-local.md", @@ -34549,7 +34192,6 @@ "x-appwrite": { "method": "getTime", "group": "health", - "weight": 457, "cookies": false, "type": "", "demo": "health\/get-time.md", @@ -34600,7 +34242,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 49, "cookies": false, "type": "", "demo": "locale\/get.md", @@ -34655,7 +34296,6 @@ "x-appwrite": { "method": "listCodes", "group": null, - "weight": 50, "cookies": false, "type": "", "demo": "locale\/list-codes.md", @@ -34710,7 +34350,6 @@ "x-appwrite": { "method": "listContinents", "group": null, - "weight": 54, "cookies": false, "type": "", "demo": "locale\/list-continents.md", @@ -34765,7 +34404,6 @@ "x-appwrite": { "method": "listCountries", "group": null, - "weight": 51, "cookies": false, "type": "", "demo": "locale\/list-countries.md", @@ -34820,7 +34458,6 @@ "x-appwrite": { "method": "listCountriesEU", "group": null, - "weight": 52, "cookies": false, "type": "", "demo": "locale\/list-countries-eu.md", @@ -34875,7 +34512,6 @@ "x-appwrite": { "method": "listCountriesPhones", "group": null, - "weight": 53, "cookies": false, "type": "", "demo": "locale\/list-countries-phones.md", @@ -34930,7 +34566,6 @@ "x-appwrite": { "method": "listCurrencies", "group": null, - "weight": 55, "cookies": false, "type": "", "demo": "locale\/list-currencies.md", @@ -34985,7 +34620,6 @@ "x-appwrite": { "method": "listLanguages", "group": null, - "weight": 56, "cookies": false, "type": "", "demo": "locale\/list-languages.md", @@ -35040,7 +34674,6 @@ "x-appwrite": { "method": "createBlock", "group": null, - "weight": 1048, "cookies": false, "type": "", "demo": "manager\/create-block.md", @@ -35080,22 +34713,24 @@ "subscribers", "messages" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "BlockResourceType" }, "resourceId": { "type": "string", "description": "Optional resource ID (if omitted, all resources of this type will be blocked)", + "default": "", "x-example": "" }, "reason": { "type": "string", "description": "Optional reason why the resource is blocked", + "default": "", "x-example": "" }, "expiredAt": { "type": "string", "description": "Optional expiration date for the block", + "default": "", "x-example": "2020-10-15T06:38:00.000+00:00", "format": "datetime" } @@ -35132,7 +34767,6 @@ "x-appwrite": { "method": "deleteBlock", "group": null, - "weight": 1050, "cookies": false, "type": "", "demo": "manager\/delete-block.md", @@ -35172,12 +34806,12 @@ "subscribers", "messages" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "BlockResourceType" }, "resourceId": { "type": "string", "description": "Optional resource ID (if omitted, all blocks of this type will be removed)", + "default": "", "x-example": "" } }, @@ -35215,7 +34849,6 @@ "x-appwrite": { "method": "listBlocks", "group": null, - "weight": 1049, "cookies": false, "type": "", "demo": "manager\/list-blocks.md", @@ -35267,7 +34900,6 @@ "x-appwrite": { "method": "updateUserStatus", "group": "users", - "weight": 1051, "cookies": false, "type": "", "demo": "manager\/update-user-status.md", @@ -35290,11 +34922,13 @@ "userId": { "type": "string", "description": "User ID.", + "default": "", "x-example": "" }, "email": { "type": "string", "description": "User email address.", + "default": "", "x-example": "" }, "status": { @@ -35305,6 +34939,7 @@ "reason": { "type": "string", "description": "Optional reason when blocking a user. Accepted for parity with the CLI task but not persisted.", + "default": "", "x-example": "" } }, @@ -35341,7 +34976,6 @@ "x-appwrite": { "method": "listMessages", "group": "messages", - "weight": 157, "cookies": false, "type": "", "demo": "messaging\/list-messages.md", @@ -35429,7 +35063,6 @@ "x-appwrite": { "method": "createEmail", "group": "messages", - "weight": 154, "cookies": false, "type": "", "demo": "messaging\/create-email.md", @@ -35478,6 +35111,7 @@ "topics": { "type": "array", "description": "List of Topic IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35486,6 +35120,7 @@ "users": { "type": "array", "description": "List of User IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35494,6 +35129,7 @@ "targets": { "type": "array", "description": "List of Targets IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35502,6 +35138,7 @@ "cc": { "type": "array", "description": "Array of target IDs to be added as CC.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35510,6 +35147,7 @@ "bcc": { "type": "array", "description": "Array of target IDs to be added as BCC.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35518,6 +35156,7 @@ "attachments": { "type": "array", "description": "Array of compound ID strings of bucket IDs and file IDs to be attached to the email. They should be formatted as :.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35526,11 +35165,13 @@ "draft": { "type": "boolean", "description": "Is message a draft", + "default": false, "x-example": false }, "html": { "type": "boolean", "description": "Is content of type HTML", + "default": false, "x-example": false }, "scheduledAt": { @@ -35576,7 +35217,6 @@ "x-appwrite": { "method": "updateEmail", "group": "messages", - "weight": 161, "cookies": false, "type": "", "demo": "messaging\/update-email.md", @@ -35735,7 +35375,6 @@ "x-appwrite": { "method": "createPush", "group": "messages", - "weight": 156, "cookies": false, "type": "", "demo": "messaging\/create-push.md", @@ -35774,16 +35413,19 @@ "title": { "type": "string", "description": "Title for push notification.", + "default": "", "x-example": "" }, "body": { "type": "string", "description": "Body for push notification.", + "default": "", "x-example": "<BODY>" }, "topics": { "type": "array", "description": "List of Topic IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35792,6 +35434,7 @@ "users": { "type": "array", "description": "List of User IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35800,6 +35443,7 @@ "targets": { "type": "array", "description": "List of Targets IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -35814,42 +35458,50 @@ "action": { "type": "string", "description": "Action for push notification.", + "default": "", "x-example": "<ACTION>" }, "image": { "type": "string", "description": "Image for push notification. Must be a compound bucket ID to file ID of a jpeg, png, or bmp image in Appwrite Storage. It should be formatted as <BUCKET_ID>:<FILE_ID>.", + "default": "", "x-example": "<ID1:ID2>" }, "icon": { "type": "string", "description": "Icon for push notification. Available only for Android and Web Platform.", + "default": "", "x-example": "<ICON>" }, "sound": { "type": "string", "description": "Sound for push notification. Available only for Android and iOS Platform.", + "default": "", "x-example": "<SOUND>" }, "color": { "type": "string", "description": "Color for push notification. Available only for Android Platform.", + "default": "", "x-example": "<COLOR>" }, "tag": { "type": "string", "description": "Tag for push notification. Available only for Android Platform.", + "default": "", "x-example": "<TAG>" }, "badge": { "type": "integer", "description": "Badge for push notification. Available only for iOS Platform.", + "default": -1, "x-example": null, "format": "int32" }, "draft": { "type": "boolean", "description": "Is message a draft", + "default": false, "x-example": false }, "scheduledAt": { @@ -35862,23 +35514,25 @@ "contentAvailable": { "type": "boolean", "description": "If set to true, the notification will be delivered in the background. Available only for iOS Platform.", + "default": false, "x-example": false }, "critical": { "type": "boolean", "description": "If set to true, the notification will be marked as critical. This requires the app to have the critical notification entitlement. Available only for iOS Platform.", + "default": false, "x-example": false }, "priority": { "type": "string", "description": "Set the notification priority. \"normal\" will consider device state and may not deliver notifications immediately. \"high\" will always attempt to immediately deliver the notification.", + "default": "high", "x-example": "normal", "enum": [ "normal", "high" ], - "x-enum-name": "MessagePriority", - "x-enum-keys": [] + "x-enum-name": "MessagePriority" } }, "required": [ @@ -35914,7 +35568,6 @@ "x-appwrite": { "method": "updatePush", "group": "messages", - "weight": 163, "cookies": false, "type": "", "demo": "messaging\/update-push.md", @@ -36079,7 +35732,6 @@ "high" ], "x-enum-name": "MessagePriority", - "x-enum-keys": [], "x-nullable": true } } @@ -36113,7 +35765,6 @@ "x-appwrite": { "method": "createSms", "group": "messages", - "weight": 155, "cookies": false, "type": "", "demo": "messaging\/create-sms.md", @@ -36227,6 +35878,7 @@ "topics": { "type": "array", "description": "List of Topic IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -36235,6 +35887,7 @@ "users": { "type": "array", "description": "List of User IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -36243,6 +35896,7 @@ "targets": { "type": "array", "description": "List of Targets IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -36251,6 +35905,7 @@ "draft": { "type": "boolean", "description": "Is message a draft", + "default": false, "x-example": false }, "scheduledAt": { @@ -36295,7 +35950,6 @@ "x-appwrite": { "method": "updateSms", "group": "messages", - "weight": 162, "cookies": false, "type": "", "demo": "messaging\/update-sms.md", @@ -36483,7 +36137,6 @@ "x-appwrite": { "method": "getMessage", "group": "messages", - "weight": 160, "cookies": false, "type": "", "demo": "messaging\/get-message.md", @@ -36537,7 +36190,6 @@ "x-appwrite": { "method": "delete", "group": "messages", - "weight": 164, "cookies": false, "type": "", "demo": "messaging\/delete.md", @@ -36600,7 +36252,6 @@ "x-appwrite": { "method": "listMessageLogs", "group": "logs", - "weight": 158, "cookies": false, "type": "", "demo": "messaging\/list-message-logs.md", @@ -36687,7 +36338,6 @@ "x-appwrite": { "method": "listTargets", "group": "messages", - "weight": 159, "cookies": false, "type": "", "demo": "messaging\/list-targets.md", @@ -36774,7 +36424,6 @@ "x-appwrite": { "method": "listProviders", "group": "providers", - "weight": 128, "cookies": false, "type": "", "demo": "messaging\/list-providers.md", @@ -36862,7 +36511,6 @@ "x-appwrite": { "method": "createApnsProvider", "group": "providers", - "weight": 127, "cookies": false, "type": "", "demo": "messaging\/create-apns-provider.md", @@ -36978,26 +36626,31 @@ "authKey": { "type": "string", "description": "APNS authentication key.", + "default": "", "x-example": "<AUTH_KEY>" }, "authKeyId": { "type": "string", "description": "APNS authentication key ID.", + "default": "", "x-example": "<AUTH_KEY_ID>" }, "teamId": { "type": "string", "description": "APNS team ID.", + "default": "", "x-example": "<TEAM_ID>" }, "bundleId": { "type": "string", "description": "APNS bundle ID.", + "default": "", "x-example": "<BUNDLE_ID>" }, "sandbox": { "type": "boolean", "description": "Use APNS sandbox environment.", + "default": false, "x-example": false }, "enabled": { @@ -37041,7 +36694,6 @@ "x-appwrite": { "method": "updateApnsProvider", "group": "providers", - "weight": 141, "cookies": false, "type": "", "demo": "messaging\/update-apns-provider.md", @@ -37157,6 +36809,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -37168,21 +36821,25 @@ "authKey": { "type": "string", "description": "APNS authentication key.", + "default": "", "x-example": "<AUTH_KEY>" }, "authKeyId": { "type": "string", "description": "APNS authentication key ID.", + "default": "", "x-example": "<AUTH_KEY_ID>" }, "teamId": { "type": "string", "description": "APNS team ID.", + "default": "", "x-example": "<TEAM_ID>" }, "bundleId": { "type": "string", "description": "APNS bundle ID.", + "default": "", "x-example": "<BUNDLE_ID>" }, "sandbox": { @@ -37222,7 +36879,6 @@ "x-appwrite": { "method": "createFcmProvider", "group": "providers", - "weight": 126, "cookies": false, "type": "", "demo": "messaging\/create-fcm-provider.md", @@ -37374,7 +37030,6 @@ "x-appwrite": { "method": "updateFcmProvider", "group": "providers", - "weight": 140, "cookies": false, "type": "", "demo": "messaging\/update-fcm-provider.md", @@ -37482,6 +37137,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -37527,7 +37183,6 @@ "x-appwrite": { "method": "createMailgunProvider", "group": "providers", - "weight": 117, "cookies": false, "type": "", "demo": "messaging\/create-mailgun-provider.md", @@ -37571,11 +37226,13 @@ "apiKey": { "type": "string", "description": "Mailgun API Key.", + "default": "", "x-example": "<API_KEY>" }, "domain": { "type": "string", "description": "Mailgun Domain.", + "default": "", "x-example": "<DOMAIN>" }, "isEuRegion": { @@ -37587,22 +37244,26 @@ "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name. Reply to name must have reply to email as well.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email. Reply to email must have reply to name as well.", + "default": "", "x-example": "email@example.com", "format": "email" }, @@ -37647,7 +37308,6 @@ "x-appwrite": { "method": "updateMailgunProvider", "group": "providers", - "weight": 131, "cookies": false, "type": "", "demo": "messaging\/update-mailgun-provider.md", @@ -37693,16 +37353,19 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "apiKey": { "type": "string", "description": "Mailgun API Key.", + "default": "", "x-example": "<API_KEY>" }, "domain": { "type": "string", "description": "Mailgun Domain.", + "default": "", "x-example": "<DOMAIN>" }, "isEuRegion": { @@ -37720,22 +37383,26 @@ "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", + "default": "", "x-example": "<REPLY_TO_EMAIL>" } } @@ -37769,7 +37436,6 @@ "x-appwrite": { "method": "createMsg91Provider", "group": "providers", - "weight": 121, "cookies": false, "type": "", "demo": "messaging\/create-msg-91-provider.md", @@ -37813,16 +37479,19 @@ "templateId": { "type": "string", "description": "Msg91 template ID", + "default": "", "x-example": "<TEMPLATE_ID>" }, "senderId": { "type": "string", "description": "Msg91 sender ID.", + "default": "", "x-example": "<SENDER_ID>" }, "authKey": { "type": "string", "description": "Msg91 auth key.", + "default": "", "x-example": "<AUTH_KEY>" }, "enabled": { @@ -37866,7 +37535,6 @@ "x-appwrite": { "method": "updateMsg91Provider", "group": "providers", - "weight": 135, "cookies": false, "type": "", "demo": "messaging\/update-msg-91-provider.md", @@ -37912,6 +37580,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -37923,16 +37592,19 @@ "templateId": { "type": "string", "description": "Msg91 template ID.", + "default": "", "x-example": "<TEMPLATE_ID>" }, "senderId": { "type": "string", "description": "Msg91 sender ID.", + "default": "", "x-example": "<SENDER_ID>" }, "authKey": { "type": "string", "description": "Msg91 auth key.", + "default": "", "x-example": "<AUTH_KEY>" } } @@ -37966,7 +37638,6 @@ "x-appwrite": { "method": "createResendProvider", "group": "providers", - "weight": 119, "cookies": false, "type": "", "demo": "messaging\/create-resend-provider.md", @@ -38010,27 +37681,32 @@ "apiKey": { "type": "string", "description": "Resend API key.", + "default": "", "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", + "default": "", "x-example": "email@example.com", "format": "email" }, @@ -38075,7 +37751,6 @@ "x-appwrite": { "method": "updateResendProvider", "group": "providers", - "weight": 133, "cookies": false, "type": "", "demo": "messaging\/update-resend-provider.md", @@ -38121,6 +37796,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -38132,27 +37808,32 @@ "apiKey": { "type": "string", "description": "Resend API key.", + "default": "", "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", + "default": "", "x-example": "<REPLY_TO_EMAIL>" } } @@ -38186,7 +37867,6 @@ "x-appwrite": { "method": "createSendgridProvider", "group": "providers", - "weight": 118, "cookies": false, "type": "", "demo": "messaging\/create-sendgrid-provider.md", @@ -38230,27 +37910,32 @@ "apiKey": { "type": "string", "description": "Sendgrid API key.", + "default": "", "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", + "default": "", "x-example": "email@example.com", "format": "email" }, @@ -38295,7 +37980,6 @@ "x-appwrite": { "method": "updateSendgridProvider", "group": "providers", - "weight": 132, "cookies": false, "type": "", "demo": "messaging\/update-sendgrid-provider.md", @@ -38341,6 +38025,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -38352,27 +38037,32 @@ "apiKey": { "type": "string", "description": "Sendgrid API key.", + "default": "", "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", + "default": "", "x-example": "<REPLY_TO_EMAIL>" } } @@ -38406,7 +38096,6 @@ "x-appwrite": { "method": "createSmtpProvider", "group": "providers", - "weight": 120, "cookies": false, "type": "", "demo": "messaging\/create-smtp-provider.md", @@ -38541,17 +38230,20 @@ "port": { "type": "integer", "description": "The default SMTP server port.", + "default": 587, "x-example": 1, "format": "int32" }, "username": { "type": "string", "description": "Authentication username.", + "default": "", "x-example": "<USERNAME>" }, "password": { "type": "string", "description": "Authentication password.", + "default": "", "x-example": "<PASSWORD>" }, "encryption": { @@ -38563,38 +38255,43 @@ "ssl", "tls" ], - "x-enum-name": "SmtpEncryption", - "x-enum-keys": [] + "x-enum-name": "SmtpEncryption" }, "autoTLS": { "type": "boolean", "description": "Enable SMTP AutoTLS feature.", + "default": true, "x-example": false }, "mailer": { "type": "string", "description": "The value to use for the X-Mailer header.", + "default": "", "x-example": "<MAILER>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", + "default": "", "x-example": "email@example.com", "format": "email" }, @@ -38640,7 +38337,6 @@ "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", - "weight": 134, "cookies": false, "type": "", "demo": "messaging\/update-smtp-provider.md", @@ -38768,11 +38464,13 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "host": { "type": "string", "description": "SMTP hosts. Either a single hostname or multiple semicolon-delimited hostnames. You can also specify a different port for each host such as `smtp1.example.com:25;smtp2.example.com`. You can also specify encryption type, for example: `tls:\/\/smtp1.example.com:587;ssl:\/\/smtp2.example.com:465\"`. Hosts will be tried in order.", + "default": "", "x-example": "<HOST>" }, "port": { @@ -38785,11 +38483,13 @@ "username": { "type": "string", "description": "Authentication username.", + "default": "", "x-example": "<USERNAME>" }, "password": { "type": "string", "description": "Authentication password.", + "default": "", "x-example": "<PASSWORD>" }, "encryption": { @@ -38801,8 +38501,7 @@ "ssl", "tls" ], - "x-enum-name": "SmtpEncryption", - "x-enum-keys": [] + "x-enum-name": "SmtpEncryption" }, "autoTLS": { "type": "boolean", @@ -38813,27 +38512,32 @@ "mailer": { "type": "string", "description": "The value to use for the X-Mailer header.", + "default": "", "x-example": "<MAILER>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", + "default": "", "x-example": "<REPLY_TO_EMAIL>" }, "enabled": { @@ -38873,7 +38577,6 @@ "x-appwrite": { "method": "createTelesignProvider", "group": "providers", - "weight": 122, "cookies": false, "type": "", "demo": "messaging\/create-telesign-provider.md", @@ -38917,17 +38620,20 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, "customerId": { "type": "string", "description": "Telesign customer ID.", + "default": "", "x-example": "<CUSTOMER_ID>" }, "apiKey": { "type": "string", "description": "Telesign API key.", + "default": "", "x-example": "<API_KEY>" }, "enabled": { @@ -38971,7 +38677,6 @@ "x-appwrite": { "method": "updateTelesignProvider", "group": "providers", - "weight": 136, "cookies": false, "type": "", "demo": "messaging\/update-telesign-provider.md", @@ -39017,6 +38722,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -39028,16 +38734,19 @@ "customerId": { "type": "string", "description": "Telesign customer ID.", + "default": "", "x-example": "<CUSTOMER_ID>" }, "apiKey": { "type": "string", "description": "Telesign API key.", + "default": "", "x-example": "<API_KEY>" }, "from": { "type": "string", "description": "Sender number.", + "default": "", "x-example": "<FROM>" } } @@ -39071,7 +38780,6 @@ "x-appwrite": { "method": "createTextmagicProvider", "group": "providers", - "weight": 123, "cookies": false, "type": "", "demo": "messaging\/create-textmagic-provider.md", @@ -39115,17 +38823,20 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, "username": { "type": "string", "description": "Textmagic username.", + "default": "", "x-example": "<USERNAME>" }, "apiKey": { "type": "string", "description": "Textmagic apiKey.", + "default": "", "x-example": "<API_KEY>" }, "enabled": { @@ -39169,7 +38880,6 @@ "x-appwrite": { "method": "updateTextmagicProvider", "group": "providers", - "weight": 137, "cookies": false, "type": "", "demo": "messaging\/update-textmagic-provider.md", @@ -39215,6 +38925,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -39226,16 +38937,19 @@ "username": { "type": "string", "description": "Textmagic username.", + "default": "", "x-example": "<USERNAME>" }, "apiKey": { "type": "string", "description": "Textmagic apiKey.", + "default": "", "x-example": "<API_KEY>" }, "from": { "type": "string", "description": "Sender number.", + "default": "", "x-example": "<FROM>" } } @@ -39269,7 +38983,6 @@ "x-appwrite": { "method": "createTwilioProvider", "group": "providers", - "weight": 124, "cookies": false, "type": "", "demo": "messaging\/create-twilio-provider.md", @@ -39313,17 +39026,20 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, "accountSid": { "type": "string", "description": "Twilio account secret ID.", + "default": "", "x-example": "<ACCOUNT_SID>" }, "authToken": { "type": "string", "description": "Twilio authentication token.", + "default": "", "x-example": "<AUTH_TOKEN>" }, "enabled": { @@ -39367,7 +39083,6 @@ "x-appwrite": { "method": "updateTwilioProvider", "group": "providers", - "weight": 138, "cookies": false, "type": "", "demo": "messaging\/update-twilio-provider.md", @@ -39413,6 +39128,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -39424,16 +39140,19 @@ "accountSid": { "type": "string", "description": "Twilio account secret ID.", + "default": "", "x-example": "<ACCOUNT_SID>" }, "authToken": { "type": "string", "description": "Twilio authentication token.", + "default": "", "x-example": "<AUTH_TOKEN>" }, "from": { "type": "string", "description": "Sender number.", + "default": "", "x-example": "<FROM>" } } @@ -39467,7 +39186,6 @@ "x-appwrite": { "method": "createVonageProvider", "group": "providers", - "weight": 125, "cookies": false, "type": "", "demo": "messaging\/create-vonage-provider.md", @@ -39511,17 +39229,20 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, "apiKey": { "type": "string", "description": "Vonage API key.", + "default": "", "x-example": "<API_KEY>" }, "apiSecret": { "type": "string", "description": "Vonage API secret.", + "default": "", "x-example": "<API_SECRET>" }, "enabled": { @@ -39565,7 +39286,6 @@ "x-appwrite": { "method": "updateVonageProvider", "group": "providers", - "weight": 139, "cookies": false, "type": "", "demo": "messaging\/update-vonage-provider.md", @@ -39611,6 +39331,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -39622,16 +39343,19 @@ "apiKey": { "type": "string", "description": "Vonage API key.", + "default": "", "x-example": "<API_KEY>" }, "apiSecret": { "type": "string", "description": "Vonage API secret.", + "default": "", "x-example": "<API_SECRET>" }, "from": { "type": "string", "description": "Sender number.", + "default": "", "x-example": "<FROM>" } } @@ -39665,7 +39389,6 @@ "x-appwrite": { "method": "getProvider", "group": "providers", - "weight": 130, "cookies": false, "type": "", "demo": "messaging\/get-provider.md", @@ -39719,7 +39442,6 @@ "x-appwrite": { "method": "deleteProvider", "group": "providers", - "weight": 142, "cookies": false, "type": "", "demo": "messaging\/delete-provider.md", @@ -39782,7 +39504,6 @@ "x-appwrite": { "method": "listProviderLogs", "group": "providers", - "weight": 129, "cookies": false, "type": "", "demo": "messaging\/list-provider-logs.md", @@ -39869,7 +39590,6 @@ "x-appwrite": { "method": "listSubscriberLogs", "group": "subscribers", - "weight": 151, "cookies": false, "type": "", "demo": "messaging\/list-subscriber-logs.md", @@ -39956,7 +39676,6 @@ "x-appwrite": { "method": "listTopics", "group": "topics", - "weight": 144, "cookies": false, "type": "", "demo": "messaging\/list-topics.md", @@ -40042,7 +39761,6 @@ "x-appwrite": { "method": "createTopic", "group": "topics", - "weight": 143, "cookies": false, "type": "", "demo": "messaging\/create-topic.md", @@ -40086,6 +39804,9 @@ "subscribe": { "type": "array", "description": "An array of role strings with subscribe permission. By default all users are granted with any subscribe permission. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", + "default": [ + "users" + ], "x-example": "[\"any\"]", "items": { "type": "string" @@ -40126,7 +39847,6 @@ "x-appwrite": { "method": "getTopic", "group": "topics", - "weight": 146, "cookies": false, "type": "", "demo": "messaging\/get-topic.md", @@ -40187,7 +39907,6 @@ "x-appwrite": { "method": "updateTopic", "group": "topics", - "weight": 147, "cookies": false, "type": "", "demo": "messaging\/update-topic.md", @@ -40267,7 +39986,6 @@ "x-appwrite": { "method": "deleteTopic", "group": "topics", - "weight": 148, "cookies": false, "type": "", "demo": "messaging\/delete-topic.md", @@ -40330,7 +40048,6 @@ "x-appwrite": { "method": "listTopicLogs", "group": "topics", - "weight": 145, "cookies": false, "type": "", "demo": "messaging\/list-topic-logs.md", @@ -40417,7 +40134,6 @@ "x-appwrite": { "method": "listSubscribers", "group": "subscribers", - "weight": 150, "cookies": false, "type": "", "demo": "messaging\/list-subscribers.md", @@ -40513,7 +40229,6 @@ "x-appwrite": { "method": "createSubscriber", "group": "subscribers", - "weight": 149, "cookies": false, "type": "", "demo": "messaging\/create-subscriber.md", @@ -40605,7 +40320,6 @@ "x-appwrite": { "method": "getSubscriber", "group": "subscribers", - "weight": 152, "cookies": false, "type": "", "demo": "messaging\/get-subscriber.md", @@ -40669,7 +40383,6 @@ "x-appwrite": { "method": "deleteSubscriber", "group": "subscribers", - "weight": 153, "cookies": false, "type": "", "demo": "messaging\/delete-subscriber.md", @@ -40746,7 +40459,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 583, "cookies": false, "type": "", "demo": "migrations\/list.md", @@ -40832,7 +40544,6 @@ "x-appwrite": { "method": "createAppwriteMigration", "group": null, - "weight": 587, "cookies": false, "type": "", "demo": "migrations\/create-appwrite-migration.md", @@ -40896,8 +40607,7 @@ "platform", "backup-policy" ], - "x-enum-name": "AppwriteMigrationResource", - "x-enum-keys": [] + "x-enum-name": "AppwriteMigrationResource" } }, "endpoint": { @@ -40919,14 +40629,14 @@ "onDuplicate": { "type": "string", "description": "Behavior when a row with an existing $id is encountered. \"fail\" (default): abort on first conflict. \"skip\": silently ignore. \"overwrite\": replace existing row.", + "default": "fail", "x-example": "fail", "enum": [ "fail", "skip", "overwrite" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "MigrationOnDuplicate" } }, "required": [ @@ -40965,7 +40675,6 @@ "x-appwrite": { "method": "getAppwriteReport", "group": null, - "weight": 1133, "cookies": false, "type": "", "demo": "migrations\/get-appwrite-report.md", @@ -41026,8 +40735,7 @@ "platform", "backup-policy" ], - "x-enum-name": "AppwriteMigrationResource", - "x-enum-keys": [] + "x-enum-name": "AppwriteMigrationResource" } }, "in": "query" @@ -41090,7 +40798,6 @@ "x-appwrite": { "method": "createCSVExport", "group": null, - "weight": 596, "cookies": false, "type": "", "demo": "migrations\/create-csv-export.md", @@ -41132,6 +40839,7 @@ "columns": { "type": "array", "description": "List of attributes to export. If empty, all attributes will be exported. You can use the `*` wildcard to export all attributes from the collection.", + "default": [], "x-example": null, "items": { "type": "string" @@ -41140,6 +40848,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK to filter documents to export. [Learn more about queries](https:\/\/appwrite.io\/docs\/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -41148,26 +40857,31 @@ "delimiter": { "type": "string", "description": "The character that separates each column value. Default is comma.", + "default": ",", "x-example": "<DELIMITER>" }, "enclosure": { "type": "string", "description": "The character that encloses each column value. Default is double quotes.", + "default": "\"", "x-example": "<ENCLOSURE>" }, "escape": { "type": "string", "description": "The escape character for the enclosure character. Default is double quotes.", + "default": "\"", "x-example": "<ESCAPE>" }, "header": { "type": "boolean", "description": "Whether to include the header row with column names. Default is true.", + "default": true, "x-example": false }, "notify": { "type": "boolean", "description": "Set to true to receive an email when the export is complete. Default is true.", + "default": true, "x-example": false } }, @@ -41205,7 +40919,6 @@ "x-appwrite": { "method": "createCSVImport", "group": null, - "weight": 595, "cookies": false, "type": "", "demo": "migrations\/create-csv-import.md", @@ -41252,19 +40965,20 @@ "internalFile": { "type": "boolean", "description": "Is the file stored in an internal bucket?", + "default": false, "x-example": false }, "onDuplicate": { "type": "string", "description": "Behavior when a row with an existing $id is encountered. \"fail\" (default): abort on first conflict. \"skip\": silently ignore. \"overwrite\": replace existing row.", + "default": "fail", "x-example": "fail", "enum": [ "fail", "skip", "overwrite" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "MigrationOnDuplicate" } }, "required": [ @@ -41302,7 +41016,6 @@ "x-appwrite": { "method": "createFirebaseMigration", "group": null, - "weight": 589, "cookies": false, "type": "", "demo": "migrations\/create-firebase-migration.md", @@ -41349,8 +41062,7 @@ "bucket", "file" ], - "x-enum-name": "FirebaseMigrationResource", - "x-enum-keys": [] + "x-enum-name": "FirebaseMigrationResource" } }, "serviceAccount": { @@ -41393,7 +41105,6 @@ "x-appwrite": { "method": "getFirebaseReport", "group": null, - "weight": 590, "cookies": false, "type": "", "demo": "migrations\/get-firebase-report.md", @@ -41437,8 +41148,7 @@ "bucket", "file" ], - "x-enum-name": "FirebaseMigrationResource", - "x-enum-keys": [] + "x-enum-name": "FirebaseMigrationResource" } }, "in": "query" @@ -41480,7 +41190,6 @@ "x-appwrite": { "method": "createJSONExport", "group": null, - "weight": 598, "cookies": false, "type": "", "demo": "migrations\/create-json-export.md", @@ -41522,6 +41231,7 @@ "columns": { "type": "array", "description": "List of attributes to export. If empty, all attributes will be exported. You can use the `*` wildcard to export all attributes from the collection.", + "default": [], "x-example": null, "items": { "type": "string" @@ -41530,6 +41240,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK to filter documents to export. [Learn more about queries](https:\/\/appwrite.io\/docs\/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -41538,6 +41249,7 @@ "notify": { "type": "boolean", "description": "Set to true to receive an email when the export is complete. Default is true.", + "default": true, "x-example": false } }, @@ -41575,7 +41287,6 @@ "x-appwrite": { "method": "createJSONImport", "group": null, - "weight": 597, "cookies": false, "type": "", "demo": "migrations\/create-json-import.md", @@ -41622,19 +41333,20 @@ "internalFile": { "type": "boolean", "description": "Is the file stored in an internal bucket?", + "default": false, "x-example": false }, "onDuplicate": { "type": "string", "description": "Behavior when a row with an existing $id is encountered. \"fail\" (default): abort on first conflict. \"skip\": silently ignore. \"overwrite\": replace existing row.", + "default": "fail", "x-example": "fail", "enum": [ "fail", "skip", "overwrite" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "MigrationOnDuplicate" } }, "required": [ @@ -41672,7 +41384,6 @@ "x-appwrite": { "method": "createNHostMigration", "group": null, - "weight": 593, "cookies": false, "type": "", "demo": "migrations\/create-n-host-migration.md", @@ -41720,8 +41431,7 @@ "bucket", "file" ], - "x-enum-name": "NHostMigrationResource", - "x-enum-keys": [] + "x-enum-name": "NHostMigrationResource" } }, "subdomain": { @@ -41757,6 +41467,7 @@ "port": { "type": "integer", "description": "Source's Database Port", + "default": 5432, "x-example": null, "format": "int32" } @@ -41800,7 +41511,6 @@ "x-appwrite": { "method": "getNHostReport", "group": null, - "weight": 594, "cookies": false, "type": "", "demo": "migrations\/get-n-host-report.md", @@ -41845,8 +41555,7 @@ "bucket", "file" ], - "x-enum-name": "NHostMigrationResource", - "x-enum-keys": [] + "x-enum-name": "NHostMigrationResource" } }, "in": "query" @@ -41949,7 +41658,6 @@ "x-appwrite": { "method": "createSupabaseMigration", "group": null, - "weight": 591, "cookies": false, "type": "", "demo": "migrations\/create-supabase-migration.md", @@ -41997,8 +41705,7 @@ "bucket", "file" ], - "x-enum-name": "SupabaseMigrationResource", - "x-enum-keys": [] + "x-enum-name": "SupabaseMigrationResource" } }, "endpoint": { @@ -42030,6 +41737,7 @@ "port": { "type": "integer", "description": "Source's Database Port", + "default": 5432, "x-example": null, "format": "int32" } @@ -42072,7 +41780,6 @@ "x-appwrite": { "method": "getSupabaseReport", "group": null, - "weight": 592, "cookies": false, "type": "", "demo": "migrations\/get-supabase-report.md", @@ -42117,8 +41824,7 @@ "bucket", "file" ], - "x-enum-name": "SupabaseMigrationResource", - "x-enum-keys": [] + "x-enum-name": "SupabaseMigrationResource" } }, "in": "query" @@ -42212,7 +41918,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 584, "cookies": false, "type": "", "demo": "migrations\/get.md", @@ -42271,7 +41976,6 @@ "x-appwrite": { "method": "retry", "group": null, - "weight": 585, "cookies": false, "type": "", "demo": "migrations\/retry.md", @@ -42323,7 +42027,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 586, "cookies": false, "type": "", "demo": "migrations\/delete.md", @@ -42360,6 +42063,765 @@ ] } }, + "\/organization\/keys": { + "get": { + "summary": "List organization keys", + "operationId": "organizationListKeys", + "tags": [ + "organization" + ], + "description": "Get a list of all API keys from the current organization.", + "responses": { + "200": { + "description": "API Keys List", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/keyList" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "listKeys", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/list-keys.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "queries", + "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: expire, accessedAt, name, scopes", + "required": false, + "schema": { + "type": "array", + "items": { + "type": "string" + }, + "default": [] + }, + "in": "query" + }, + { + "name": "total", + "description": "When set to false, the total count returned will be 0 and will not be calculated.", + "required": false, + "schema": { + "type": "boolean", + "x-example": false, + "default": true + }, + "in": "query" + } + ] + }, + "post": { + "summary": "Create organization key", + "operationId": "organizationCreateKey", + "tags": [ + "organization" + ], + "description": "Create a new organization API key.", + "responses": { + "201": { + "description": "Key", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/key" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "createKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/create-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "requestBody": { + "content": { + "application\/json": { + "schema": { + "type": "object", + "properties": { + "keyId": { + "type": "string", + "description": "Key ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "x-example": "<KEY_ID>" + }, + "name": { + "type": "string", + "description": "Key name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "scopes": { + "type": "array", + "description": "Key scopes list. Maximum of 100 scopes are allowed.", + "x-example": null, + "items": { + "type": "string", + "enum": [ + "projects.read", + "projects.write", + "devKeys.read", + "devKeys.write", + "organization.keys.read", + "organization.keys.write", + "domains.read", + "domains.write", + "keys.read", + "keys.write" + ], + "x-enum-name": "OrganizationKeyScopes" + } + }, + "expire": { + "type": "string", + "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", + "x-example": "2020-10-15T06:38:00.000+00:00", + "format": "datetime", + "x-nullable": true + } + }, + "required": [ + "keyId", + "name", + "scopes" + ] + } + } + } + } + } + }, + "\/organization\/keys\/{keyId}": { + "get": { + "summary": "Get organization key", + "operationId": "organizationGetKey", + "tags": [ + "organization" + ], + "description": "Get a key by its unique ID. This endpoint returns details about a specific API key in your organization including its scopes.", + "responses": { + "200": { + "description": "Key", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/key" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/get-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<KEY_ID>" + }, + "in": "path" + } + ] + }, + "put": { + "summary": "Update organization key", + "operationId": "organizationUpdateKey", + "tags": [ + "organization" + ], + "description": "Update a key by its unique ID. Use this endpoint to update the name, scopes, or expiration time of an API key.", + "responses": { + "200": { + "description": "Key", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/key" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "updateKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/update-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<KEY_ID>" + }, + "in": "path" + } + ], + "requestBody": { + "content": { + "application\/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Key name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "scopes": { + "type": "array", + "description": "Key scopes list. Maximum of 100 scopes are allowed.", + "x-example": null, + "items": { + "type": "string", + "enum": [ + "projects.read", + "projects.write", + "devKeys.read", + "devKeys.write", + "organization.keys.read", + "organization.keys.write", + "domains.read", + "domains.write", + "keys.read", + "keys.write" + ], + "x-enum-name": "OrganizationKeyScopes" + } + }, + "expire": { + "type": "string", + "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", + "x-example": "2020-10-15T06:38:00.000+00:00", + "format": "datetime", + "x-nullable": true + } + }, + "required": [ + "name", + "scopes" + ] + } + } + } + } + }, + "delete": { + "summary": "Delete organization key", + "operationId": "organizationDeleteKey", + "tags": [ + "organization" + ], + "description": "Delete a key by its unique ID. Once deleted, the key can no longer be used to authenticate API calls.", + "responses": { + "204": { + "description": "No content" + } + }, + "deprecated": false, + "x-appwrite": { + "method": "deleteKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/delete-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<KEY_ID>" + }, + "in": "path" + } + ] + } + }, + "\/organization\/projects": { + "get": { + "summary": "List organization projects", + "operationId": "organizationListProjects", + "tags": [ + "organization" + ], + "description": "Get a list of all projects. You can use the query params to filter your results.", + "responses": { + "200": { + "description": "Projects List", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/projectList" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "listProjects", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/list-projects.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "queries", + "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, teamId, labels, search", + "required": false, + "schema": { + "type": "array", + "items": { + "type": "string" + }, + "default": [] + }, + "in": "query" + }, + { + "name": "search", + "description": "Search term to filter your list results. Max length: 256 chars.", + "required": false, + "schema": { + "type": "string", + "x-example": "<SEARCH>", + "default": "" + }, + "in": "query" + }, + { + "name": "total", + "description": "When set to false, the total count returned will be 0 and will not be calculated.", + "required": false, + "schema": { + "type": "boolean", + "x-example": false, + "default": true + }, + "in": "query" + } + ] + }, + "post": { + "summary": "Create organization project", + "operationId": "organizationCreateProject", + "tags": [ + "organization" + ], + "description": "Create a new project.", + "responses": { + "201": { + "description": "Project", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/project" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "createProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/create-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "requestBody": { + "content": { + "application\/json": { + "schema": { + "type": "object", + "properties": { + "projectId": { + "type": "string", + "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, and hyphen. Can't start with a special char. Max length is 36 chars.", + "x-example": null + }, + "name": { + "type": "string", + "description": "Project name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "region": { + "type": "string", + "description": "Project Region.", + "x-example": "fra", + "enum": [ + "fra", + "nyc", + "syd", + "sfo", + "sgp", + "tor" + ], + "x-enum-name": "Region" + } + }, + "required": [ + "projectId", + "name" + ] + } + } + } + } + } + }, + "\/organization\/projects\/{projectId}": { + "get": { + "summary": "Get organization project", + "operationId": "organizationGetProject", + "tags": [ + "organization" + ], + "description": "Get a project.", + "responses": { + "200": { + "description": "Project", + "content": { + "": { + "schema": { + "$ref": "#\/components\/schemas\/project" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/get-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "projectId", + "description": "Project unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<PROJECT_ID>" + }, + "in": "path" + } + ] + }, + "patch": { + "summary": "Update organization project", + "operationId": "organizationUpdateProject", + "tags": [ + "organization" + ], + "description": "Update a project by its unique ID.", + "responses": { + "200": { + "description": "Project", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/project" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "updateProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/update-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "projectId", + "description": "Project unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<PROJECT_ID>" + }, + "in": "path" + } + ], + "requestBody": { + "content": { + "application\/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Project name. Max length: 128 chars.", + "x-example": "<NAME>" + } + }, + "required": [ + "name" + ] + } + } + } + } + }, + "delete": { + "summary": "Delete organization project", + "operationId": "organizationDeleteProject", + "tags": [ + "organization" + ], + "description": "Delete a project by its unique ID.", + "responses": { + "204": { + "description": "No content" + } + }, + "deprecated": false, + "x-appwrite": { + "method": "deleteProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/delete-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "projectId", + "description": "Project unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<PROJECT_ID>" + }, + "in": "path" + } + ] + } + }, "\/organizations": { "get": { "summary": "List Orgnizations", @@ -42384,7 +42846,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 1061, "cookies": false, "type": "", "demo": "organizations\/list.md", @@ -42464,7 +42925,6 @@ "x-appwrite": { "method": "create", "group": null, - "weight": 1060, "cookies": false, "type": "", "demo": "organizations\/create.md", @@ -42517,12 +42977,14 @@ "billingAddressId": { "type": "string", "description": "Unique ID of billing address", + "default": "", "x-example": "<BILLING_ADDRESS_ID>", "x-nullable": true }, "invites": { "type": "array", "description": "Additional member invites", + "default": [], "x-example": null, "items": { "type": "string" @@ -42550,13 +43012,13 @@ "platform": { "type": "string", "description": "Platform type", + "default": "appwrite", "x-example": "appwrite", "enum": [ "appwrite", "imagine" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Platform" } }, "required": [ @@ -42594,7 +43056,6 @@ "x-appwrite": { "method": "estimationCreateOrganization", "group": null, - "weight": 1095, "cookies": false, "type": "", "demo": "organizations\/estimation-create-organization.md", @@ -42637,6 +43098,7 @@ "invites": { "type": "array", "description": "Additional member invites", + "default": [], "x-example": null, "items": { "type": "string" @@ -42651,13 +43113,13 @@ "platform": { "type": "string", "description": "Platform type", + "default": "appwrite", "x-example": "appwrite", "enum": [ "appwrite", "imagine" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Platform" } }, "required": [ @@ -42686,7 +43148,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 1062, "cookies": false, "type": "", "demo": "organizations\/delete.md", @@ -42747,7 +43208,6 @@ "x-appwrite": { "method": "listAddons", "group": null, - "weight": 1103, "cookies": false, "type": "", "demo": "organizations\/list-addons.md", @@ -42808,7 +43268,6 @@ "x-appwrite": { "method": "createBaaAddon", "group": null, - "weight": 1106, "cookies": false, "type": "", "demo": "organizations\/create-baa-addon.md", @@ -42869,7 +43328,6 @@ "x-appwrite": { "method": "getAddon", "group": null, - "weight": 1104, "cookies": false, "type": "", "demo": "organizations\/get-addon.md", @@ -42931,7 +43389,6 @@ "x-appwrite": { "method": "deleteAddon", "group": null, - "weight": 1107, "cookies": false, "type": "", "demo": "organizations\/delete-addon.md", @@ -43002,7 +43459,6 @@ "x-appwrite": { "method": "confirmAddonPayment", "group": null, - "weight": 1108, "cookies": false, "type": "", "demo": "organizations\/confirm-addon-payment.md", @@ -43073,7 +43529,6 @@ "x-appwrite": { "method": "getAddonPrice", "group": null, - "weight": 1105, "cookies": false, "type": "", "demo": "organizations\/get-addon-price.md", @@ -43115,10 +43570,10 @@ "type": "string", "x-example": "baa", "enum": [ - "baa" + "baa", + "backup_recovery" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "OrganizationAddon" }, "in": "path" } @@ -43149,7 +43604,6 @@ "x-appwrite": { "method": "listAggregations", "group": null, - "weight": 1077, "cookies": false, "type": "", "demo": "organizations\/list-aggregations.md", @@ -43223,7 +43677,6 @@ "x-appwrite": { "method": "getAggregation", "group": null, - "weight": 1078, "cookies": false, "type": "", "demo": "organizations\/get-aggregation.md", @@ -43317,7 +43770,6 @@ "x-appwrite": { "method": "setBillingAddress", "group": null, - "weight": 1070, "cookies": false, "type": "", "demo": "organizations\/set-billing-address.md", @@ -43388,7 +43840,6 @@ "x-appwrite": { "method": "deleteBillingAddress", "group": null, - "weight": 1071, "cookies": false, "type": "", "demo": "organizations\/delete-billing-address.md", @@ -43449,7 +43900,6 @@ "x-appwrite": { "method": "getBillingAddress", "group": null, - "weight": 1069, "cookies": false, "type": "", "demo": "organizations\/get-billing-address.md", @@ -43520,7 +43970,6 @@ "x-appwrite": { "method": "setBillingEmail", "group": null, - "weight": 1089, "cookies": false, "type": "", "demo": "organizations\/set-billing-email.md", @@ -43601,7 +44050,6 @@ "x-appwrite": { "method": "updateBudget", "group": null, - "weight": 1066, "cookies": false, "type": "", "demo": "organizations\/update-budget.md", @@ -43652,6 +44100,9 @@ "alerts": { "type": "array", "description": "Budget alert limit percentage", + "default": [ + 75 + ], "x-example": null, "items": { "type": "integer" @@ -43691,7 +44142,6 @@ "x-appwrite": { "method": "listCredits", "group": null, - "weight": 1081, "cookies": false, "type": "", "demo": "organizations\/list-credits.md", @@ -43763,7 +44213,6 @@ "x-appwrite": { "method": "addCredit", "group": null, - "weight": 1082, "cookies": false, "type": "", "demo": "organizations\/add-credit.md", @@ -43843,7 +44292,6 @@ "x-appwrite": { "method": "getAvailableCredits", "group": null, - "weight": 1080, "cookies": false, "type": "", "demo": "organizations\/get-available-credits.md", @@ -43904,7 +44352,6 @@ "x-appwrite": { "method": "getCredit", "group": null, - "weight": 1079, "cookies": false, "type": "", "demo": "organizations\/get-credit.md", @@ -43975,7 +44422,6 @@ "x-appwrite": { "method": "estimationDeleteOrganization", "group": null, - "weight": 1096, "cookies": false, "type": "", "demo": "organizations\/estimation-delete-organization.md", @@ -44036,7 +44482,6 @@ "x-appwrite": { "method": "estimationUpdatePlan", "group": null, - "weight": 1093, "cookies": false, "type": "", "demo": "organizations\/estimation-update-plan.md", @@ -44085,6 +44530,7 @@ "invites": { "type": "array", "description": "Additional member invites", + "default": [], "x-example": null, "items": { "type": "string" @@ -44130,7 +44576,6 @@ "x-appwrite": { "method": "createDowngradeFeedback", "group": null, - "weight": 1097, "cookies": false, "type": "", "demo": "organizations\/create-downgrade-feedback.md", @@ -44228,7 +44673,6 @@ "x-appwrite": { "method": "listInvoices", "group": null, - "weight": 1084, "cookies": false, "type": "", "demo": "organizations\/list-invoices.md", @@ -44302,7 +44746,6 @@ "x-appwrite": { "method": "getInvoice", "group": null, - "weight": 1083, "cookies": false, "type": "", "demo": "organizations\/get-invoice.md", @@ -44349,324 +44792,21 @@ ] } }, - "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/download": { - "get": { - "summary": "Download invoice in PDF", - "operationId": "organizationsGetInvoiceDownload", - "tags": [ - "organizations" - ], - "description": "Download invoice in PDF", - "responses": { - "200": { - "description": "paymentMethod", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/paymentMethod" - } - } - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "getInvoiceDownload", - "group": null, - "weight": 1087, - "cookies": false, - "type": "", - "demo": "organizations\/get-invoice-download.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "billing.read", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/get-invoice-download.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<ORGANIZATION_ID>" - }, - "in": "path" - }, - { - "name": "invoiceId", - "description": "Invoice unique ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<INVOICE_ID>" - }, - "in": "path" - } - ] - } - }, - "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/payments": { - "post": { - "summary": "Initiate payment for failed invoice to pay live from console", - "operationId": "organizationsCreateInvoicePayment", - "tags": [ - "organizations" - ], - "description": "Initiate payment for failed invoice to pay live from console", - "responses": { - "200": { - "description": "Invoice", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/invoice" - } - } - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "createInvoicePayment", - "group": null, - "weight": 1088, - "cookies": false, - "type": "", - "demo": "organizations\/create-invoice-payment.md", - "rate-limit": 10, - "rate-time": 86400, - "rate-key": "url:{url},ip:{ip}", - "scope": "billing.write", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/create-invoice-payment.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<ORGANIZATION_ID>" - }, - "in": "path" - }, - { - "name": "invoiceId", - "description": "Invoice unique ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<INVOICE_ID>" - }, - "in": "path" - } - ], - "requestBody": { - "content": { - "application\/json": { - "schema": { - "type": "object", - "properties": { - "paymentMethodId": { - "type": "string", - "description": "Payment method ID", - "x-example": "<PAYMENT_METHOD_ID>" - } - }, - "required": [ - "paymentMethodId" - ] - } - } - } - } - } - }, - "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/status": { - "patch": { - "summary": "Validate the payment for an invoice and update status", - "operationId": "organizationsValidateInvoice", - "tags": [ - "organizations" - ], - "description": "Validates the payment linked with the invoice and updates the invoice status if the payment status is changed.", - "responses": { - "200": { - "description": "Invoice", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/invoice" - } - } - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "validateInvoice", - "group": null, - "weight": 1085, - "cookies": false, - "type": "", - "demo": "organizations\/validate-invoice.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "billing.write", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/update-invoice-status.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<ORGANIZATION_ID>" - }, - "in": "path" - }, - { - "name": "invoiceId", - "description": "Invoice unique ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<INVOICE_ID>" - }, - "in": "path" - } - ] - } - }, - "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/view": { - "get": { - "summary": "View invoice in PDF", - "operationId": "organizationsGetInvoiceView", - "tags": [ - "organizations" - ], - "description": "View invoice in PDF", - "responses": { - "200": { - "description": "paymentMethod", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/paymentMethod" - } - } - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "getInvoiceView", - "group": null, - "weight": 1086, - "cookies": false, - "type": "", - "demo": "organizations\/get-invoice-view.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "billing.read", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/get-invoice-view.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<ORGANIZATION_ID>" - }, - "in": "path" - }, - { - "name": "invoiceId", - "description": "Invoice unique ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<INVOICE_ID>" - }, - "in": "path" - } - ] - } - }, - "\/organizations\/{organizationId}\/keys": { + "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/download": { "get": { - "summary": "List organization keys", - "operationId": "organizationsListKeys", + "summary": "Download invoice in PDF", + "operationId": "organizationsGetInvoiceDownload", "tags": [ "organizations" ], - "description": "Get a list of all API keys from the current organization. ", + "description": "Download invoice in PDF", "responses": { "200": { - "description": "API Keys List", + "description": "paymentMethod", "content": { "application\/json": { "schema": { - "$ref": "#\/components\/schemas\/keyList" + "$ref": "#\/components\/schemas\/paymentMethod" } } } @@ -44674,21 +44814,21 @@ }, "deprecated": false, "x-appwrite": { - "method": "listKeys", - "group": "keys", - "weight": 1100, + "method": "getInvoiceDownload", + "group": null, "cookies": false, "type": "", - "demo": "organizations\/list-keys.md", + "demo": "organizations\/get-invoice-download.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "teams.read", + "scope": "billing.read", "platforms": [ "console" ], "packaging": false, "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/get-invoice-download.md", "auth": { "Project": [] } @@ -44701,7 +44841,7 @@ "parameters": [ { "name": "organizationId", - "description": "Organization Unique ID", + "description": "Organization ID", "required": true, "schema": { "type": "string", @@ -44710,32 +44850,33 @@ "in": "path" }, { - "name": "total", - "description": "When set to false, the total count returned will be 0 and will not be calculated.", - "required": false, + "name": "invoiceId", + "description": "Invoice unique ID", + "required": true, "schema": { - "type": "boolean", - "x-example": false, - "default": true + "type": "string", + "x-example": "<INVOICE_ID>" }, - "in": "query" + "in": "path" } ] - }, + } + }, + "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/payments": { "post": { - "summary": "Create organization key", - "operationId": "organizationsCreateKey", + "summary": "Initiate payment for failed invoice to pay live from console", + "operationId": "organizationsCreateInvoicePayment", "tags": [ "organizations" ], - "description": "Create a new organization API key.", + "description": "Initiate payment for failed invoice to pay live from console", "responses": { - "201": { - "description": "Key", + "200": { + "description": "Invoice", "content": { "application\/json": { "schema": { - "$ref": "#\/components\/schemas\/key" + "$ref": "#\/components\/schemas\/invoice" } } } @@ -44743,21 +44884,21 @@ }, "deprecated": false, "x-appwrite": { - "method": "createKey", - "group": "keys", - "weight": 1098, + "method": "createInvoicePayment", + "group": null, "cookies": false, "type": "", - "demo": "organizations\/create-key.md", - "rate-limit": 0, - "rate-time": 3600, + "demo": "organizations\/create-invoice-payment.md", + "rate-limit": 10, + "rate-time": 86400, "rate-key": "url:{url},ip:{ip}", - "scope": "teams.write", + "scope": "billing.write", "platforms": [ "console" ], "packaging": false, "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/create-invoice-payment.md", "auth": { "Project": [] } @@ -44770,13 +44911,23 @@ "parameters": [ { "name": "organizationId", - "description": "Organization Unique ID", + "description": "Organization ID", "required": true, "schema": { "type": "string", "x-example": "<ORGANIZATION_ID>" }, "in": "path" + }, + { + "name": "invoiceId", + "description": "Invoice unique ID", + "required": true, + "schema": { + "type": "string", + "x-example": "<INVOICE_ID>" + }, + "in": "path" } ], "requestBody": { @@ -44785,42 +44936,14 @@ "schema": { "type": "object", "properties": { - "name": { - "type": "string", - "description": "Key name. Max length: 128 chars.", - "x-example": "<NAME>" - }, - "scopes": { - "type": "array", - "description": "Key scopes list. Maximum of 100 scopes are allowed.", - "x-example": null, - "items": { - "type": "string", - "enum": [ - "projects.read", - "projects.write", - "devKeys.read", - "devKeys.write", - "domains.read", - "domains.write", - "keys.read", - "keys.write" - ], - "x-enum-name": null, - "x-enum-keys": [] - } - }, - "expire": { + "paymentMethodId": { "type": "string", - "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", - "x-example": "2020-10-15T06:38:00.000+00:00", - "format": "datetime", - "x-nullable": true + "description": "Payment method ID", + "x-example": "<PAYMENT_METHOD_ID>" } }, "required": [ - "name", - "scopes" + "paymentMethodId" ] } } @@ -44828,21 +44951,21 @@ } } }, - "\/organizations\/{organizationId}\/keys\/{keyId}": { - "get": { - "summary": "Get organization key", - "operationId": "organizationsGetKey", + "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/status": { + "patch": { + "summary": "Validate the payment for an invoice and update status", + "operationId": "organizationsValidateInvoice", "tags": [ "organizations" ], - "description": "Get a key by its unique ID. This endpoint returns details about a specific API key in your organization including it's scopes.", + "description": "Validates the payment linked with the invoice and updates the invoice status if the payment status is changed.", "responses": { "200": { - "description": "Key", + "description": "Invoice", "content": { "application\/json": { "schema": { - "$ref": "#\/components\/schemas\/key" + "$ref": "#\/components\/schemas\/invoice" } } } @@ -44850,21 +44973,21 @@ }, "deprecated": false, "x-appwrite": { - "method": "getKey", - "group": "keys", - "weight": 1102, + "method": "validateInvoice", + "group": null, "cookies": false, "type": "", - "demo": "organizations\/get-key.md", + "demo": "organizations\/validate-invoice.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "teams.read", + "scope": "billing.write", "platforms": [ "console" ], "packaging": false, "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/update-invoice-status.md", "auth": { "Project": [] } @@ -44877,7 +45000,7 @@ "parameters": [ { "name": "organizationId", - "description": "Organization Unique ID", + "description": "Organization ID", "required": true, "schema": { "type": "string", @@ -44886,31 +45009,33 @@ "in": "path" }, { - "name": "keyId", - "description": "Key unique ID.", + "name": "invoiceId", + "description": "Invoice unique ID", "required": true, "schema": { "type": "string", - "x-example": "<KEY_ID>" + "x-example": "<INVOICE_ID>" }, "in": "path" } ] - }, - "put": { - "summary": "Update organization key", - "operationId": "organizationsUpdateKey", + } + }, + "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/view": { + "get": { + "summary": "View invoice in PDF", + "operationId": "organizationsGetInvoiceView", "tags": [ "organizations" ], - "description": "Update a key by its unique ID. Use this endpoint to update the name, scopes, or expiration time of an API key.", + "description": "View invoice in PDF", "responses": { "200": { - "description": "Key", + "description": "paymentMethod", "content": { "application\/json": { "schema": { - "$ref": "#\/components\/schemas\/key" + "$ref": "#\/components\/schemas\/paymentMethod" } } } @@ -44918,129 +45043,21 @@ }, "deprecated": false, "x-appwrite": { - "method": "updateKey", - "group": "keys", - "weight": 1099, - "cookies": false, - "type": "", - "demo": "organizations\/update-key.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "teams.write", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization Unique ID", - "required": true, - "schema": { - "type": "string", - "x-example": "<ORGANIZATION_ID>" - }, - "in": "path" - }, - { - "name": "keyId", - "description": "Key unique ID.", - "required": true, - "schema": { - "type": "string", - "x-example": "<KEY_ID>" - }, - "in": "path" - } - ], - "requestBody": { - "content": { - "application\/json": { - "schema": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Key name. Max length: 128 chars.", - "x-example": "<NAME>" - }, - "scopes": { - "type": "array", - "description": "Key scopes list. Maximum of 100 scopes are allowed.", - "x-example": null, - "items": { - "type": "string", - "enum": [ - "projects.read", - "projects.write", - "devKeys.read", - "devKeys.write", - "domains.read", - "domains.write", - "keys.read", - "keys.write" - ], - "x-enum-name": null, - "x-enum-keys": [] - } - }, - "expire": { - "type": "string", - "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", - "x-example": "2020-10-15T06:38:00.000+00:00", - "format": "datetime", - "x-nullable": true - } - }, - "required": [ - "name", - "scopes" - ] - } - } - } - } - }, - "delete": { - "summary": "Delete organization key", - "operationId": "organizationsDeleteKey", - "tags": [ - "organizations" - ], - "description": "Delete a key by its unique ID. Once deleted, the key can no longer be used to authenticate API calls.", - "responses": { - "204": { - "description": "No content" - } - }, - "deprecated": false, - "x-appwrite": { - "method": "deleteKey", - "group": "keys", - "weight": 1101, + "method": "getInvoiceView", + "group": null, "cookies": false, "type": "", - "demo": "organizations\/delete-key.md", + "demo": "organizations\/get-invoice-view.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "teams.write", + "scope": "billing.read", "platforms": [ "console" ], "packaging": false, "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/get-invoice-view.md", "auth": { "Project": [] } @@ -45053,7 +45070,7 @@ "parameters": [ { "name": "organizationId", - "description": "Organization Unique ID", + "description": "Organization ID", "required": true, "schema": { "type": "string", @@ -45062,12 +45079,12 @@ "in": "path" }, { - "name": "keyId", - "description": "Key unique ID.", + "name": "invoiceId", + "description": "Invoice unique ID", "required": true, "schema": { "type": "string", - "x-example": "<KEY_ID>" + "x-example": "<INVOICE_ID>" }, "in": "path" } @@ -45098,7 +45115,6 @@ "x-appwrite": { "method": "setDefaultPaymentMethod", "group": null, - "weight": 1073, "cookies": false, "type": "", "demo": "organizations\/set-default-payment-method.md", @@ -45176,7 +45192,6 @@ "x-appwrite": { "method": "deleteDefaultPaymentMethod", "group": null, - "weight": 1075, "cookies": false, "type": "", "demo": "organizations\/delete-default-payment-method.md", @@ -45237,7 +45252,6 @@ "x-appwrite": { "method": "setBackupPaymentMethod", "group": null, - "weight": 1074, "cookies": false, "type": "", "demo": "organizations\/set-backup-payment-method.md", @@ -45315,7 +45329,6 @@ "x-appwrite": { "method": "deleteBackupPaymentMethod", "group": null, - "weight": 1076, "cookies": false, "type": "", "demo": "organizations\/delete-backup-payment-method.md", @@ -45376,7 +45389,6 @@ "x-appwrite": { "method": "getPaymentMethod", "group": null, - "weight": 1072, "cookies": false, "type": "", "demo": "organizations\/get-payment-method.md", @@ -45447,7 +45459,6 @@ "x-appwrite": { "method": "getPlan", "group": null, - "weight": 1063, "cookies": false, "type": "", "demo": "organizations\/get-plan.md", @@ -45506,7 +45517,6 @@ "x-appwrite": { "method": "updatePlan", "group": null, - "weight": 1064, "cookies": false, "type": "", "demo": "organizations\/update-plan.md", @@ -45561,11 +45571,13 @@ "billingAddressId": { "type": "string", "description": "Unique ID of billing address", + "default": "", "x-example": "<BILLING_ADDRESS_ID>" }, "invites": { "type": "array", "description": "Additional member invites", + "default": [], "x-example": null, "items": { "type": "string" @@ -45624,7 +45636,6 @@ "x-appwrite": { "method": "cancelDowngrade", "group": null, - "weight": 1065, "cookies": false, "type": "", "demo": "organizations\/cancel-downgrade.md", @@ -45685,7 +45696,6 @@ "x-appwrite": { "method": "createPlanEstimation", "group": null, - "weight": 1094, "cookies": false, "type": "", "demo": "organizations\/create-plan-estimation.md", @@ -45734,6 +45744,7 @@ "invites": { "type": "array", "description": "Additional member invites", + "default": [], "x-example": null, "items": { "type": "string" @@ -45779,7 +45790,6 @@ "x-appwrite": { "method": "listRegions", "group": null, - "weight": 1092, "cookies": false, "type": "", "demo": "organizations\/list-regions.md", @@ -45840,7 +45850,6 @@ "x-appwrite": { "method": "getScopes", "group": null, - "weight": 1091, "cookies": false, "type": "", "demo": "organizations\/get-scopes.md", @@ -45912,7 +45921,6 @@ "x-appwrite": { "method": "setBillingTaxId", "group": null, - "weight": 1067, "cookies": false, "type": "", "demo": "organizations\/set-billing-tax-id.md", @@ -45993,7 +46001,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 1068, "cookies": false, "type": "", "demo": "organizations\/get-usage.md", @@ -46076,7 +46083,6 @@ "x-appwrite": { "method": "validatePayment", "group": null, - "weight": 1090, "cookies": false, "type": "", "demo": "organizations\/validate-payment.md", @@ -46120,6 +46126,7 @@ "invites": { "type": "array", "description": "Additional member invites", + "default": [], "x-example": null, "items": { "type": "string" @@ -46156,7 +46163,6 @@ "x-appwrite": { "method": "list", "group": "presences", - "weight": 419, "cookies": false, "type": "", "demo": "presences\/list.md", @@ -46249,7 +46255,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 417, "cookies": false, "type": "", "demo": "presences\/get-usage.md", @@ -46286,7 +46291,11 @@ "90d" ], "x-enum-name": "UsageRange", - "x-enum-keys": [], + "x-enum-keys": [ + "Twenty Four Hours", + "Thirty Days", + "Ninety Days" + ], "default": "30d" }, "in": "query" @@ -46318,7 +46327,6 @@ "x-appwrite": { "method": "get", "group": "presences", - "weight": 418, "cookies": false, "type": "", "demo": "presences\/get.md", @@ -46383,7 +46391,6 @@ "x-appwrite": { "method": "upsert", "group": "presences", - "weight": 416, "cookies": false, "type": "", "demo": "presences\/upsert.md", @@ -46484,6 +46491,7 @@ "metadata": { "type": "object", "description": "Presence metadata object.", + "default": {}, "x-example": "{}" } }, @@ -46518,7 +46526,6 @@ "x-appwrite": { "method": "update", "group": "presences", - "weight": 420, "cookies": false, "type": "", "demo": "presences\/update.md", @@ -46624,6 +46631,7 @@ "purge": { "type": "boolean", "description": "When true, purge cached responses used by list presences endpoint.", + "default": false, "x-example": false } } @@ -46648,7 +46656,6 @@ "x-appwrite": { "method": "delete", "group": "presences", - "weight": 421, "cookies": false, "type": "", "demo": "presences\/delete.md", @@ -46715,7 +46722,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 1161, "cookies": false, "type": "", "demo": "project\/get.md", @@ -46756,7 +46762,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 1160, "cookies": false, "type": "", "demo": "project\/delete.md", @@ -46806,7 +46811,6 @@ "x-appwrite": { "method": "updateAuthMethod", "group": null, - "weight": 1210, "cookies": false, "type": "", "demo": "project\/update-auth-method.md", @@ -46847,8 +46851,7 @@ "jwt", "phone" ], - "x-enum-name": "ProjectAuthMethodId", - "x-enum-keys": [] + "x-enum-name": "ProjectAuthMethodId" }, "in": "path" } @@ -46898,7 +46901,6 @@ "x-appwrite": { "method": "listKeys", "group": "keys", - "weight": 1177, "cookies": false, "type": "", "demo": "project\/list-keys.md", @@ -46972,7 +46974,6 @@ "x-appwrite": { "method": "createKey", "group": "keys", - "weight": 1175, "cookies": false, "type": "", "demo": "project\/create-key.md", @@ -47114,8 +47115,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "expire": { @@ -47161,7 +47161,6 @@ "x-appwrite": { "method": "createEphemeralKey", "group": "keys", - "weight": 1176, "cookies": false, "type": "", "demo": "project\/create-ephemeral-key.md", @@ -47293,8 +47292,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "duration": { @@ -47338,7 +47336,6 @@ "x-appwrite": { "method": "getKey", "group": "keys", - "weight": 1178, "cookies": false, "type": "", "demo": "project\/get-key.md", @@ -47398,7 +47395,6 @@ "x-appwrite": { "method": "updateKey", "group": "keys", - "weight": 1180, "cookies": false, "type": "", "demo": "project\/update-key.md", @@ -47547,8 +47543,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "expire": { @@ -47584,7 +47579,6 @@ "x-appwrite": { "method": "deleteKey", "group": "keys", - "weight": 1179, "cookies": false, "type": "", "demo": "project\/delete-key.md", @@ -47646,7 +47640,6 @@ "x-appwrite": { "method": "updateLabels", "group": null, - "weight": 1162, "cookies": false, "type": "", "demo": "project\/update-labels.md", @@ -47718,7 +47711,6 @@ "x-appwrite": { "method": "listMockPhones", "group": "mocks", - "weight": 1195, "cookies": false, "type": "", "demo": "project\/list-mock-phones.md", @@ -47792,7 +47784,6 @@ "x-appwrite": { "method": "createMockPhone", "group": "mocks", - "weight": 1194, "cookies": false, "type": "", "demo": "project\/create-mock-phone.md", @@ -47868,7 +47859,6 @@ "x-appwrite": { "method": "getMockPhone", "group": "mocks", - "weight": 1196, "cookies": false, "type": "", "demo": "project\/get-mock-phone.md", @@ -47929,7 +47919,6 @@ "x-appwrite": { "method": "updateMockPhone", "group": "mocks", - "weight": 1197, "cookies": false, "type": "", "demo": "project\/update-mock-phone.md", @@ -48002,7 +47991,6 @@ "x-appwrite": { "method": "deleteMockPhone", "group": "mocks", - "weight": 1198, "cookies": false, "type": "", "demo": "project\/delete-mock-phone.md", @@ -48065,7 +48053,6 @@ "x-appwrite": { "method": "listOAuth2Providers", "group": "oauth2", - "weight": 1211, "cookies": false, "type": "", "demo": "project\/list-o-auth-2-providers.md", @@ -48141,7 +48128,6 @@ "x-appwrite": { "method": "updateOAuth2Amazon", "group": "oauth2", - "weight": 1238, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-amazon.md", @@ -48220,7 +48206,6 @@ "x-appwrite": { "method": "updateOAuth2Apple", "group": "oauth2", - "weight": 1253, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-apple.md", @@ -48311,7 +48296,6 @@ "x-appwrite": { "method": "updateOAuth2Auth0", "group": "oauth2", - "weight": 1247, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-auth-0.md", @@ -48396,7 +48380,6 @@ "x-appwrite": { "method": "updateOAuth2Authentik", "group": "oauth2", - "weight": 1246, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-authentik.md", @@ -48481,7 +48464,6 @@ "x-appwrite": { "method": "updateOAuth2Autodesk", "group": "oauth2", - "weight": 1221, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-autodesk.md", @@ -48560,7 +48542,6 @@ "x-appwrite": { "method": "updateOAuth2Bitbucket", "group": "oauth2", - "weight": 1218, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-bitbucket.md", @@ -48639,7 +48620,6 @@ "x-appwrite": { "method": "updateOAuth2Bitly", "group": "oauth2", - "weight": 1219, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-bitly.md", @@ -48718,7 +48698,6 @@ "x-appwrite": { "method": "updateOAuth2Box", "group": "oauth2", - "weight": 1220, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-box.md", @@ -48797,7 +48776,6 @@ "x-appwrite": { "method": "updateOAuth2Dailymotion", "group": "oauth2", - "weight": 1217, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-dailymotion.md", @@ -48876,7 +48854,6 @@ "x-appwrite": { "method": "updateOAuth2Discord", "group": "oauth2", - "weight": 1214, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-discord.md", @@ -48955,7 +48932,6 @@ "x-appwrite": { "method": "updateOAuth2Disqus", "group": "oauth2", - "weight": 1237, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-disqus.md", @@ -49034,7 +49010,6 @@ "x-appwrite": { "method": "updateOAuth2Dropbox", "group": "oauth2", - "weight": 1216, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-dropbox.md", @@ -49113,7 +49088,6 @@ "x-appwrite": { "method": "updateOAuth2Etsy", "group": "oauth2", - "weight": 1239, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-etsy.md", @@ -49192,7 +49166,6 @@ "x-appwrite": { "method": "updateOAuth2Facebook", "group": "oauth2", - "weight": 1240, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-facebook.md", @@ -49271,7 +49244,6 @@ "x-appwrite": { "method": "updateOAuth2Figma", "group": "oauth2", - "weight": 1215, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-figma.md", @@ -49350,7 +49322,6 @@ "x-appwrite": { "method": "updateOAuth2FusionAuth", "group": "oauth2", - "weight": 1248, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-fusion-auth.md", @@ -49435,7 +49406,6 @@ "x-appwrite": { "method": "updateOAuth2GitHub", "group": "oauth2", - "weight": 1213, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-git-hub.md", @@ -49514,7 +49484,6 @@ "x-appwrite": { "method": "updateOAuth2Gitlab", "group": "oauth2", - "weight": 1245, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-gitlab.md", @@ -49600,7 +49569,6 @@ "x-appwrite": { "method": "updateOAuth2Google", "group": "oauth2", - "weight": 1222, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-google.md", @@ -49653,8 +49621,7 @@ "consent", "select_account" ], - "x-enum-name": "ProjectOAuth2GooglePrompt", - "x-enum-keys": [] + "x-enum-name": "ProjectOAuth2GooglePrompt" }, "x-nullable": true }, @@ -49695,7 +49662,6 @@ "x-appwrite": { "method": "updateOAuth2Keycloak", "group": "oauth2", - "weight": 1249, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-keycloak.md", @@ -49786,7 +49752,6 @@ "x-appwrite": { "method": "updateOAuth2Kick", "group": "oauth2", - "weight": 1252, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-kick.md", @@ -49865,7 +49830,6 @@ "x-appwrite": { "method": "updateOAuth2Linkedin", "group": "oauth2", - "weight": 1236, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-linkedin.md", @@ -49944,7 +49908,6 @@ "x-appwrite": { "method": "updateOAuth2Microsoft", "group": "oauth2", - "weight": 1254, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-microsoft.md", @@ -50029,7 +49992,6 @@ "x-appwrite": { "method": "updateOAuth2Notion", "group": "oauth2", - "weight": 1233, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-notion.md", @@ -50108,7 +50070,6 @@ "x-appwrite": { "method": "updateOAuth2Oidc", "group": "oauth2", - "weight": 1250, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-oidc.md", @@ -50215,7 +50176,6 @@ "x-appwrite": { "method": "updateOAuth2Okta", "group": "oauth2", - "weight": 1251, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-okta.md", @@ -50306,7 +50266,6 @@ "x-appwrite": { "method": "updateOAuth2Paypal", "group": "oauth2", - "weight": 1243, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-paypal.md", @@ -50385,7 +50344,6 @@ "x-appwrite": { "method": "updateOAuth2PaypalSandbox", "group": "oauth2", - "weight": 1244, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-paypal-sandbox.md", @@ -50464,7 +50422,6 @@ "x-appwrite": { "method": "updateOAuth2Podio", "group": "oauth2", - "weight": 1232, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-podio.md", @@ -50543,7 +50500,6 @@ "x-appwrite": { "method": "updateOAuth2Salesforce", "group": "oauth2", - "weight": 1234, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-salesforce.md", @@ -50622,7 +50578,6 @@ "x-appwrite": { "method": "updateOAuth2Slack", "group": "oauth2", - "weight": 1231, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-slack.md", @@ -50701,7 +50656,6 @@ "x-appwrite": { "method": "updateOAuth2Spotify", "group": "oauth2", - "weight": 1230, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-spotify.md", @@ -50780,7 +50734,6 @@ "x-appwrite": { "method": "updateOAuth2Stripe", "group": "oauth2", - "weight": 1229, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-stripe.md", @@ -50859,7 +50812,6 @@ "x-appwrite": { "method": "updateOAuth2Tradeshift", "group": "oauth2", - "weight": 1241, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-tradeshift.md", @@ -50938,7 +50890,6 @@ "x-appwrite": { "method": "updateOAuth2TradeshiftSandbox", "group": "oauth2", - "weight": 1242, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-tradeshift-sandbox.md", @@ -51017,7 +50968,6 @@ "x-appwrite": { "method": "updateOAuth2Twitch", "group": "oauth2", - "weight": 1228, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-twitch.md", @@ -51096,7 +51046,6 @@ "x-appwrite": { "method": "updateOAuth2WordPress", "group": "oauth2", - "weight": 1227, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-word-press.md", @@ -51175,7 +51124,6 @@ "x-appwrite": { "method": "updateOAuth2X", "group": "oauth2", - "weight": 1226, "cookies": false, "type": "", "demo": "project\/update-o-auth-2x.md", @@ -51254,7 +51202,6 @@ "x-appwrite": { "method": "updateOAuth2Yahoo", "group": "oauth2", - "weight": 1235, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-yahoo.md", @@ -51333,7 +51280,6 @@ "x-appwrite": { "method": "updateOAuth2Yandex", "group": "oauth2", - "weight": 1225, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-yandex.md", @@ -51412,7 +51358,6 @@ "x-appwrite": { "method": "updateOAuth2Zoho", "group": "oauth2", - "weight": 1224, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-zoho.md", @@ -51491,7 +51436,6 @@ "x-appwrite": { "method": "updateOAuth2Zoom", "group": "oauth2", - "weight": 1223, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-zoom.md", @@ -51738,7 +51682,6 @@ "x-appwrite": { "method": "getOAuth2Provider", "group": "oauth2", - "weight": 1212, "cookies": false, "type": "", "demo": "project\/get-o-auth-2-provider.md", @@ -51813,12 +51756,9 @@ "yammer", "yandex", "zoho", - "zoom", - "githubImagine", - "googleImagine" + "zoom" ], - "x-enum-name": "ProjectOAuthProviderId", - "x-enum-keys": [] + "x-enum-name": "ProjectOAuthProviderId" }, "in": "path" } @@ -51849,7 +51789,6 @@ "x-appwrite": { "method": "listPlatforms", "group": "platforms", - "weight": 1181, "cookies": false, "type": "", "demo": "project\/list-platforms.md", @@ -51925,7 +51864,6 @@ "x-appwrite": { "method": "createAndroidPlatform", "group": "platforms", - "weight": 1185, "cookies": false, "type": "", "demo": "project\/create-android-platform.md", @@ -52006,7 +51944,6 @@ "x-appwrite": { "method": "updateAndroidPlatform", "group": "platforms", - "weight": 1190, "cookies": false, "type": "", "demo": "project\/update-android-platform.md", @@ -52093,7 +52030,6 @@ "x-appwrite": { "method": "createApplePlatform", "group": "platforms", - "weight": 1184, "cookies": false, "type": "", "demo": "project\/create-apple-platform.md", @@ -52174,7 +52110,6 @@ "x-appwrite": { "method": "updateApplePlatform", "group": "platforms", - "weight": 1189, "cookies": false, "type": "", "demo": "project\/update-apple-platform.md", @@ -52261,7 +52196,6 @@ "x-appwrite": { "method": "createLinuxPlatform", "group": "platforms", - "weight": 1187, "cookies": false, "type": "", "demo": "project\/create-linux-platform.md", @@ -52342,7 +52276,6 @@ "x-appwrite": { "method": "updateLinuxPlatform", "group": "platforms", - "weight": 1192, "cookies": false, "type": "", "demo": "project\/update-linux-platform.md", @@ -52429,7 +52362,6 @@ "x-appwrite": { "method": "createWebPlatform", "group": "platforms", - "weight": 1183, "cookies": false, "type": "", "demo": "project\/create-web-platform.md", @@ -52510,7 +52442,6 @@ "x-appwrite": { "method": "updateWebPlatform", "group": "platforms", - "weight": 1188, "cookies": false, "type": "", "demo": "project\/update-web-platform.md", @@ -52597,7 +52528,6 @@ "x-appwrite": { "method": "createWindowsPlatform", "group": "platforms", - "weight": 1186, "cookies": false, "type": "", "demo": "project\/create-windows-platform.md", @@ -52678,7 +52608,6 @@ "x-appwrite": { "method": "updateWindowsPlatform", "group": "platforms", - "weight": 1191, "cookies": false, "type": "", "demo": "project\/update-windows-platform.md", @@ -52791,7 +52720,6 @@ "x-appwrite": { "method": "getPlatform", "group": "platforms", - "weight": 1182, "cookies": false, "type": "", "demo": "project\/get-platform.md", @@ -52844,7 +52772,6 @@ "x-appwrite": { "method": "deletePlatform", "group": "platforms", - "weight": 1193, "cookies": false, "type": "", "demo": "project\/delete-platform.md", @@ -52906,7 +52833,6 @@ "x-appwrite": { "method": "listPolicies", "group": "policies", - "weight": 1199, "cookies": false, "type": "", "demo": "project\/list-policies.md", @@ -52985,7 +52911,6 @@ "x-appwrite": { "method": "updateDenyAliasedEmailPolicy", "group": "policies", - "weight": 1255, "cookies": false, "type": "", "demo": "project\/update-deny-aliased-email-policy.md", @@ -53057,7 +52982,6 @@ "x-appwrite": { "method": "updateDenyDisposableEmailPolicy", "group": "policies", - "weight": 1256, "cookies": false, "type": "", "demo": "project\/update-deny-disposable-email-policy.md", @@ -53129,7 +53053,6 @@ "x-appwrite": { "method": "updateDenyFreeEmailPolicy", "group": "policies", - "weight": 1257, "cookies": false, "type": "", "demo": "project\/update-deny-free-email-policy.md", @@ -53201,7 +53124,6 @@ "x-appwrite": { "method": "updateMembershipPrivacyPolicy", "group": "policies", - "weight": 1201, "cookies": false, "type": "", "demo": "project\/update-membership-privacy-policy.md", @@ -53290,7 +53212,6 @@ "x-appwrite": { "method": "updatePasswordDictionaryPolicy", "group": "policies", - "weight": 1202, "cookies": false, "type": "", "demo": "project\/update-password-dictionary-policy.md", @@ -53362,7 +53283,6 @@ "x-appwrite": { "method": "updatePasswordHistoryPolicy", "group": "policies", - "weight": 1203, "cookies": false, "type": "", "demo": "project\/update-password-history-policy.md", @@ -53436,7 +53356,6 @@ "x-appwrite": { "method": "updatePasswordPersonalDataPolicy", "group": "policies", - "weight": 1204, "cookies": false, "type": "", "demo": "project\/update-password-personal-data-policy.md", @@ -53508,7 +53427,6 @@ "x-appwrite": { "method": "updateSessionAlertPolicy", "group": "policies", - "weight": 1205, "cookies": false, "type": "", "demo": "project\/update-session-alert-policy.md", @@ -53580,7 +53498,6 @@ "x-appwrite": { "method": "updateSessionDurationPolicy", "group": "policies", - "weight": 1206, "cookies": false, "type": "", "demo": "project\/update-session-duration-policy.md", @@ -53653,7 +53570,6 @@ "x-appwrite": { "method": "updateSessionInvalidationPolicy", "group": "policies", - "weight": 1207, "cookies": false, "type": "", "demo": "project\/update-session-invalidation-policy.md", @@ -53725,7 +53641,6 @@ "x-appwrite": { "method": "updateSessionLimitPolicy", "group": "policies", - "weight": 1208, "cookies": false, "type": "", "demo": "project\/update-session-limit-policy.md", @@ -53799,7 +53714,6 @@ "x-appwrite": { "method": "updateUserLimitPolicy", "group": "policies", - "weight": 1209, "cookies": false, "type": "", "demo": "project\/update-user-limit-policy.md", @@ -53915,7 +53829,6 @@ "x-appwrite": { "method": "getPolicy", "group": "policies", - "weight": 1200, "cookies": false, "type": "", "demo": "project\/get-policy.md", @@ -53961,8 +53874,7 @@ "user-limit", "membership-privacy" ], - "x-enum-name": "ProjectPolicyId", - "x-enum-keys": [] + "x-enum-name": "ProjectPolicyId" }, "in": "path" } @@ -53993,7 +53905,6 @@ "x-appwrite": { "method": "updateProtocol", "group": null, - "weight": 1163, "cookies": false, "type": "", "demo": "project\/update-protocol.md", @@ -54030,8 +53941,7 @@ "graphql", "websocket" ], - "x-enum-name": "ProjectProtocolId", - "x-enum-keys": [] + "x-enum-name": "ProjectProtocolId" }, "in": "path" } @@ -54081,7 +53991,6 @@ "x-appwrite": { "method": "updateService", "group": null, - "weight": 1164, "cookies": false, "type": "", "demo": "project\/update-service.md", @@ -54133,8 +54042,7 @@ "messaging", "advisor" ], - "x-enum-name": "ProjectServiceId", - "x-enum-keys": [] + "x-enum-name": "ProjectServiceId" }, "in": "path" } @@ -54184,7 +54092,6 @@ "x-appwrite": { "method": "updateSMTP", "group": "smtp", - "weight": 1165, "cookies": false, "type": "", "demo": "project\/update-smtp.md", @@ -54274,7 +54181,6 @@ "ssl" ], "x-enum-name": "ProjectSMTPSecure", - "x-enum-keys": [], "x-nullable": true }, "enabled": { @@ -54307,7 +54213,6 @@ "x-appwrite": { "method": "createSMTPTest", "group": "smtp", - "weight": 1166, "cookies": false, "type": "", "demo": "project\/create-smtp-test.md", @@ -54379,7 +54284,6 @@ "x-appwrite": { "method": "listEmailTemplates", "group": "templates", - "weight": 1167, "cookies": false, "type": "", "demo": "project\/list-email-templates.md", @@ -54453,7 +54357,6 @@ "x-appwrite": { "method": "updateEmailTemplate", "group": "templates", - "weight": 1169, "cookies": false, "type": "", "demo": "project\/update-email-template.md", @@ -54496,8 +54399,7 @@ "sessionAlert", "otpSession" ], - "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateId" }, "locale": { "type": "string", @@ -54636,8 +54538,7 @@ "zh-tw", "zu" ], - "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateLocale" }, "subject": { "type": "string", @@ -54711,7 +54612,6 @@ "x-appwrite": { "method": "getEmailTemplate", "group": "templates", - "weight": 1168, "cookies": false, "type": "", "demo": "project\/get-email-template.md", @@ -54752,8 +54652,7 @@ "sessionAlert", "otpSession" ], - "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateId" }, "in": "path" }, @@ -54897,8 +54796,7 @@ "zh-tw", "zu" ], - "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateLocale" }, "in": "query" } @@ -54929,7 +54827,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 699, "cookies": false, "type": "", "demo": "project\/get-usage.md", @@ -54988,8 +54885,8 @@ ], "x-enum-name": "ProjectUsageRange", "x-enum-keys": [ - "One Hour", - "One Day" + "OneHour", + "OneDay" ], "default": "1d" }, @@ -55022,7 +54919,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 1171, "cookies": false, "type": "", "demo": "project\/list-variables.md", @@ -55096,7 +54992,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 1170, "cookies": false, "type": "", "demo": "project\/create-variable.md", @@ -55144,6 +55039,7 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only projects can read them during build and runtime.", + "default": true, "x-example": false } }, @@ -55182,7 +55078,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 1172, "cookies": false, "type": "", "demo": "project\/get-variable.md", @@ -55218,165 +55113,21 @@ "in": "path" } ] - }, - "put": { - "summary": "Update project variable", - "operationId": "projectUpdateVariable", - "tags": [ - "project" - ], - "description": "Update variable by its unique ID.", - "responses": { - "200": { - "description": "Variable", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/variable" - } - } - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "updateVariable", - "group": "variables", - "weight": 1174, - "cookies": false, - "type": "", - "demo": "project\/update-variable.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "project.write", - "platforms": [ - "console", - "server" - ], - "packaging": false, - "public": true, - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [], - "Key": [] - } - ], - "parameters": [ - { - "name": "variableId", - "description": "Variable unique ID.", - "required": true, - "schema": { - "type": "string", - "x-example": "<VARIABLE_ID>" - }, - "in": "path" - } - ], - "requestBody": { - "content": { - "application\/json": { - "schema": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "Variable key. Max length: 255 chars.", - "x-example": "<KEY>", - "x-nullable": true - }, - "value": { - "type": "string", - "description": "Variable value. Max length: 8192 chars.", - "x-example": "<VALUE>", - "x-nullable": true - }, - "secret": { - "type": "boolean", - "description": "Secret variables can be updated or deleted, but only projects can read them during build and runtime.", - "x-example": false, - "x-nullable": true - } - } - } - } - } - } - }, - "delete": { - "summary": "Delete project variable", - "operationId": "projectDeleteVariable", - "tags": [ - "project" - ], - "description": "Delete a variable by its unique ID. ", - "responses": { - "204": { - "description": "No content" - } - }, - "deprecated": false, - "x-appwrite": { - "method": "deleteVariable", - "group": "variables", - "weight": 1173, - "cookies": false, - "type": "", - "demo": "project\/delete-variable.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "project.write", - "platforms": [ - "console", - "server" - ], - "packaging": false, - "public": true, - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [], - "Key": [] - } - ], - "parameters": [ - { - "name": "variableId", - "description": "Variable unique ID.", - "required": true, - "schema": { - "type": "string", - "x-example": "<VARIABLE_ID>" - }, - "in": "path" - } - ] - } - }, - "\/projects": { - "get": { - "summary": "List projects", - "operationId": "projectsList", + }, + "put": { + "summary": "Update project variable", + "operationId": "projectUpdateVariable", "tags": [ - "projects" + "project" ], - "description": "Get a list of all projects. You can use the query params to filter your results. ", + "description": "Update variable by its unique ID.", "responses": { "200": { - "description": "Projects List", + "description": "Variable", "content": { "application\/json": { "schema": { - "$ref": "#\/components\/schemas\/projectList" + "$ref": "#\/components\/schemas\/variable" } } } @@ -55384,18 +55135,18 @@ }, "deprecated": false, "x-appwrite": { - "method": "list", - "group": "projects", - "weight": 1158, + "method": "updateVariable", + "group": "variables", "cookies": false, "type": "", - "demo": "projects\/list.md", + "demo": "project\/update-variable.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "projects.read", + "scope": "project.write", "platforms": [ - "console" + "console", + "server" ], "packaging": false, "public": true, @@ -55405,91 +55156,20 @@ }, "security": [ { - "Project": [] + "Project": [], + "Key": [] } ], "parameters": [ { - "name": "queries", - "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, teamId, labels, search", - "required": false, - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "default": [] - }, - "in": "query" - }, - { - "name": "search", - "description": "Search term to filter your list results. Max length: 256 chars.", - "required": false, + "name": "variableId", + "description": "Variable unique ID.", + "required": true, "schema": { "type": "string", - "x-example": "<SEARCH>", - "default": "" - }, - "in": "query" - }, - { - "name": "total", - "description": "When set to false, the total count returned will be 0 and will not be calculated.", - "required": false, - "schema": { - "type": "boolean", - "x-example": false, - "default": true + "x-example": "<VARIABLE_ID>" }, - "in": "query" - } - ] - }, - "post": { - "summary": "Create project", - "operationId": "projectsCreate", - "tags": [ - "projects" - ], - "description": "Create a new project. You can create a maximum of 100 projects per account. ", - "responses": { - "201": { - "description": "Project", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/project" - } - } - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "create", - "group": "projects", - "weight": 1156, - "cookies": false, - "type": "", - "demo": "projects\/create.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "projects.write", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/projects\/create.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] + "in": "path" } ], "requestBody": { @@ -55498,172 +55178,81 @@ "schema": { "type": "object", "properties": { - "projectId": { - "type": "string", - "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, and hyphen. Can't start with a special char. Max length is 36 chars.", - "x-example": null - }, - "name": { + "key": { "type": "string", - "description": "Project name. Max length: 128 chars.", - "x-example": "<NAME>" + "description": "Variable key. Max length: 255 chars.", + "x-example": "<KEY>", + "x-nullable": true }, - "teamId": { + "value": { "type": "string", - "description": "Team unique ID.", - "x-example": "<TEAM_ID>" + "description": "Variable value. Max length: 8192 chars.", + "x-example": "<VALUE>", + "x-nullable": true }, - "region": { - "type": "string", - "description": "Project Region.", - "x-example": "fra", - "enum": [ - "fra", - "nyc", - "syd", - "sfo", - "sgp", - "tor" - ], - "x-enum-name": null, - "x-enum-keys": [] + "secret": { + "type": "boolean", + "description": "Secret variables can be updated or deleted, but only projects can read them during build and runtime.", + "x-example": false, + "x-nullable": true } - }, - "required": [ - "projectId", - "name", - "teamId" - ] + } } } } } - } - }, - "\/projects\/{projectId}": { - "patch": { - "summary": "Update project", - "operationId": "projectsUpdate", + }, + "delete": { + "summary": "Delete project variable", + "operationId": "projectDeleteVariable", "tags": [ - "projects" + "project" ], - "description": "Update a project by its unique ID.", + "description": "Delete a variable by its unique ID. ", "responses": { - "200": { - "description": "Project", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/project" - } - } - } + "204": { + "description": "No content" } }, "deprecated": false, "x-appwrite": { - "method": "update", - "group": "projects", - "weight": 1157, + "method": "deleteVariable", + "group": "variables", "cookies": false, "type": "", - "demo": "projects\/update.md", + "demo": "project\/delete-variable.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "projects.write", + "scope": "project.write", "platforms": [ - "console" + "console", + "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/projects\/update.md", "auth": { "Project": [] } }, "security": [ { - "Project": [] + "Project": [], + "Key": [] } ], "parameters": [ { - "name": "projectId", - "description": "Project unique ID.", + "name": "variableId", + "description": "Variable unique ID.", "required": true, "schema": { "type": "string", - "x-example": "<PROJECT_ID>" + "x-example": "<VARIABLE_ID>" }, "in": "path" } - ], - "requestBody": { - "content": { - "application\/json": { - "schema": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Project name. Max length: 128 chars.", - "x-example": "<NAME>" - }, - "description": { - "type": "string", - "description": "Project description. Max length: 256 chars.", - "x-example": "<DESCRIPTION>" - }, - "logo": { - "type": "string", - "description": "Project logo.", - "x-example": "<LOGO>" - }, - "url": { - "type": "string", - "description": "Project URL.", - "x-example": "https:\/\/example.com", - "format": "url" - }, - "legalName": { - "type": "string", - "description": "Project legal name. Max length: 256 chars.", - "x-example": "<LEGAL_NAME>" - }, - "legalCountry": { - "type": "string", - "description": "Project legal country. Max length: 256 chars.", - "x-example": "<LEGAL_COUNTRY>" - }, - "legalState": { - "type": "string", - "description": "Project legal state. Max length: 256 chars.", - "x-example": "<LEGAL_STATE>" - }, - "legalCity": { - "type": "string", - "description": "Project legal city. Max length: 256 chars.", - "x-example": "<LEGAL_CITY>" - }, - "legalAddress": { - "type": "string", - "description": "Project legal address. Max length: 256 chars.", - "x-example": "<LEGAL_ADDRESS>" - }, - "legalTaxId": { - "type": "string", - "description": "Project legal tax ID. Max length: 256 chars.", - "x-example": "<LEGAL_TAX_ID>" - } - }, - "required": [ - "name" - ] - } - } - } - } + ] } }, "\/projects\/{projectId}\/console-access": { @@ -55683,7 +55272,6 @@ "x-appwrite": { "method": "updateConsoleAccess", "group": null, - "weight": 1153, "cookies": false, "type": "", "demo": "projects\/update-console-access.md", @@ -55744,7 +55332,6 @@ "x-appwrite": { "method": "listDevKeys", "group": "devKeys", - "weight": 407, "cookies": false, "type": "", "demo": "projects\/list-dev-keys.md", @@ -55815,7 +55402,6 @@ "x-appwrite": { "method": "createDevKey", "group": "devKeys", - "weight": 404, "cookies": false, "type": "", "demo": "projects\/create-dev-key.md", @@ -55901,7 +55487,6 @@ "x-appwrite": { "method": "getDevKey", "group": "devKeys", - "weight": 406, "cookies": false, "type": "", "demo": "projects\/get-dev-key.md", @@ -55969,7 +55554,6 @@ "x-appwrite": { "method": "updateDevKey", "group": "devKeys", - "weight": 405, "cookies": false, "type": "", "demo": "projects\/update-dev-key.md", @@ -56056,7 +55640,6 @@ "x-appwrite": { "method": "deleteDevKey", "group": "devKeys", - "weight": 408, "cookies": false, "type": "", "demo": "projects\/delete-dev-key.md", @@ -56126,7 +55709,6 @@ "x-appwrite": { "method": "listSchedules", "group": "schedules", - "weight": 415, "cookies": false, "type": "", "demo": "projects\/list-schedules.md", @@ -56209,7 +55791,6 @@ "x-appwrite": { "method": "createSchedule", "group": "schedules", - "weight": 1159, "cookies": false, "type": "", "demo": "projects\/create-schedule.md", @@ -56260,8 +55841,7 @@ "message", "backup" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ScheduleResourceType" }, "resourceId": { "type": "string", @@ -56276,6 +55856,7 @@ "active": { "type": "boolean", "description": "Whether the schedule is active.", + "default": false, "x-example": false }, "data": { @@ -56319,7 +55900,6 @@ "x-appwrite": { "method": "getSchedule", "group": "schedules", - "weight": 414, "cookies": false, "type": "", "demo": "projects\/get-schedule.md", @@ -56383,7 +55963,6 @@ "x-appwrite": { "method": "updateStatus", "group": null, - "weight": 1154, "cookies": false, "type": "", "demo": "projects\/update-status.md", @@ -56431,8 +56010,7 @@ "enum": [ "active" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectStatus" } }, "required": [ @@ -56468,7 +56046,6 @@ "x-appwrite": { "method": "updateTeam", "group": "projects", - "weight": 1155, "cookies": false, "type": "", "demo": "projects\/update-team.md", @@ -56548,7 +56125,6 @@ "x-appwrite": { "method": "listRules", "group": "rules", - "weight": 1267, "cookies": false, "type": "", "demo": "proxy\/list-rules.md", @@ -56624,7 +56200,6 @@ "x-appwrite": { "method": "createAPIRule", "group": "rules", - "weight": 1262, "cookies": false, "type": "", "demo": "proxy\/create-api-rule.md", @@ -56693,7 +56268,6 @@ "x-appwrite": { "method": "createFunctionRule", "group": "rules", - "weight": 1264, "cookies": false, "type": "", "demo": "proxy\/create-function-rule.md", @@ -56736,6 +56310,7 @@ "branch": { "type": "string", "description": "Name of VCS branch to deploy changes automatically", + "default": "", "x-example": "<BRANCH>" } }, @@ -56773,7 +56348,6 @@ "x-appwrite": { "method": "createRedirectRule", "group": "rules", - "weight": 1265, "cookies": false, "type": "", "demo": "proxy\/create-redirect-rule.md", @@ -56824,12 +56398,12 @@ "307", "308" ], - "x-enum-name": null, + "x-enum-name": "RedirectStatusCode", "x-enum-keys": [ - "Moved Permanently 301", - "Found 302", - "Temporary Redirect 307", - "Permanent Redirect 308" + "MovedPermanently", + "Found", + "TemporaryRedirect", + "PermanentRedirect" ] }, "resourceId": { @@ -56889,7 +56463,6 @@ "x-appwrite": { "method": "createSiteRule", "group": "rules", - "weight": 1263, "cookies": false, "type": "", "demo": "proxy\/create-site-rule.md", @@ -56932,6 +56505,7 @@ "branch": { "type": "string", "description": "Name of VCS branch to deploy changes automatically", + "default": "", "x-example": "<BRANCH>" } }, @@ -56969,7 +56543,6 @@ "x-appwrite": { "method": "getRule", "group": "rules", - "weight": 1266, "cookies": false, "type": "", "demo": "proxy\/get-rule.md", @@ -57022,7 +56595,6 @@ "x-appwrite": { "method": "deleteRule", "group": "rules", - "weight": 1268, "cookies": false, "type": "", "demo": "proxy\/delete-rule.md", @@ -57084,7 +56656,6 @@ "x-appwrite": { "method": "updateRuleStatus", "group": "rules", - "weight": 1269, "cookies": false, "type": "", "demo": "proxy\/update-rule-status.md", @@ -57146,7 +56717,6 @@ "x-appwrite": { "method": "listReports", "group": "reports", - "weight": 695, "cookies": false, "type": "", "demo": "advisor\/list-reports.md", @@ -57223,7 +56793,6 @@ "x-appwrite": { "method": "getReport", "group": "reports", - "weight": 694, "cookies": false, "type": "", "demo": "advisor\/get-report.md", @@ -57277,7 +56846,6 @@ "x-appwrite": { "method": "deleteReport", "group": "reports", - "weight": 696, "cookies": false, "type": "", "demo": "advisor\/delete-report.md", @@ -57340,7 +56908,6 @@ "x-appwrite": { "method": "listInsights", "group": "insights", - "weight": 698, "cookies": false, "type": "", "demo": "advisor\/list-insights.md", @@ -57427,7 +56994,6 @@ "x-appwrite": { "method": "getInsight", "group": "insights", - "weight": 697, "cookies": false, "type": "", "demo": "advisor\/get-insight.md", @@ -57500,7 +57066,6 @@ "x-appwrite": { "method": "list", "group": "sites", - "weight": 479, "cookies": false, "type": "", "demo": "sites\/list.md", @@ -57585,7 +57150,6 @@ "x-appwrite": { "method": "create", "group": "sites", - "weight": 972, "cookies": false, "type": "", "demo": "sites\/create.md", @@ -57646,43 +57210,49 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "enabled": { "type": "boolean", "description": "Is site enabled? When set to 'disabled', users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.", + "default": true, "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.", + "default": true, "x-example": false }, "timeout": { "type": "integer", "description": "Maximum request time in seconds.", + "default": 30, "x-example": 1, "format": "int32" }, "installCommand": { "type": "string", "description": "Install Command.", + "default": "", "x-example": "<INSTALL_COMMAND>" }, "buildCommand": { "type": "string", "description": "Build Command.", + "default": "", "x-example": "<BUILD_COMMAND>" }, "startCommand": { "type": "string", "description": "Custom start command. Leave empty to use default.", + "default": "", "x-example": "<START_COMMAND>" }, "outputDirectory": { "type": "string", "description": "Output Directory for site.", + "default": "", "x-example": "<OUTPUT_DIRECTORY>" }, "buildRuntime": { @@ -57742,6 +57312,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -57781,10 +57352,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteBuildRuntime" }, "adapter": { "type": "string", @@ -57794,52 +57365,78 @@ "static", "ssr" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteAdapter" }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", + "default": "", "x-example": "<INSTALLATION_ID>" }, "fallbackFile": { "type": "string", "description": "Fallback file for single page application sites.", + "default": "", "x-example": "<FALLBACK_FILE>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the site.", + "default": "", "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the site.", + "default": "", "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.", + "default": false, "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to site code in the linked repo.", + "default": "", "x-example": "<PROVIDER_ROOT_DIRECTORY>" }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, "buildSpecification": { "type": "string", "description": "Build specification for the site deployments.", + "default": {}, "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the SSR executions.", + "default": {}, "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", + "default": 0, "x-example": 0, "format": "int32" } @@ -57880,7 +57477,6 @@ "x-appwrite": { "method": "listFrameworks", "group": "frameworks", - "weight": 482, "cookies": false, "type": "", "demo": "sites\/list-frameworks.md", @@ -57930,7 +57526,6 @@ "x-appwrite": { "method": "listSpecifications", "group": "frameworks", - "weight": 505, "cookies": false, "type": "", "demo": "sites\/list-specifications.md", @@ -57980,7 +57575,6 @@ "x-appwrite": { "method": "listTemplates", "group": "templates", - "weight": 501, "cookies": false, "type": "", "demo": "sites\/list-templates.md", @@ -58028,8 +57622,7 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "default": [] }, @@ -58054,8 +57647,7 @@ "forms", "dashboard" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteTemplateUseCase" }, "default": [] }, @@ -58112,7 +57704,6 @@ "x-appwrite": { "method": "getTemplate", "group": "templates", - "weight": 502, "cookies": false, "type": "", "demo": "sites\/get-template.md", @@ -58172,7 +57763,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 503, "cookies": false, "type": "", "demo": "sites\/list-usage.md", @@ -58244,7 +57834,6 @@ "x-appwrite": { "method": "get", "group": "sites", - "weight": 478, "cookies": false, "type": "", "demo": "sites\/get.md", @@ -58304,7 +57893,6 @@ "x-appwrite": { "method": "update", "group": "sites", - "weight": 973, "cookies": false, "type": "", "demo": "sites\/update.md", @@ -58372,43 +57960,49 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "enabled": { "type": "boolean", "description": "Is site enabled? When set to 'disabled', users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.", + "default": true, "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.", + "default": true, "x-example": false }, "timeout": { "type": "integer", "description": "Maximum request time in seconds.", + "default": 30, "x-example": 1, "format": "int32" }, "installCommand": { "type": "string", "description": "Install Command.", + "default": "", "x-example": "<INSTALL_COMMAND>" }, "buildCommand": { "type": "string", "description": "Build Command.", + "default": "", "x-example": "<BUILD_COMMAND>" }, "startCommand": { "type": "string", "description": "Custom start command. Leave empty to use default.", + "default": "", "x-example": "<START_COMMAND>" }, "outputDirectory": { "type": "string", "description": "Output Directory for site.", + "default": "", "x-example": "<OUTPUT_DIRECTORY>" }, "buildRuntime": { @@ -58468,6 +58062,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -58507,10 +58102,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteBuildRuntime" }, "adapter": { "type": "string", @@ -58520,52 +58115,78 @@ "static", "ssr" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteAdapter" }, "fallbackFile": { "type": "string", "description": "Fallback file for single page application sites.", + "default": "", "x-example": "<FALLBACK_FILE>" }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", + "default": "", "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the site.", + "default": "", "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the site.", + "default": "", "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.", + "default": false, "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to site code in the linked repo.", + "default": "", "x-example": "<PROVIDER_ROOT_DIRECTORY>" }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "x-example": null, + "items": { + "type": "string" + }, + "x-nullable": true + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "x-example": null, + "items": { + "type": "string" + }, + "x-nullable": true + }, "buildSpecification": { "type": "string", "description": "Build specification for the site deployments.", + "default": {}, "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the SSR executions.", + "default": {}, "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", + "default": 0, "x-example": 0, "format": "int32" } @@ -58595,7 +58216,6 @@ "x-appwrite": { "method": "delete", "group": "sites", - "weight": 481, "cookies": false, "type": "", "demo": "sites\/delete.md", @@ -58657,7 +58277,6 @@ "x-appwrite": { "method": "updateSiteDeployment", "group": "sites", - "weight": 488, "cookies": false, "type": "", "demo": "sites\/update-site-deployment.md", @@ -58738,7 +58357,6 @@ "x-appwrite": { "method": "listDeployments", "group": "deployments", - "weight": 487, "cookies": false, "type": "", "demo": "sites\/list-deployments.md", @@ -58833,7 +58451,6 @@ "x-appwrite": { "method": "createDeployment", "group": "deployments", - "weight": 483, "cookies": false, "type": "upload", "demo": "sites\/create-deployment.md", @@ -58902,6 +58519,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -58938,7 +58556,6 @@ "x-appwrite": { "method": "createDuplicateDeployment", "group": "deployments", - "weight": 491, "cookies": false, "type": "", "demo": "sites\/create-duplicate-deployment.md", @@ -59019,7 +58636,6 @@ "x-appwrite": { "method": "createTemplateDeployment", "group": "deployments", - "weight": 484, "cookies": false, "type": "", "demo": "sites\/create-template-deployment.md", @@ -59085,8 +58701,7 @@ "commit", "tag" ], - "x-enum-name": "TemplateReferenceType", - "x-enum-keys": [] + "x-enum-name": "TemplateReferenceType" }, "reference": { "type": "string", @@ -59096,6 +58711,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -59136,7 +58752,6 @@ "x-appwrite": { "method": "createVcsDeployment", "group": "deployments", - "weight": 485, "cookies": false, "type": "", "demo": "sites\/create-vcs-deployment.md", @@ -59187,8 +58802,7 @@ "commit", "tag" ], - "x-enum-name": "VCSReferenceType", - "x-enum-keys": [] + "x-enum-name": "VCSReferenceType" }, "reference": { "type": "string", @@ -59198,6 +58812,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -59235,7 +58850,6 @@ "x-appwrite": { "method": "getDeployment", "group": "deployments", - "weight": 486, "cookies": false, "type": "", "demo": "sites\/get-deployment.md", @@ -59298,7 +58912,6 @@ "x-appwrite": { "method": "deleteDeployment", "group": "deployments", - "weight": 489, "cookies": false, "type": "", "demo": "sites\/delete-deployment.md", @@ -59363,7 +58976,6 @@ "x-appwrite": { "method": "getDeploymentDownload", "group": "deployments", - "weight": 490, "cookies": false, "type": "location", "demo": "sites\/get-deployment-download.md", @@ -59422,7 +59034,6 @@ "output" ], "x-enum-name": "DeploymentDownloadType", - "x-enum-keys": [], "default": "source" }, "in": "query" @@ -59454,7 +59065,6 @@ "x-appwrite": { "method": "updateDeploymentStatus", "group": "deployments", - "weight": 492, "cookies": false, "type": "", "demo": "sites\/update-deployment-status.md", @@ -59526,7 +59136,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 494, "cookies": false, "type": "", "demo": "sites\/list-logs.md", @@ -59612,7 +59221,6 @@ "x-appwrite": { "method": "getLog", "group": "logs", - "weight": 493, "cookies": false, "type": "", "demo": "sites\/get-log.md", @@ -59675,7 +59283,6 @@ "x-appwrite": { "method": "deleteLog", "group": "logs", - "weight": 495, "cookies": false, "type": "", "demo": "sites\/delete-log.md", @@ -59747,7 +59354,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 504, "cookies": false, "type": "", "demo": "sites\/get-usage.md", @@ -59829,7 +59435,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 498, "cookies": false, "type": "", "demo": "sites\/list-variables.md", @@ -59913,7 +59518,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 974, "cookies": false, "type": "", "demo": "sites\/create-variable.md", @@ -59973,6 +59577,7 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only sites can read them during build and runtime.", + "default": true, "x-example": false } }, @@ -60011,7 +59616,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 497, "cookies": false, "type": "", "demo": "sites\/get-variable.md", @@ -60081,7 +59685,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 499, "cookies": false, "type": "", "demo": "sites\/update-variable.md", @@ -60173,7 +59776,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 500, "cookies": false, "type": "", "demo": "sites\/delete-variable.md", @@ -60245,7 +59847,6 @@ "x-appwrite": { "method": "listBuckets", "group": "buckets", - "weight": 550, "cookies": false, "type": "", "demo": "storage\/list-buckets.md", @@ -60331,7 +59932,6 @@ "x-appwrite": { "method": "createBucket", "group": "buckets", - "weight": 548, "cookies": false, "type": "", "demo": "storage\/create-bucket.md", @@ -60384,22 +59984,26 @@ "fileSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual file. A user needs one of file or bucket level permissions to access a file. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is bucket enabled? When set to 'disabled', users cannot access the files in this bucket but Server SDKs with and API key can still access the bucket. No files are lost when this is toggled.", + "default": true, "x-example": false }, "maximumFileSize": { "type": "integer", - "description": "Maximum file size allowed in bytes. Maximum allowed value is 5GB.", + "description": "Maximum file size allowed in bytes. Maximum allowed value is 0B.", + "default": {}, "x-example": 1, "format": "int32" }, "allowedFileExtensions": { "type": "array", "description": "Allowed file extensions. Maximum of 100 extensions are allowed, each 64 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -60408,28 +60012,31 @@ "compression": { "type": "string", "description": "Compression algorithm chosen for compression. Can be one of none, [gzip](https:\/\/en.wikipedia.org\/wiki\/Gzip), or [zstd](https:\/\/en.wikipedia.org\/wiki\/Zstd), For file size above 20MB compression is skipped even if it's enabled", + "default": "none", "x-example": "none", "enum": [ "none", "gzip", "zstd" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Compression" }, "encryption": { "type": "boolean", "description": "Is encryption enabled? For file size above 20MB encryption is skipped even if it's enabled", + "default": true, "x-example": false }, "antivirus": { "type": "boolean", "description": "Is virus scanning enabled? For file size above 20MB AntiVirus scanning is skipped even if it's enabled", + "default": true, "x-example": false }, "transformations": { "type": "boolean", "description": "Are image transformations enabled?", + "default": true, "x-example": false } }, @@ -60467,7 +60074,6 @@ "x-appwrite": { "method": "getBucket", "group": "buckets", - "weight": 549, "cookies": false, "type": "", "demo": "storage\/get-bucket.md", @@ -60528,7 +60134,6 @@ "x-appwrite": { "method": "updateBucket", "group": "buckets", - "weight": 551, "cookies": false, "type": "", "demo": "storage\/update-bucket.md", @@ -60588,22 +60193,26 @@ "fileSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual file. A user needs one of file or bucket level permissions to access a file. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is bucket enabled? When set to 'disabled', users cannot access the files in this bucket but Server SDKs with and API key can still access the bucket. No files are lost when this is toggled.", + "default": true, "x-example": false }, "maximumFileSize": { "type": "integer", - "description": "Maximum file size allowed in bytes. Maximum allowed value is 5GB.", + "description": "Maximum file size allowed in bytes. Maximum allowed value is 0B.", + "default": {}, "x-example": 1, "format": "int32" }, "allowedFileExtensions": { "type": "array", "description": "Allowed file extensions. Maximum of 100 extensions are allowed, each 64 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -60612,28 +60221,31 @@ "compression": { "type": "string", "description": "Compression algorithm chosen for compression. Can be one of none, [gzip](https:\/\/en.wikipedia.org\/wiki\/Gzip), or [zstd](https:\/\/en.wikipedia.org\/wiki\/Zstd), For file size above 20MB compression is skipped even if it's enabled", + "default": "none", "x-example": "none", "enum": [ "none", "gzip", "zstd" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Compression" }, "encryption": { "type": "boolean", "description": "Is encryption enabled? For file size above 20MB encryption is skipped even if it's enabled", + "default": true, "x-example": false }, "antivirus": { "type": "boolean", "description": "Is virus scanning enabled? For file size above 20MB AntiVirus scanning is skipped even if it's enabled", + "default": true, "x-example": false }, "transformations": { "type": "boolean", "description": "Are image transformations enabled?", + "default": true, "x-example": false } }, @@ -60661,7 +60273,6 @@ "x-appwrite": { "method": "deleteBucket", "group": "buckets", - "weight": 552, "cookies": false, "type": "", "demo": "storage\/delete-bucket.md", @@ -60724,7 +60335,6 @@ "x-appwrite": { "method": "listFiles", "group": "files", - "weight": 555, "cookies": false, "type": "", "demo": "storage\/list-files.md", @@ -60824,7 +60434,6 @@ "x-appwrite": { "method": "createFile", "group": "files", - "weight": 1260, "cookies": false, "type": "upload", "demo": "storage\/create-file.md", @@ -60927,7 +60536,6 @@ "x-appwrite": { "method": "getFile", "group": "files", - "weight": 554, "cookies": false, "type": "", "demo": "storage\/get-file.md", @@ -61002,7 +60610,6 @@ "x-appwrite": { "method": "updateFile", "group": "files", - "weight": 556, "cookies": false, "type": "", "demo": "storage\/update-file.md", @@ -61095,7 +60702,6 @@ "x-appwrite": { "method": "deleteFile", "group": "files", - "weight": 557, "cookies": false, "type": "", "demo": "storage\/delete-file.md", @@ -61165,7 +60771,6 @@ "x-appwrite": { "method": "getFileDownload", "group": "files", - "weight": 559, "cookies": false, "type": "location", "demo": "storage\/get-file-download.md", @@ -61246,7 +60851,6 @@ "x-appwrite": { "method": "getFilePreview", "group": "files", - "weight": 558, "cookies": false, "type": "location", "demo": "storage\/get-file-preview.md", @@ -61339,7 +60943,6 @@ "bottom-right" ], "x-enum-name": "ImageGravity", - "x-enum-keys": [], "default": "center" }, "in": "query" @@ -61440,8 +61043,7 @@ "avif", "gif" ], - "x-enum-name": "ImageFormat", - "x-enum-keys": [] + "x-enum-name": "ImageFormat" }, "in": "query" }, @@ -61476,7 +61078,6 @@ "x-appwrite": { "method": "getFileView", "group": "files", - "weight": 560, "cookies": false, "type": "location", "demo": "storage\/get-file-view.md", @@ -61564,7 +61165,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 562, "cookies": false, "type": "", "demo": "storage\/get-usage.md", @@ -61637,7 +61237,6 @@ "x-appwrite": { "method": "getBucketUsage", "group": null, - "weight": 563, "cookies": false, "type": "", "demo": "storage\/get-bucket-usage.md", @@ -61720,7 +61319,6 @@ "x-appwrite": { "method": "list", "group": "tablesdb", - "weight": 780, "cookies": false, "type": "", "demo": "tablesdb\/list.md", @@ -61806,7 +61404,6 @@ "x-appwrite": { "method": "create", "group": "tablesdb", - "weight": 776, "cookies": false, "type": "", "demo": "tablesdb\/create.md", @@ -61850,6 +61447,7 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -61887,7 +61485,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 849, "cookies": false, "type": "", "demo": "tablesdb\/list-transactions.md", @@ -61958,7 +61555,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 845, "cookies": false, "type": "", "demo": "tablesdb\/create-transaction.md", @@ -61999,6 +61595,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -62033,7 +61630,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 846, "cookies": false, "type": "", "demo": "tablesdb\/get-transaction.md", @@ -62101,7 +61697,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 847, "cookies": false, "type": "", "demo": "tablesdb\/update-transaction.md", @@ -62154,11 +61749,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -62183,7 +61780,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 848, "cookies": false, "type": "", "demo": "tablesdb\/delete-transaction.md", @@ -62253,7 +61849,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 850, "cookies": false, "type": "", "demo": "tablesdb\/create-operations.md", @@ -62306,6 +61901,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"tableId\": \"<TABLE_ID>\",\n\t \"rowId\": \"<ROW_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -62342,7 +61938,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 782, "cookies": false, "type": "", "demo": "tablesdb\/list-usage.md", @@ -62441,7 +62036,6 @@ "x-appwrite": { "method": "get", "group": "tablesdb", - "weight": 777, "cookies": false, "type": "", "demo": "tablesdb\/get.md", @@ -62502,7 +62096,6 @@ "x-appwrite": { "method": "update", "group": "tablesdb", - "weight": 778, "cookies": false, "type": "", "demo": "tablesdb\/update.md", @@ -62553,6 +62146,7 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } } @@ -62577,7 +62171,6 @@ "x-appwrite": { "method": "delete", "group": "tablesdb", - "weight": 779, "cookies": false, "type": "", "demo": "tablesdb\/delete.md", @@ -62640,7 +62233,6 @@ "x-appwrite": { "method": "listTables", "group": "tables", - "weight": 787, "cookies": false, "type": "", "demo": "tablesdb\/list-tables.md", @@ -62739,7 +62331,6 @@ "x-appwrite": { "method": "createTable", "group": "tables", - "weight": 783, "cookies": false, "type": "", "demo": "tablesdb\/create-table.md", @@ -62807,16 +62398,19 @@ "rowSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual rows. A user needs one of row or table level permissions to access a row. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is table enabled? When set to 'disabled', users cannot access the table but Server SDKs with and API key can still read and write to the table. No data is lost when this is toggled.", + "default": true, "x-example": false }, "columns": { "type": "array", "description": "Array of column definitions to create. Each column should contain: key (string), type (string: string, integer, float, boolean, datetime, relationship), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", + "default": [], "x-example": null, "items": { "type": "object" @@ -62825,6 +62419,7 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of column keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", + "default": [], "x-example": null, "items": { "type": "object" @@ -62865,7 +62460,6 @@ "x-appwrite": { "method": "getTable", "group": "tables", - "weight": 784, "cookies": false, "type": "", "demo": "tablesdb\/get-table.md", @@ -62939,7 +62533,6 @@ "x-appwrite": { "method": "updateTable", "group": "tables", - "weight": 785, "cookies": false, "type": "", "demo": "tablesdb\/update-table.md", @@ -63012,16 +62605,19 @@ "rowSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual rows. A user needs one of row or table-level permissions to access a row. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is table enabled? When set to 'disabled', users cannot access the table but Server SDKs with and API key can still read and write to the table. No data is lost when this is toggled.", + "default": true, "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this table as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", + "default": false, "x-example": false } } @@ -63046,7 +62642,6 @@ "x-appwrite": { "method": "deleteTable", "group": "tables", - "weight": 786, "cookies": false, "type": "", "demo": "tablesdb\/delete-table.md", @@ -63122,7 +62717,6 @@ "x-appwrite": { "method": "listColumns", "group": "columns", - "weight": 792, "cookies": false, "type": "", "demo": "tablesdb\/list-columns.md", @@ -63224,7 +62818,6 @@ "x-appwrite": { "method": "createBigIntColumn", "group": "columns", - "weight": 805, "cookies": false, "type": "", "demo": "tablesdb\/create-big-int-column.md", @@ -63316,6 +62909,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -63353,7 +62947,6 @@ "x-appwrite": { "method": "updateBigIntColumn", "group": "columns", - "weight": 806, "cookies": false, "type": "", "demo": "tablesdb\/update-big-int-column.md", @@ -63487,7 +63080,6 @@ "x-appwrite": { "method": "createBooleanColumn", "group": "columns", - "weight": 793, "cookies": false, "type": "", "demo": "tablesdb\/create-boolean-column.md", @@ -63564,6 +63156,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -63601,7 +63194,6 @@ "x-appwrite": { "method": "updateBooleanColumn", "group": "columns", - "weight": 794, "cookies": false, "type": "", "demo": "tablesdb\/update-boolean-column.md", @@ -63720,7 +63312,6 @@ "x-appwrite": { "method": "createDatetimeColumn", "group": "columns", - "weight": 795, "cookies": false, "type": "", "demo": "tablesdb\/create-datetime-column.md", @@ -63798,6 +63389,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -63835,7 +63427,6 @@ "x-appwrite": { "method": "updateDatetimeColumn", "group": "columns", - "weight": 796, "cookies": false, "type": "", "demo": "tablesdb\/update-datetime-column.md", @@ -63955,7 +63546,6 @@ "x-appwrite": { "method": "createEmailColumn", "group": "columns", - "weight": 797, "cookies": false, "type": "", "demo": "tablesdb\/create-email-column.md", @@ -64033,6 +63623,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -64070,7 +63661,6 @@ "x-appwrite": { "method": "updateEmailColumn", "group": "columns", - "weight": 798, "cookies": false, "type": "", "demo": "tablesdb\/update-email-column.md", @@ -64190,7 +63780,6 @@ "x-appwrite": { "method": "createEnumColumn", "group": "columns", - "weight": 799, "cookies": false, "type": "", "demo": "tablesdb\/create-enum-column.md", @@ -64275,6 +63864,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -64313,7 +63903,6 @@ "x-appwrite": { "method": "updateEnumColumn", "group": "columns", - "weight": 800, "cookies": false, "type": "", "demo": "tablesdb\/update-enum-column.md", @@ -64441,7 +64030,6 @@ "x-appwrite": { "method": "createFloatColumn", "group": "columns", - "weight": 801, "cookies": false, "type": "", "demo": "tablesdb\/create-float-column.md", @@ -64533,6 +64121,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -64570,7 +64159,6 @@ "x-appwrite": { "method": "updateFloatColumn", "group": "columns", - "weight": 802, "cookies": false, "type": "", "demo": "tablesdb\/update-float-column.md", @@ -64704,7 +64292,6 @@ "x-appwrite": { "method": "createIntegerColumn", "group": "columns", - "weight": 803, "cookies": false, "type": "", "demo": "tablesdb\/create-integer-column.md", @@ -64796,6 +64383,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -64833,7 +64421,6 @@ "x-appwrite": { "method": "updateIntegerColumn", "group": "columns", - "weight": 804, "cookies": false, "type": "", "demo": "tablesdb\/update-integer-column.md", @@ -64967,7 +64554,6 @@ "x-appwrite": { "method": "createIpColumn", "group": "columns", - "weight": 807, "cookies": false, "type": "", "demo": "tablesdb\/create-ip-column.md", @@ -65044,6 +64630,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -65081,7 +64668,6 @@ "x-appwrite": { "method": "updateIpColumn", "group": "columns", - "weight": 808, "cookies": false, "type": "", "demo": "tablesdb\/update-ip-column.md", @@ -65200,7 +64786,6 @@ "x-appwrite": { "method": "createLineColumn", "group": "columns", - "weight": 809, "cookies": false, "type": "", "demo": "tablesdb\/create-line-column.md", @@ -65316,7 +64901,6 @@ "x-appwrite": { "method": "updateLineColumn", "group": "columns", - "weight": 810, "cookies": false, "type": "", "demo": "tablesdb\/update-line-column.md", @@ -65441,7 +65025,6 @@ "x-appwrite": { "method": "createLongtextColumn", "group": "columns", - "weight": 827, "cookies": false, "type": "", "demo": "tablesdb\/create-longtext-column.md", @@ -65518,11 +65101,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -65560,7 +65145,6 @@ "x-appwrite": { "method": "updateLongtextColumn", "group": "columns", - "weight": 828, "cookies": false, "type": "", "demo": "tablesdb\/update-longtext-column.md", @@ -65679,7 +65263,6 @@ "x-appwrite": { "method": "createMediumtextColumn", "group": "columns", - "weight": 825, "cookies": false, "type": "", "demo": "tablesdb\/create-mediumtext-column.md", @@ -65756,11 +65339,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -65798,7 +65383,6 @@ "x-appwrite": { "method": "updateMediumtextColumn", "group": "columns", - "weight": 826, "cookies": false, "type": "", "demo": "tablesdb\/update-mediumtext-column.md", @@ -65917,7 +65501,6 @@ "x-appwrite": { "method": "createPointColumn", "group": "columns", - "weight": 811, "cookies": false, "type": "", "demo": "tablesdb\/create-point-column.md", @@ -66033,7 +65616,6 @@ "x-appwrite": { "method": "updatePointColumn", "group": "columns", - "weight": 812, "cookies": false, "type": "", "demo": "tablesdb\/update-point-column.md", @@ -66158,7 +65740,6 @@ "x-appwrite": { "method": "createPolygonColumn", "group": "columns", - "weight": 813, "cookies": false, "type": "", "demo": "tablesdb\/create-polygon-column.md", @@ -66274,7 +65855,6 @@ "x-appwrite": { "method": "updatePolygonColumn", "group": "columns", - "weight": 814, "cookies": false, "type": "", "demo": "tablesdb\/update-polygon-column.md", @@ -66399,7 +65979,6 @@ "x-appwrite": { "method": "createRelationshipColumn", "group": "columns", - "weight": 815, "cookies": false, "type": "", "demo": "tablesdb\/create-relationship-column.md", @@ -66472,12 +66051,12 @@ "manyToMany", "oneToMany" ], - "x-enum-name": "RelationshipType", - "x-enum-keys": [] + "x-enum-name": "RelationshipType" }, "twoWay": { "type": "boolean", "description": "Is Two Way?", + "default": false, "x-example": false }, "key": { @@ -66495,14 +66074,14 @@ "onDelete": { "type": "string", "description": "Constraints option", + "default": "restrict", "x-example": "cascade", "enum": [ "cascade", "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" } }, "required": [ @@ -66539,7 +66118,6 @@ "x-appwrite": { "method": "createStringColumn", "group": "columns", - "weight": 817, "cookies": false, "type": "", "demo": "tablesdb\/create-string-column.md", @@ -66626,11 +66204,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -66669,7 +66249,6 @@ "x-appwrite": { "method": "updateStringColumn", "group": "columns", - "weight": 818, "cookies": false, "type": "", "demo": "tablesdb\/update-string-column.md", @@ -66799,7 +66378,6 @@ "x-appwrite": { "method": "createTextColumn", "group": "columns", - "weight": 823, "cookies": false, "type": "", "demo": "tablesdb\/create-text-column.md", @@ -66876,11 +66454,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -66918,7 +66498,6 @@ "x-appwrite": { "method": "updateTextColumn", "group": "columns", - "weight": 824, "cookies": false, "type": "", "demo": "tablesdb\/update-text-column.md", @@ -67037,7 +66616,6 @@ "x-appwrite": { "method": "createUrlColumn", "group": "columns", - "weight": 819, "cookies": false, "type": "", "demo": "tablesdb\/create-url-column.md", @@ -67115,6 +66693,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -67152,7 +66731,6 @@ "x-appwrite": { "method": "updateUrlColumn", "group": "columns", - "weight": 820, "cookies": false, "type": "", "demo": "tablesdb\/update-url-column.md", @@ -67272,7 +66850,6 @@ "x-appwrite": { "method": "createVarcharColumn", "group": "columns", - "weight": 821, "cookies": false, "type": "", "demo": "tablesdb\/create-varchar-column.md", @@ -67355,11 +66932,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -67398,7 +66977,6 @@ "x-appwrite": { "method": "updateVarcharColumn", "group": "columns", - "weight": 822, "cookies": false, "type": "", "demo": "tablesdb\/update-varchar-column.md", @@ -67606,7 +67184,6 @@ "x-appwrite": { "method": "getColumn", "group": "columns", - "weight": 790, "cookies": false, "type": "", "demo": "tablesdb\/get-column.md", @@ -67684,7 +67261,6 @@ "x-appwrite": { "method": "deleteColumn", "group": "columns", - "weight": 791, "cookies": false, "type": "", "demo": "tablesdb\/delete-column.md", @@ -67771,7 +67347,6 @@ "x-appwrite": { "method": "updateRelationshipColumn", "group": "columns", - "weight": 816, "cookies": false, "type": "", "demo": "tablesdb\/update-relationship-column.md", @@ -67848,7 +67423,6 @@ "setNull" ], "x-enum-name": "RelationMutate", - "x-enum-keys": [], "x-nullable": true }, "newKey": { @@ -67888,7 +67462,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 832, "cookies": false, "type": "", "demo": "tablesdb\/list-indexes.md", @@ -67987,7 +67560,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 829, "cookies": false, "type": "", "demo": "tablesdb\/create-index.md", @@ -68059,8 +67631,7 @@ "unique", "spatial" ], - "x-enum-name": "TablesDBIndexType", - "x-enum-keys": [] + "x-enum-name": "TablesDBIndexType" }, "columns": { "type": "array", @@ -68073,6 +67644,7 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -68080,13 +67652,13 @@ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", + "default": [], "x-example": null, "items": { "type": "integer" @@ -68128,7 +67700,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 830, "cookies": false, "type": "", "demo": "tablesdb\/get-index.md", @@ -68205,7 +67776,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 831, "cookies": false, "type": "", "demo": "tablesdb\/delete-index.md", @@ -68291,7 +67861,6 @@ "x-appwrite": { "method": "listTableLogs", "group": "tables", - "weight": 788, "cookies": false, "type": "", "demo": "tablesdb\/list-table-logs.md", @@ -68378,7 +67947,6 @@ "x-appwrite": { "method": "listRows", "group": "rows", - "weight": 919, "cookies": false, "type": "", "demo": "tablesdb\/list-rows.md", @@ -68502,7 +68070,6 @@ "x-appwrite": { "method": "createRow", "group": "rows", - "weight": 833, "cookies": false, "type": "", "demo": "tablesdb\/create-row.md", @@ -68626,11 +68193,13 @@ "rowId": { "type": "string", "description": "Row ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "<ROW_ID>" }, "data": { "type": "object", "description": "Row data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -68645,6 +68214,7 @@ "rows": { "type": "array", "description": "Array of rows data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -68685,7 +68255,6 @@ "x-appwrite": { "method": "upsertRows", "group": "rows", - "weight": 838, "cookies": false, "type": "", "demo": "tablesdb\/upsert-rows.md", @@ -68817,7 +68386,6 @@ "x-appwrite": { "method": "updateRows", "group": "rows", - "weight": 836, "cookies": false, "type": "", "demo": "tablesdb\/update-rows.md", @@ -68876,11 +68444,13 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only column and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -68921,7 +68491,6 @@ "x-appwrite": { "method": "deleteRows", "group": "rows", - "weight": 840, "cookies": false, "type": "", "demo": "tablesdb\/delete-rows.md", @@ -68980,6 +68549,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -69022,7 +68592,6 @@ "x-appwrite": { "method": "getRow", "group": "rows", - "weight": 834, "cookies": false, "type": "", "demo": "tablesdb\/get-row.md", @@ -69133,7 +68702,6 @@ "x-appwrite": { "method": "upsertRow", "group": "rows", - "weight": 837, "cookies": false, "type": "", "demo": "tablesdb\/upsert-row.md", @@ -69238,6 +68806,7 @@ "data": { "type": "object", "description": "Row data as JSON object. Include all required columns of the row to be created or updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -69284,7 +68853,6 @@ "x-appwrite": { "method": "updateRow", "group": "rows", - "weight": 835, "cookies": false, "type": "", "demo": "tablesdb\/update-row.md", @@ -69357,6 +68925,7 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only columns and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -69396,7 +68965,6 @@ "x-appwrite": { "method": "deleteRow", "group": "rows", - "weight": 839, "cookies": false, "type": "", "demo": "tablesdb\/delete-row.md", @@ -69503,7 +69071,6 @@ "x-appwrite": { "method": "listRowLogs", "group": "logs", - "weight": 842, "cookies": false, "type": "", "demo": "tablesdb\/list-row-logs.md", @@ -69600,7 +69167,6 @@ "x-appwrite": { "method": "decrementRowColumn", "group": "rows", - "weight": 844, "cookies": false, "type": "", "demo": "tablesdb\/decrement-row-column.md", @@ -69682,6 +69248,7 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -69729,7 +69296,6 @@ "x-appwrite": { "method": "incrementRowColumn", "group": "rows", - "weight": 843, "cookies": false, "type": "", "demo": "tablesdb\/increment-row-column.md", @@ -69811,6 +69377,7 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -69858,7 +69425,6 @@ "x-appwrite": { "method": "getTableUsage", "group": null, - "weight": 789, "cookies": false, "type": "", "demo": "tablesdb\/get-table-usage.md", @@ -69954,7 +69520,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 781, "cookies": false, "type": "", "demo": "tablesdb\/get-usage.md", @@ -70066,7 +69631,6 @@ "x-appwrite": { "method": "list", "group": "teams", - "weight": 531, "cookies": false, "type": "", "demo": "teams\/list.md", @@ -70156,7 +69720,6 @@ "x-appwrite": { "method": "create", "group": "teams", - "weight": 529, "cookies": false, "type": "", "demo": "teams\/create.md", @@ -70204,6 +69767,9 @@ "roles": { "type": "array", "description": "Array of strings. Use this param to set the roles in the team for the user who created it. The default role is **owner**. A role can be any string. Learn more about [roles and permissions](https:\/\/appwrite.io\/docs\/permissions). Maximum of 100 roles are allowed, each 32 characters long.", + "default": [ + "owner" + ], "x-example": null, "items": { "type": "string" @@ -70244,7 +69810,6 @@ "x-appwrite": { "method": "get", "group": "teams", - "weight": 530, "cookies": false, "type": "", "demo": "teams\/get.md", @@ -70309,7 +69874,6 @@ "x-appwrite": { "method": "updateName", "group": "teams", - "weight": 533, "cookies": false, "type": "", "demo": "teams\/update-name.md", @@ -70386,7 +69950,6 @@ "x-appwrite": { "method": "delete", "group": "teams", - "weight": 532, "cookies": false, "type": "", "demo": "teams\/delete.md", @@ -70453,7 +70016,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 542, "cookies": false, "type": "", "demo": "teams\/list-logs.md", @@ -70538,7 +70100,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 538, "cookies": false, "type": "", "demo": "teams\/list-memberships.md", @@ -70638,7 +70199,6 @@ "x-appwrite": { "method": "createMembership", "group": "memberships", - "weight": 536, "cookies": false, "type": "", "demo": "teams\/create-membership.md", @@ -70688,17 +70248,20 @@ "email": { "type": "string", "description": "Email of the new team member.", + "default": "", "x-example": "email@example.com", "format": "email" }, "userId": { "type": "string", "description": "ID of the user to be added to a team.", + "default": "", "x-example": "<USER_ID>" }, "phone": { "type": "string", "description": "Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, @@ -70713,12 +70276,14 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the invitation email. This parameter is not required when an API key is supplied. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", + "default": "", "x-example": "https:\/\/example.com", "format": "url" }, "name": { "type": "string", "description": "Name of the new team member. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -70755,7 +70320,6 @@ "x-appwrite": { "method": "getMembership", "group": "memberships", - "weight": 537, "cookies": false, "type": "", "demo": "teams\/get-membership.md", @@ -70830,7 +70394,6 @@ "x-appwrite": { "method": "updateMembership", "group": "memberships", - "weight": 539, "cookies": false, "type": "", "demo": "teams\/update-membership.md", @@ -70920,7 +70483,6 @@ "x-appwrite": { "method": "deleteMembership", "group": "memberships", - "weight": 1261, "cookies": false, "type": "", "demo": "teams\/delete-membership.md", @@ -70997,7 +70559,6 @@ "x-appwrite": { "method": "updateMembershipStatus", "group": "memberships", - "weight": 541, "cookies": false, "type": "", "demo": "teams\/update-membership-status.md", @@ -71097,7 +70658,6 @@ "x-appwrite": { "method": "getPrefs", "group": "teams", - "weight": 534, "cookies": false, "type": "", "demo": "teams\/get-prefs.md", @@ -71160,7 +70720,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "teams", - "weight": 535, "cookies": false, "type": "", "demo": "teams\/update-prefs.md", @@ -71244,7 +70803,6 @@ "x-appwrite": { "method": "list", "group": "files", - "weight": 545, "cookies": false, "type": "", "demo": "tokens\/list.md", @@ -71338,7 +70896,6 @@ "x-appwrite": { "method": "createFileToken", "group": "files", - "weight": 543, "cookies": false, "type": "", "demo": "tokens\/create-file-token.md", @@ -71428,7 +70985,6 @@ "x-appwrite": { "method": "get", "group": "tokens", - "weight": 544, "cookies": false, "type": "", "demo": "tokens\/get.md", @@ -71488,7 +71044,6 @@ "x-appwrite": { "method": "update", "group": "tokens", - "weight": 546, "cookies": false, "type": "", "demo": "tokens\/update.md", @@ -71559,7 +71114,6 @@ "x-appwrite": { "method": "delete", "group": "tokens", - "weight": 547, "cookies": false, "type": "", "demo": "tokens\/delete.md", @@ -71621,7 +71175,6 @@ "x-appwrite": { "method": "listEvents", "group": "events", - "weight": 1273, "cookies": false, "type": "", "demo": "usage\/list-events.md", @@ -71697,7 +71250,6 @@ "x-appwrite": { "method": "listGauges", "group": "gauges", - "weight": 1274, "cookies": false, "type": "", "demo": "usage\/list-gauges.md", @@ -71773,7 +71325,6 @@ "x-appwrite": { "method": "list", "group": "users", - "weight": 70, "cookies": false, "type": "", "demo": "users\/list.md", @@ -71859,7 +71410,6 @@ "x-appwrite": { "method": "create", "group": "users", - "weight": 61, "cookies": false, "type": "", "demo": "users\/create.md", @@ -71912,11 +71462,13 @@ "password": { "type": "string", "description": "Plain text user password. Must be at least 8 chars.", + "default": "", "x-example": null }, "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -71953,7 +71505,6 @@ "x-appwrite": { "method": "createArgon2User", "group": "users", - "weight": 64, "cookies": false, "type": "", "demo": "users\/create-argon-2-user.md", @@ -72004,6 +71555,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -72042,7 +71594,6 @@ "x-appwrite": { "method": "createBcryptUser", "group": "users", - "weight": 62, "cookies": false, "type": "", "demo": "users\/create-bcrypt-user.md", @@ -72093,6 +71644,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -72131,7 +71683,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 78, "cookies": false, "type": "", "demo": "users\/list-identities.md", @@ -72212,7 +71763,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 102, "cookies": false, "type": "", "demo": "users\/delete-identity.md", @@ -72275,7 +71825,6 @@ "x-appwrite": { "method": "createMD5User", "group": "users", - "weight": 63, "cookies": false, "type": "", "demo": "users\/create-md-5-user.md", @@ -72326,6 +71875,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -72364,7 +71914,6 @@ "x-appwrite": { "method": "createPHPassUser", "group": "users", - "weight": 66, "cookies": false, "type": "", "demo": "users\/create-ph-pass-user.md", @@ -72415,6 +71964,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -72453,7 +72003,6 @@ "x-appwrite": { "method": "createScryptUser", "group": "users", - "weight": 67, "cookies": false, "type": "", "demo": "users\/create-scrypt-user.md", @@ -72533,6 +72082,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -72576,7 +72126,6 @@ "x-appwrite": { "method": "createScryptModifiedUser", "group": "users", - "weight": 68, "cookies": false, "type": "", "demo": "users\/create-scrypt-modified-user.md", @@ -72642,6 +72191,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -72683,7 +72233,6 @@ "x-appwrite": { "method": "createSHAUser", "group": "users", - "weight": 65, "cookies": false, "type": "", "demo": "users\/create-sha-user.md", @@ -72748,12 +72297,12 @@ "sha3-384", "sha3-512" ], - "x-enum-name": "PasswordHash", - "x-enum-keys": [] + "x-enum-name": "PasswordHash" }, "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -72792,7 +72341,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 104, "cookies": false, "type": "", "demo": "users\/get-usage.md", @@ -72829,11 +72377,6 @@ "90d" ], "x-enum-name": "UsageRange", - "x-enum-keys": [ - "Twenty Four Hours", - "Thirty Days", - "Ninety Days" - ], "default": "30d" }, "in": "query" @@ -72865,7 +72408,6 @@ "x-appwrite": { "method": "get", "group": "users", - "weight": 71, "cookies": false, "type": "", "demo": "users\/get.md", @@ -72919,7 +72461,6 @@ "x-appwrite": { "method": "delete", "group": "users", - "weight": 100, "cookies": false, "type": "", "demo": "users\/delete.md", @@ -72982,7 +72523,6 @@ "x-appwrite": { "method": "updateEmail", "group": "users", - "weight": 85, "cookies": false, "type": "", "demo": "users\/update-email.md", @@ -73065,7 +72605,6 @@ "x-appwrite": { "method": "updateImpersonator", "group": "users", - "weight": 81, "cookies": false, "type": "", "demo": "users\/update-impersonator.md", @@ -73147,7 +72686,6 @@ "x-appwrite": { "method": "createJWT", "group": "sessions", - "weight": 103, "cookies": false, "type": "", "demo": "users\/create-jwt.md", @@ -73193,11 +72731,13 @@ "sessionId": { "type": "string", "description": "Session ID. Use the string 'recent' to use the most recent session. Defaults to the most recent session.", + "default": "", "x-example": "<SESSION_ID>" }, "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", + "default": 900, "x-example": 0, "format": "int32" } @@ -73232,7 +72772,6 @@ "x-appwrite": { "method": "updateLabels", "group": "users", - "weight": 80, "cookies": false, "type": "", "demo": "users\/update-labels.md", @@ -73317,7 +72856,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 76, "cookies": false, "type": "", "demo": "users\/list-logs.md", @@ -73404,7 +72942,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 75, "cookies": false, "type": "", "demo": "users\/list-memberships.md", @@ -73502,7 +73039,6 @@ "x-appwrite": { "method": "updateMfa", "group": "users", - "weight": 90, "cookies": false, "type": "", "demo": "users\/update-mfa.md", @@ -73637,7 +73173,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 95, "cookies": false, "type": "", "demo": "users\/delete-mfa-authenticator.md", @@ -73741,8 +73276,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -73773,7 +73307,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 91, "cookies": false, "type": "", "demo": "users\/list-mfa-factors.md", @@ -73892,7 +73425,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 92, "cookies": false, "type": "", "demo": "users\/get-mfa-recovery-codes.md", @@ -74009,7 +73541,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 94, "cookies": false, "type": "", "demo": "users\/update-mfa-recovery-codes.md", @@ -74126,7 +73657,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 93, "cookies": false, "type": "", "demo": "users\/create-mfa-recovery-codes.md", @@ -74245,7 +73775,6 @@ "x-appwrite": { "method": "updateName", "group": "users", - "weight": 83, "cookies": false, "type": "", "demo": "users\/update-name.md", @@ -74327,7 +73856,6 @@ "x-appwrite": { "method": "updatePassword", "group": "users", - "weight": 84, "cookies": false, "type": "", "demo": "users\/update-password.md", @@ -74409,7 +73937,6 @@ "x-appwrite": { "method": "updatePhone", "group": "users", - "weight": 86, "cookies": false, "type": "", "demo": "users\/update-phone.md", @@ -74492,7 +74019,6 @@ "x-appwrite": { "method": "getPrefs", "group": "users", - "weight": 72, "cookies": false, "type": "", "demo": "users\/get-prefs.md", @@ -74553,7 +74079,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "users", - "weight": 88, "cookies": false, "type": "", "demo": "users\/update-prefs.md", @@ -74635,7 +74160,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 74, "cookies": false, "type": "", "demo": "users\/list-sessions.md", @@ -74710,7 +74234,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 96, "cookies": false, "type": "", "demo": "users\/create-session.md", @@ -74767,7 +74290,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 99, "cookies": false, "type": "", "demo": "users\/delete-sessions.md", @@ -74826,7 +74348,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 98, "cookies": false, "type": "", "demo": "users\/delete-session.md", @@ -74902,7 +74423,6 @@ "x-appwrite": { "method": "updateStatus", "group": "users", - "weight": 79, "cookies": false, "type": "", "demo": "users\/update-status.md", @@ -74984,7 +74504,6 @@ "x-appwrite": { "method": "listTargets", "group": "targets", - "weight": 77, "cookies": false, "type": "", "demo": "users\/list-targets.md", @@ -75069,7 +74588,6 @@ "x-appwrite": { "method": "createTarget", "group": "targets", - "weight": 69, "cookies": false, "type": "", "demo": "users\/create-target.md", @@ -75126,8 +74644,7 @@ "sms", "push" ], - "x-enum-name": "MessagingProviderType", - "x-enum-keys": [] + "x-enum-name": "MessagingProviderType" }, "identifier": { "type": "string", @@ -75137,11 +74654,13 @@ "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", + "default": "", "x-example": "<PROVIDER_ID>" }, "name": { "type": "string", "description": "Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.", + "default": "", "x-example": "<NAME>" } }, @@ -75180,7 +74699,6 @@ "x-appwrite": { "method": "getTarget", "group": "targets", - "weight": 73, "cookies": false, "type": "", "demo": "users\/get-target.md", @@ -75251,7 +74769,6 @@ "x-appwrite": { "method": "updateTarget", "group": "targets", - "weight": 89, "cookies": false, "type": "", "demo": "users\/update-target.md", @@ -75307,16 +74824,19 @@ "identifier": { "type": "string", "description": "The target identifier (token, email, phone etc.)", + "default": "", "x-example": "<IDENTIFIER>" }, "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", + "default": "", "x-example": "<PROVIDER_ID>" }, "name": { "type": "string", "description": "Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.", + "default": "", "x-example": "<NAME>" } } @@ -75341,7 +74861,6 @@ "x-appwrite": { "method": "deleteTarget", "group": "targets", - "weight": 101, "cookies": false, "type": "", "demo": "users\/delete-target.md", @@ -75414,7 +74933,6 @@ "x-appwrite": { "method": "createToken", "group": "sessions", - "weight": 97, "cookies": false, "type": "", "demo": "users\/create-token.md", @@ -75460,12 +74978,14 @@ "length": { "type": "integer", "description": "Token length in characters. The default length is 6 characters", + "default": 6, "x-example": 4, "format": "int32" }, "expire": { "type": "integer", "description": "Token expiration period in seconds. The default expiration is 15 minutes.", + "default": 900, "x-example": 60, "format": "int32" } @@ -75500,7 +75020,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "users", - "weight": 87, "cookies": false, "type": "", "demo": "users\/update-email-verification.md", @@ -75582,7 +75101,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "users", - "weight": 82, "cookies": false, "type": "", "demo": "users\/update-phone-verification.md", @@ -75678,7 +75196,6 @@ "x-appwrite": { "method": "createRepositoryDetection", "group": "repositories", - "weight": 575, "cookies": false, "type": "", "demo": "vcs\/create-repository-detection.md", @@ -75732,12 +75249,12 @@ "runtime", "framework" ], - "x-enum-name": "VCSDetectionType", - "x-enum-keys": [] + "x-enum-name": "VCSDetectionType" }, "providerRootDirectory": { "type": "string", "description": "Path to Root Directory", + "default": "", "x-example": "<PROVIDER_ROOT_DIRECTORY>" } }, @@ -75789,7 +75306,6 @@ "x-appwrite": { "method": "listRepositories", "group": "repositories", - "weight": 572, "cookies": false, "type": "", "demo": "vcs\/list-repositories.md", @@ -75834,8 +75350,7 @@ "runtime", "framework" ], - "x-enum-name": "VCSDetectionType", - "x-enum-keys": [] + "x-enum-name": "VCSDetectionType" }, "in": "query" }, @@ -75888,7 +75403,6 @@ "x-appwrite": { "method": "createRepository", "group": "repositories", - "weight": 570, "cookies": false, "type": "", "demo": "vcs\/create-repository.md", @@ -75974,7 +75488,6 @@ "x-appwrite": { "method": "getRepository", "group": "repositories", - "weight": 571, "cookies": false, "type": "", "demo": "vcs\/get-repository.md", @@ -76045,7 +75558,6 @@ "x-appwrite": { "method": "listRepositoryBranches", "group": "repositories", - "weight": 573, "cookies": false, "type": "", "demo": "vcs\/list-repository-branches.md", @@ -76140,7 +75652,6 @@ "x-appwrite": { "method": "getRepositoryContents", "group": "repositories", - "weight": 574, "cookies": false, "type": "", "demo": "vcs\/get-repository-contents.md", @@ -76226,7 +75737,6 @@ "x-appwrite": { "method": "updateExternalDeployments", "group": "repositories", - "weight": 1271, "cookies": false, "type": "", "demo": "vcs\/update-external-deployments.md", @@ -76316,7 +75826,6 @@ "x-appwrite": { "method": "listInstallations", "group": "installations", - "weight": 568, "cookies": false, "type": "", "demo": "vcs\/list-installations.md", @@ -76402,7 +75911,6 @@ "x-appwrite": { "method": "getInstallation", "group": "installations", - "weight": 567, "cookies": false, "type": "", "demo": "vcs\/get-installation.md", @@ -76454,7 +75962,6 @@ "x-appwrite": { "method": "deleteInstallation", "group": "installations", - "weight": 569, "cookies": false, "type": "", "demo": "vcs\/delete-installation.md", @@ -76515,7 +76022,6 @@ "x-appwrite": { "method": "list", "group": "vectorsdb", - "weight": 924, "cookies": false, "type": "", "demo": "vectorsdb\/list.md", @@ -76590,7 +76096,6 @@ "x-appwrite": { "method": "create", "group": "vectorsdb", - "weight": 925, "cookies": false, "type": "", "demo": "vectorsdb\/create.md", @@ -76634,6 +76139,7 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -76671,7 +76177,6 @@ "x-appwrite": { "method": "createTextEmbeddings", "group": "documents", - "weight": 911, "cookies": false, "type": "", "demo": "vectorsdb\/create-text-embeddings.md", @@ -76741,12 +76246,12 @@ "model": { "type": "string", "description": "The embedding model to use for generating vector embeddings.", + "default": "embeddinggemma", "x-example": "embeddinggemma", "enum": [ "embeddinggemma" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "EmbeddingModel" } }, "required": [ @@ -76782,7 +76287,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 916, "cookies": false, "type": "", "demo": "vectorsdb\/list-transactions.md", @@ -76850,7 +76354,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 912, "cookies": false, "type": "", "demo": "vectorsdb\/create-transaction.md", @@ -76888,6 +76391,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -76922,7 +76426,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 913, "cookies": false, "type": "", "demo": "vectorsdb\/get-transaction.md", @@ -76987,7 +76490,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 914, "cookies": false, "type": "", "demo": "vectorsdb\/update-transaction.md", @@ -77037,11 +76539,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -77066,7 +76570,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 915, "cookies": false, "type": "", "demo": "vectorsdb\/delete-transaction.md", @@ -77133,7 +76636,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 917, "cookies": false, "type": "", "demo": "vectorsdb\/create-operations.md", @@ -77183,6 +76685,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -77219,7 +76722,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 891, "cookies": false, "type": "", "demo": "vectorsdb\/list-usage.md", @@ -77315,7 +76817,6 @@ "x-appwrite": { "method": "get", "group": "vectorsdb", - "weight": 886, "cookies": false, "type": "", "demo": "vectorsdb\/get.md", @@ -77376,7 +76877,6 @@ "x-appwrite": { "method": "update", "group": "vectorsdb", - "weight": 887, "cookies": false, "type": "", "demo": "vectorsdb\/update.md", @@ -77427,6 +76927,7 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -77454,7 +76955,6 @@ "x-appwrite": { "method": "delete", "group": "vectorsdb", - "weight": 926, "cookies": false, "type": "", "demo": "vectorsdb\/delete.md", @@ -77517,7 +77017,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 896, "cookies": false, "type": "", "demo": "vectorsdb\/list-collections.md", @@ -77613,7 +77112,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 892, "cookies": false, "type": "", "demo": "vectorsdb\/create-collection.md", @@ -77683,11 +77181,13 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -77726,7 +77226,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 893, "cookies": false, "type": "", "demo": "vectorsdb\/get-collection.md", @@ -77797,7 +77296,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 894, "cookies": false, "type": "", "demo": "vectorsdb\/update-collection.md", @@ -77872,11 +77370,13 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -77904,7 +77404,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 895, "cookies": false, "type": "", "demo": "vectorsdb\/delete-collection.md", @@ -77977,7 +77476,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 906, "cookies": false, "type": "", "demo": "vectorsdb\/list-documents.md", @@ -78098,7 +77596,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 902, "cookies": false, "type": "", "demo": "vectorsdb\/create-document.md", @@ -78217,11 +77714,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }" }, "permissions": { @@ -78235,6 +77734,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -78274,7 +77774,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 909, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-documents.md", @@ -78402,7 +77901,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 908, "cookies": false, "type": "", "demo": "vectorsdb\/update-documents.md", @@ -78458,11 +77956,13 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -78502,7 +78002,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 910, "cookies": false, "type": "", "demo": "vectorsdb\/delete-documents.md", @@ -78558,6 +78057,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -78599,7 +78099,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 905, "cookies": false, "type": "", "demo": "vectorsdb\/get-document.md", @@ -78707,7 +78206,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 904, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-document.md", @@ -78809,6 +78307,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -78853,7 +78352,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 903, "cookies": false, "type": "", "demo": "vectorsdb\/update-document.md", @@ -78923,6 +78421,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -78960,7 +78459,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 907, "cookies": false, "type": "", "demo": "vectorsdb\/delete-document.md", @@ -79063,7 +78561,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 901, "cookies": false, "type": "", "demo": "vectorsdb\/list-indexes.md", @@ -79158,7 +78655,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 898, "cookies": false, "type": "", "demo": "vectorsdb\/create-index.md", @@ -79228,8 +78724,7 @@ "key", "unique" ], - "x-enum-name": "VectorsDBIndexType", - "x-enum-keys": [] + "x-enum-name": "VectorsDBIndexType" }, "attributes": { "type": "array", @@ -79242,6 +78737,7 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -79249,13 +78745,13 @@ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", + "default": [], "x-example": null, "items": { "type": "integer" @@ -79297,7 +78793,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 899, "cookies": false, "type": "", "demo": "vectorsdb\/get-index.md", @@ -79370,7 +78865,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 900, "cookies": false, "type": "", "demo": "vectorsdb\/delete-index.md", @@ -79452,7 +78946,6 @@ "x-appwrite": { "method": "getCollectionUsage", "group": null, - "weight": 897, "cookies": false, "type": "", "demo": "vectorsdb\/get-collection-usage.md", @@ -79545,7 +79038,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 890, "cookies": false, "type": "", "demo": "vectorsdb\/get-usage.md", @@ -79654,7 +79146,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 578, "cookies": false, "type": "", "demo": "webhooks\/list.md", @@ -79728,7 +79219,6 @@ "x-appwrite": { "method": "create", "group": null, - "weight": 577, "cookies": false, "type": "", "demo": "webhooks\/create.md", @@ -79784,21 +79274,25 @@ "enabled": { "type": "boolean", "description": "Enable or disable a webhook.", + "default": true, "x-example": false }, "tls": { "type": "boolean", "description": "Certificate verification, false for disabled or true for enabled.", + "default": false, "x-example": false }, "authUsername": { "type": "string", "description": "Webhook HTTP user. Max length: 256 chars.", + "default": "", "x-example": "<AUTH_USERNAME>" }, "authPassword": { "type": "string", "description": "Webhook HTTP password. Max length: 256 chars.", + "default": "", "x-example": "<AUTH_PASSWORD>" }, "secret": { @@ -79844,7 +79338,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 579, "cookies": false, "type": "", "demo": "webhooks\/get.md", @@ -79904,7 +79397,6 @@ "x-appwrite": { "method": "update", "group": null, - "weight": 581, "cookies": false, "type": "", "demo": "webhooks\/update.md", @@ -79967,21 +79459,25 @@ "enabled": { "type": "boolean", "description": "Enable or disable a webhook.", + "default": true, "x-example": false }, "tls": { "type": "boolean", "description": "Certificate verification, false for disabled or true for enabled.", + "default": false, "x-example": false }, "authUsername": { "type": "string", "description": "Webhook HTTP user. Max length: 256 chars.", + "default": "", "x-example": "<AUTH_USERNAME>" }, "authPassword": { "type": "string", "description": "Webhook HTTP password. Max length: 256 chars.", + "default": "", "x-example": "<AUTH_PASSWORD>" } }, @@ -80011,7 +79507,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 580, "cookies": false, "type": "", "demo": "webhooks\/delete.md", @@ -80073,7 +79568,6 @@ "x-appwrite": { "method": "updateSecret", "group": null, - "weight": 582, "cookies": false, "type": "", "demo": "webhooks\/update-secret.md", @@ -89021,6 +88515,28 @@ "description": "Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests", "x-example": false }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all branches.", + "items": { + "type": "string" + }, + "x-example": [ + "main", + "feat\/*" + ] + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all file changes.", + "items": { + "type": "string" + }, + "x-example": [ + "src\/**", + "!docs\/**" + ] + }, "buildSpecification": { "type": "string", "description": "Machine specification for deployment builds.", @@ -89075,6 +88591,8 @@ "providerBranch", "providerRootDirectory", "providerSilentMode", + "providerBranches", + "providerPaths", "buildSpecification", "runtimeSpecification", "buildRuntime", @@ -89109,6 +88627,14 @@ "providerBranch": "main", "providerRootDirectory": "sites\/helloWorld", "providerSilentMode": false, + "providerBranches": [ + "main", + "feat\/*" + ], + "providerPaths": [ + "src\/**", + "!docs\/**" + ], "buildSpecification": "s-1vcpu-512mb", "runtimeSpecification": "s-1vcpu-512mb", "buildRuntime": "node-22", @@ -89457,6 +88983,28 @@ "description": "Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests", "x-example": false }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all branches.", + "items": { + "type": "string" + }, + "x-example": [ + "main", + "feat\/*" + ] + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all file changes.", + "items": { + "type": "string" + }, + "x-example": [ + "src\/**", + "!docs\/**" + ] + }, "buildSpecification": { "type": "string", "description": "Machine specification for deployment builds.", @@ -89497,6 +89045,8 @@ "providerBranch", "providerRootDirectory", "providerSilentMode", + "providerBranches", + "providerPaths", "buildSpecification", "runtimeSpecification" ], @@ -89529,6 +89079,14 @@ "providerBranch": "main", "providerRootDirectory": "functions\/helloWorld", "providerSilentMode": false, + "providerBranches": [ + "main", + "feat\/*" + ], + "providerPaths": [ + "src\/**", + "!docs\/**" + ], "buildSpecification": "s-1vcpu-512mb", "runtimeSpecification": "s-1vcpu-512mb" } @@ -98709,24 +98267,24 @@ "description": "Event ID.", "x-example": "5e5ea5c16897e" }, - "userType": { + "actorType": { "type": "string", - "description": "User type.", + "description": "Actor type.", "x-example": "user" }, - "userId": { + "actorId": { "type": "string", - "description": "User ID.", + "description": "Actor ID.", "x-example": "610fc2f985ee0" }, - "userEmail": { + "actorEmail": { "type": "string", - "description": "User Email.", + "description": "Actor Email.", "x-example": "john@appwrite.io" }, - "userName": { + "actorName": { "type": "string", - "description": "User Name.", + "description": "Actor Name.", "x-example": "John Doe" }, "resourceParent": { @@ -98867,10 +98425,10 @@ }, "required": [ "$id", - "userType", - "userId", - "userEmail", - "userName", + "actorType", + "actorId", + "actorEmail", + "actorName", "resourceParent", "resourceType", "resourceId", @@ -98901,10 +98459,10 @@ ], "example": { "$id": "5e5ea5c16897e", - "userType": "user", - "userId": "610fc2f985ee0", - "userEmail": "john@appwrite.io", - "userName": "John Doe", + "actorType": "user", + "actorId": "610fc2f985ee0", + "actorEmail": "john@appwrite.io", + "actorName": "John Doe", "resourceParent": "database\/ID", "resourceType": "collection", "resourceId": "610fc2f985ee0", diff --git a/specs/1.9.x/open-api3-1.9.x-server.json b/specs/1.9.x/open-api3-1.9.x-server.json index 943392246..bf8af1f85 100644 --- a/specs/1.9.x/open-api3-1.9.x-server.json +++ b/specs/1.9.x/open-api3-1.9.x-server.json @@ -31,9 +31,6 @@ } } ], - "x-appwrite": { - "endpointDocs": "https:\/\/<REGION>.cloud.appwrite.io\/v1" - }, "paths": { "\/account": { "get": { @@ -59,7 +56,6 @@ "x-appwrite": { "method": "get", "group": "account", - "weight": 9, "cookies": false, "type": "", "demo": "account\/get.md", @@ -111,7 +107,6 @@ "x-appwrite": { "method": "create", "group": "account", - "weight": 8, "cookies": false, "type": "", "demo": "account\/create.md", @@ -164,6 +159,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -202,7 +198,6 @@ "x-appwrite": { "method": "updateEmail", "group": "account", - "weight": 34, "cookies": false, "type": "", "demo": "account\/update-email.md", @@ -283,7 +278,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 47, "cookies": false, "type": "", "demo": "account\/list-identities.md", @@ -356,7 +350,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 48, "cookies": false, "type": "", "demo": "account\/delete-identity.md", @@ -422,7 +415,6 @@ "x-appwrite": { "method": "createJWT", "group": "tokens", - "weight": 29, "cookies": false, "type": "", "demo": "account\/create-jwt.md", @@ -459,6 +451,7 @@ "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", + "default": 900, "x-example": 0, "format": "int32" } @@ -493,7 +486,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 31, "cookies": false, "type": "", "demo": "account\/list-logs.md", @@ -573,7 +565,6 @@ "x-appwrite": { "method": "updateMFA", "group": "mfa", - "weight": 165, "cookies": false, "type": "", "demo": "account\/update-mfa.md", @@ -646,7 +637,6 @@ "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", - "weight": 167, "cookies": false, "type": "", "demo": "account\/create-mfa-authenticator.md", @@ -743,8 +733,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -773,7 +762,6 @@ "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", - "weight": 168, "cookies": false, "type": "", "demo": "account\/update-mfa-authenticator.md", @@ -874,8 +862,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -916,7 +903,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 169, "cookies": false, "type": "", "demo": "account\/delete-mfa-authenticator.md", @@ -1011,8 +997,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -1043,7 +1028,6 @@ "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", - "weight": 173, "cookies": false, "type": "", "demo": "account\/create-mfa-challenge.md", @@ -1145,8 +1129,7 @@ "totp", "recoverycode" ], - "x-enum-name": "AuthenticationFactor", - "x-enum-keys": [] + "x-enum-name": "AuthenticationFactor" } }, "required": [ @@ -1180,7 +1163,6 @@ "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", - "weight": 174, "cookies": false, "type": "", "demo": "account\/update-mfa-challenge.md", @@ -1321,7 +1303,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 166, "cookies": false, "type": "", "demo": "account\/list-mfa-factors.md", @@ -1425,7 +1406,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 172, "cookies": false, "type": "", "demo": "account\/get-mfa-recovery-codes.md", @@ -1527,7 +1507,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 170, "cookies": false, "type": "", "demo": "account\/create-mfa-recovery-codes.md", @@ -1629,7 +1608,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 171, "cookies": false, "type": "", "demo": "account\/update-mfa-recovery-codes.md", @@ -1733,7 +1711,6 @@ "x-appwrite": { "method": "updateName", "group": "account", - "weight": 32, "cookies": false, "type": "", "demo": "account\/update-name.md", @@ -1806,7 +1783,6 @@ "x-appwrite": { "method": "updatePassword", "group": "account", - "weight": 33, "cookies": false, "type": "", "demo": "account\/update-password.md", @@ -1848,6 +1824,7 @@ "oldPassword": { "type": "string", "description": "Current user password. Must be at least 8 chars.", + "default": "", "x-example": "password", "format": "password" } @@ -1885,7 +1862,6 @@ "x-appwrite": { "method": "updatePhone", "group": "account", - "weight": 35, "cookies": false, "type": "", "demo": "account\/update-phone.md", @@ -1966,7 +1942,6 @@ "x-appwrite": { "method": "getPrefs", "group": "account", - "weight": 30, "cookies": false, "type": "", "demo": "account\/get-prefs.md", @@ -2018,7 +1993,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "account", - "weight": 36, "cookies": false, "type": "", "demo": "account\/update-prefs.md", @@ -2091,7 +2065,6 @@ "x-appwrite": { "method": "createRecovery", "group": "recovery", - "weight": 38, "cookies": false, "type": "", "demo": "account\/create-recovery.md", @@ -2173,7 +2146,6 @@ "x-appwrite": { "method": "updateRecovery", "group": "recovery", - "weight": 39, "cookies": false, "type": "", "demo": "account\/update-recovery.md", @@ -2258,7 +2230,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 11, "cookies": false, "type": "", "demo": "account\/list-sessions.md", @@ -2303,7 +2274,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 12, "cookies": false, "type": "", "demo": "account\/delete-sessions.md", @@ -2357,7 +2327,6 @@ "x-appwrite": { "method": "createAnonymousSession", "group": "sessions", - "weight": 17, "cookies": false, "type": "", "demo": "account\/create-anonymous-session.md", @@ -2411,7 +2380,6 @@ "x-appwrite": { "method": "createEmailPasswordSession", "group": "sessions", - "weight": 16, "cookies": false, "type": "", "demo": "account\/create-email-password-session.md", @@ -2492,7 +2460,6 @@ "x-appwrite": { "method": "updateMagicURLSession", "group": "sessions", - "weight": 26, "cookies": false, "type": "", "demo": "account\/update-magic-url-session.md", @@ -2551,149 +2518,6 @@ } } }, - "\/account\/sessions\/oauth2\/{provider}": { - "get": { - "summary": "Create OAuth2 session", - "operationId": "accountCreateOAuth2Session", - "tags": [ - "account" - ], - "description": "Allow the user to login to their account using the OAuth2 provider of their choice. Each OAuth2 provider should be enabled from the Appwrite console first. Use the success and failure arguments to provide a redirect URL's back to your app when login is completed.\n\nIf there is already an active session, the new session will be attached to the logged-in account. If there are no active sessions, the server will attempt to look for a user with the same email address as the email received from the OAuth2 provider and attach the new session to the existing user. If no matching user is found - the server will create a new user.\n\nA user is limited to 10 active sessions at a time by default. [Learn more about session limits](https:\/\/appwrite.io\/docs\/authentication-security#limits).\n", - "responses": { - "301": { - "description": "File" - } - }, - "deprecated": false, - "x-appwrite": { - "method": "createOAuth2Session", - "group": "sessions", - "weight": 19, - "cookies": false, - "type": "webAuth", - "demo": "account\/create-o-auth-2-session.md", - "rate-limit": 50, - "rate-time": 3600, - "rate-key": "ip:{ip}", - "scope": "sessions.write", - "platforms": [ - "console", - "client", - "server" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/create-session-oauth2.md", - "auth": { - "Project": [], - "Session": [] - } - }, - "security": [ - { - "Project": [], - "Session": [], - "JWT": [] - } - ], - "parameters": [ - { - "name": "provider", - "description": "OAuth2 Provider. Currently, supported providers are: amazon, apple, auth0, authentik, autodesk, bitbucket, bitly, box, dailymotion, discord, disqus, dropbox, etsy, facebook, figma, fusionauth, github, gitlab, google, keycloak, kick, linkedin, microsoft, notion, oidc, okta, paypal, paypalSandbox, podio, salesforce, slack, spotify, stripe, tradeshift, tradeshiftBox, twitch, wordpress, x, yahoo, yammer, yandex, zoho, zoom.", - "required": true, - "schema": { - "type": "string", - "x-example": "amazon", - "enum": [ - "amazon", - "apple", - "auth0", - "authentik", - "autodesk", - "bitbucket", - "bitly", - "box", - "dailymotion", - "discord", - "disqus", - "dropbox", - "etsy", - "facebook", - "figma", - "fusionauth", - "github", - "gitlab", - "google", - "keycloak", - "kick", - "linkedin", - "microsoft", - "notion", - "oidc", - "okta", - "paypal", - "paypalSandbox", - "podio", - "salesforce", - "slack", - "spotify", - "stripe", - "tradeshift", - "tradeshiftBox", - "twitch", - "wordpress", - "x", - "yahoo", - "yammer", - "yandex", - "zoho", - "zoom" - ], - "x-enum-name": "OAuthProvider", - "x-enum-keys": [] - }, - "in": "path" - }, - { - "name": "success", - "description": "URL to redirect back to your app after a successful login attempt. Only URLs from hostnames in your project's platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "required": false, - "schema": { - "type": "string", - "format": "url", - "x-example": "https:\/\/example.com", - "default": "" - }, - "in": "query" - }, - { - "name": "failure", - "description": "URL to redirect back to your app after a failed login attempt. Only URLs from hostnames in your project's platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "required": false, - "schema": { - "type": "string", - "format": "url", - "x-example": "https:\/\/example.com", - "default": "" - }, - "in": "query" - }, - { - "name": "scopes", - "description": "A list of custom OAuth2 scopes. Check each provider internal docs for a list of supported scopes. Maximum of 100 scopes are allowed, each 4096 characters long.", - "required": false, - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "default": [] - }, - "in": "query" - } - ] - } - }, "\/account\/sessions\/phone": { "put": { "summary": "Update phone session", @@ -2718,7 +2542,6 @@ "x-appwrite": { "method": "updatePhoneSession", "group": "sessions", - "weight": 27, "cookies": false, "type": "", "demo": "account\/update-phone-session.md", @@ -2801,7 +2624,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 18, "cookies": false, "type": "", "demo": "account\/create-session.md", @@ -2880,7 +2702,6 @@ "x-appwrite": { "method": "getSession", "group": "sessions", - "weight": 13, "cookies": false, "type": "", "demo": "account\/get-session.md", @@ -2944,7 +2765,6 @@ "x-appwrite": { "method": "updateSession", "group": "sessions", - "weight": 15, "cookies": false, "type": "", "demo": "account\/update-session.md", @@ -3001,7 +2821,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 14, "cookies": false, "type": "", "demo": "account\/delete-session.md", @@ -3067,7 +2886,6 @@ "x-appwrite": { "method": "updateStatus", "group": "account", - "weight": 37, "cookies": false, "type": "", "demo": "account\/update-status.md", @@ -3097,232 +2915,6 @@ ] } }, - "\/account\/targets\/push": { - "post": { - "summary": "Create push target", - "operationId": "accountCreatePushTarget", - "tags": [ - "account" - ], - "description": "Use this endpoint to register a device for push notifications. Provide a target ID (custom or generated using ID.unique()), a device identifier (usually a device token), and optionally specify which provider should send notifications to this target. The target is automatically linked to the current session and includes device information like brand and model.", - "responses": { - "201": { - "description": "Target", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/target" - } - } - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "createPushTarget", - "group": "pushTargets", - "weight": 44, - "cookies": false, - "type": "", - "demo": "account\/create-push-target.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "targets.write", - "platforms": [ - "console", - "client", - "server" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/create-push-target.md", - "auth": { - "Project": [], - "Session": [] - } - }, - "security": [ - { - "Project": [], - "Session": [], - "JWT": [] - } - ], - "requestBody": { - "content": { - "application\/json": { - "schema": { - "type": "object", - "properties": { - "targetId": { - "type": "string", - "description": "Target ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<TARGET_ID>" - }, - "identifier": { - "type": "string", - "description": "The target identifier (token, email, phone etc.)", - "x-example": "<IDENTIFIER>" - }, - "providerId": { - "type": "string", - "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", - "x-example": "<PROVIDER_ID>" - } - }, - "required": [ - "targetId", - "identifier" - ] - } - } - } - } - } - }, - "\/account\/targets\/{targetId}\/push": { - "put": { - "summary": "Update push target", - "operationId": "accountUpdatePushTarget", - "tags": [ - "account" - ], - "description": "Update the currently logged in user's push notification target. You can modify the target's identifier (device token) and provider ID (token, email, phone etc.). The target must exist and belong to the current user. If you change the provider ID, notifications will be sent through the new messaging provider instead.", - "responses": { - "200": { - "description": "Target", - "content": { - "application\/json": { - "schema": { - "$ref": "#\/components\/schemas\/target" - } - } - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "updatePushTarget", - "group": "pushTargets", - "weight": 45, - "cookies": false, - "type": "", - "demo": "account\/update-push-target.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "targets.write", - "platforms": [ - "console", - "client", - "server" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/update-push-target.md", - "auth": { - "Project": [], - "Session": [] - } - }, - "security": [ - { - "Project": [], - "Session": [], - "JWT": [] - } - ], - "parameters": [ - { - "name": "targetId", - "description": "Target ID.", - "required": true, - "schema": { - "type": "string", - "x-example": "<TARGET_ID>" - }, - "in": "path" - } - ], - "requestBody": { - "content": { - "application\/json": { - "schema": { - "type": "object", - "properties": { - "identifier": { - "type": "string", - "description": "The target identifier (token, email, phone etc.)", - "x-example": "<IDENTIFIER>" - } - }, - "required": [ - "identifier" - ] - } - } - } - } - }, - "delete": { - "summary": "Delete push target", - "operationId": "accountDeletePushTarget", - "tags": [ - "account" - ], - "description": "Delete a push notification target for the currently logged in user. After deletion, the device will no longer receive push notifications. The target must exist and belong to the current user.", - "responses": { - "204": { - "description": "No content" - } - }, - "deprecated": false, - "x-appwrite": { - "method": "deletePushTarget", - "group": "pushTargets", - "weight": 46, - "cookies": false, - "type": "", - "demo": "account\/delete-push-target.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "targets.write", - "platforms": [ - "console", - "client", - "server" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/delete-push-target.md", - "auth": { - "Project": [], - "Session": [] - } - }, - "security": [ - { - "Project": [], - "Session": [], - "JWT": [] - } - ], - "parameters": [ - { - "name": "targetId", - "description": "Target ID.", - "required": true, - "schema": { - "type": "string", - "x-example": "<TARGET_ID>" - }, - "in": "path" - } - ] - } - }, "\/account\/tokens\/email": { "post": { "summary": "Create email token (OTP)", @@ -3347,7 +2939,6 @@ "x-appwrite": { "method": "createEmailToken", "group": "tokens", - "weight": 25, "cookies": false, "type": "", "demo": "account\/create-email-token.md", @@ -3398,6 +2989,7 @@ "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", + "default": false, "x-example": false } }, @@ -3435,7 +3027,6 @@ "x-appwrite": { "method": "createMagicURLToken", "group": "tokens", - "weight": 24, "cookies": false, "type": "", "demo": "account\/create-magic-url-token.md", @@ -3486,12 +3077,14 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the magic URL login. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", + "default": "", "x-example": "https:\/\/example.com", "format": "url" }, "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", + "default": false, "x-example": false } }, @@ -3522,7 +3115,6 @@ "x-appwrite": { "method": "createOAuth2Token", "group": "tokens", - "weight": 23, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-token.md", @@ -3603,8 +3195,7 @@ "zoho", "zoom" ], - "x-enum-name": "OAuthProvider", - "x-enum-keys": [] + "x-enum-name": "OAuthProvider" }, "in": "path" }, @@ -3672,7 +3263,6 @@ "x-appwrite": { "method": "createPhoneToken", "group": "tokens", - "weight": 28, "cookies": false, "type": "", "demo": "account\/create-phone-token.md", @@ -3755,7 +3345,6 @@ "x-appwrite": { "method": "createEmailVerification", "group": "verification", - "weight": 40, "cookies": false, "type": "", "demo": "account\/create-email-verification.md", @@ -3881,7 +3470,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "verification", - "weight": 41, "cookies": false, "type": "", "demo": "account\/update-email-verification.md", @@ -4018,7 +3606,6 @@ "x-appwrite": { "method": "createPhoneVerification", "group": "verification", - "weight": 42, "cookies": false, "type": "", "demo": "account\/create-phone-verification.md", @@ -4073,7 +3660,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "verification", - "weight": 43, "cookies": false, "type": "", "demo": "account\/update-phone-verification.md", @@ -4152,7 +3738,6 @@ "x-appwrite": { "method": "listEvents", "group": null, - "weight": 1258, "cookies": false, "type": "", "demo": "activities\/list-events.md", @@ -4216,7 +3801,6 @@ "x-appwrite": { "method": "getEvent", "group": "events", - "weight": 1259, "cookies": false, "type": "", "demo": "activities\/get-event.md", @@ -4273,7 +3857,6 @@ "x-appwrite": { "method": "getBrowser", "group": null, - "weight": 176, "cookies": false, "type": "location", "demo": "avatars\/get-browser.md", @@ -4403,7 +3986,6 @@ "x-appwrite": { "method": "getCreditCard", "group": null, - "weight": 175, "cookies": false, "type": "location", "demo": "avatars\/get-credit-card.md", @@ -4539,7 +4121,6 @@ "x-appwrite": { "method": "getFavicon", "group": null, - "weight": 179, "cookies": false, "type": "location", "demo": "avatars\/get-favicon.md", @@ -4601,7 +4182,6 @@ "x-appwrite": { "method": "getFlag", "group": null, - "weight": 177, "cookies": false, "type": "location", "demo": "avatars\/get-flag.md", @@ -5093,7 +4673,6 @@ "x-appwrite": { "method": "getImage", "group": null, - "weight": 178, "cookies": false, "type": "location", "demo": "avatars\/get-image.md", @@ -5179,7 +4758,6 @@ "x-appwrite": { "method": "getInitials", "group": null, - "weight": 181, "cookies": false, "type": "location", "demo": "avatars\/get-initials.md", @@ -5275,7 +4853,6 @@ "x-appwrite": { "method": "getQR", "group": null, - "weight": 180, "cookies": false, "type": "location", "demo": "avatars\/get-qr.md", @@ -5371,7 +4948,6 @@ "x-appwrite": { "method": "getScreenshot", "group": null, - "weight": 182, "cookies": false, "type": "location", "demo": "avatars\/get-screenshot.md", @@ -5471,8 +5047,7 @@ "light", "dark" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "BrowserTheme", "default": "light" }, "in": "query" @@ -5938,8 +5513,7 @@ "pacific\/wallis", "utc" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Timezone" }, "in": "query" }, @@ -6020,8 +5594,7 @@ "web-share", "xr-spatial-tracking" ], - "x-enum-name": "BrowserPermission", - "x-enum-keys": [] + "x-enum-name": "BrowserPermission" }, "x-example": "[\"geolocation\",\"notifications\"]", "default": [] @@ -6092,8 +5665,7 @@ "avif", "gif" ], - "x-enum-name": "ImageFormat", - "x-enum-keys": [] + "x-enum-name": "ImageFormat" }, "in": "query" } @@ -6124,7 +5696,6 @@ "x-appwrite": { "method": "listArchives", "group": null, - "weight": 1127, "cookies": false, "type": "", "demo": "backups\/list-archives.md", @@ -6189,7 +5760,6 @@ "x-appwrite": { "method": "createArchive", "group": null, - "weight": 1128, "cookies": false, "type": "", "demo": "backups\/create-archive.md", @@ -6235,8 +5805,7 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "resourceId": { @@ -6279,7 +5848,6 @@ "x-appwrite": { "method": "getArchive", "group": null, - "weight": 1126, "cookies": false, "type": "", "demo": "backups\/get-archive.md", @@ -6334,7 +5902,6 @@ "x-appwrite": { "method": "deleteArchive", "group": null, - "weight": 1129, "cookies": false, "type": "", "demo": "backups\/delete-archive.md", @@ -6398,7 +5965,6 @@ "x-appwrite": { "method": "listPolicies", "group": null, - "weight": 1122, "cookies": false, "type": "", "demo": "backups\/list-policies.md", @@ -6466,7 +6032,6 @@ "x-appwrite": { "method": "createPolicy", "group": null, - "weight": 1123, "cookies": false, "type": "", "demo": "backups\/create-policy.md", @@ -6509,6 +6074,7 @@ "name": { "type": "string", "description": "Policy name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" }, "services": { @@ -6525,8 +6091,7 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "resourceId": { @@ -6538,6 +6103,7 @@ "enabled": { "type": "boolean", "description": "Is policy enabled? When set to 'disabled', no backups will be taken", + "default": true, "x-example": false }, "retention": { @@ -6588,7 +6154,6 @@ "x-appwrite": { "method": "getPolicy", "group": null, - "weight": 1121, "cookies": false, "type": "", "demo": "backups\/get-policy.md", @@ -6653,7 +6218,6 @@ "x-appwrite": { "method": "updatePolicy", "group": null, - "weight": 1124, "cookies": false, "type": "", "demo": "backups\/update-policy.md", @@ -6746,7 +6310,6 @@ "x-appwrite": { "method": "deletePolicy", "group": null, - "weight": 1125, "cookies": false, "type": "", "demo": "backups\/delete-policy.md", @@ -6813,7 +6376,6 @@ "x-appwrite": { "method": "createRestoration", "group": null, - "weight": 1132, "cookies": false, "type": "", "demo": "backups\/create-restoration.md", @@ -6864,18 +6426,19 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "newResourceId": { "type": "string", "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "<NEW_RESOURCE_ID>" }, "newResourceName": { "type": "string", "description": "Database name. Max length: 128 chars.", + "default": "", "x-example": "<NEW_RESOURCE_NAME>" } }, @@ -6913,7 +6476,6 @@ "x-appwrite": { "method": "listRestorations", "group": null, - "weight": 1131, "cookies": false, "type": "", "demo": "backups\/list-restorations.md", @@ -6980,7 +6542,6 @@ "x-appwrite": { "method": "getRestoration", "group": null, - "weight": 1130, "cookies": false, "type": "", "demo": "backups\/get-restoration.md", @@ -7044,7 +6605,6 @@ "x-appwrite": { "method": "list", "group": "databases", - "weight": 704, "cookies": false, "type": "", "demo": "databases\/list.md", @@ -7165,7 +6725,6 @@ "x-appwrite": { "method": "create", "group": "databases", - "weight": 700, "cookies": false, "type": "", "demo": "databases\/create.md", @@ -7247,6 +6806,7 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -7284,7 +6844,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 774, "cookies": false, "type": "", "demo": "databases\/list-transactions.md", @@ -7353,7 +6912,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 770, "cookies": false, "type": "", "demo": "databases\/create-transaction.md", @@ -7392,6 +6950,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -7426,7 +6985,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 771, "cookies": false, "type": "", "demo": "databases\/get-transaction.md", @@ -7492,7 +7050,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 772, "cookies": false, "type": "", "demo": "databases\/update-transaction.md", @@ -7543,11 +7100,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -7572,7 +7131,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 773, "cookies": false, "type": "", "demo": "databases\/delete-transaction.md", @@ -7640,7 +7198,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 775, "cookies": false, "type": "", "demo": "databases\/create-operations.md", @@ -7691,6 +7248,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -7727,7 +7285,6 @@ "x-appwrite": { "method": "get", "group": "databases", - "weight": 701, "cookies": false, "type": "", "demo": "databases\/get.md", @@ -7823,7 +7380,6 @@ "x-appwrite": { "method": "update", "group": "databases", - "weight": 702, "cookies": false, "type": "", "demo": "databases\/update.md", @@ -7911,6 +7467,7 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } } @@ -7935,7 +7492,6 @@ "x-appwrite": { "method": "delete", "group": "databases", - "weight": 703, "cookies": false, "type": "", "demo": "databases\/delete.md", @@ -8032,7 +7588,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 712, "cookies": false, "type": "", "demo": "databases\/list-collections.md", @@ -8133,7 +7688,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 708, "cookies": false, "type": "", "demo": "databases\/create-collection.md", @@ -8203,16 +7757,19 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false }, "attributes": { "type": "array", "description": "Array of attribute definitions to create. Each attribute should contain: key (string), type (string: string, integer, float, boolean, datetime), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", + "default": [], "x-example": null, "items": { "type": "object" @@ -8221,6 +7778,7 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of attribute keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", + "default": [], "x-example": null, "items": { "type": "object" @@ -8261,7 +7819,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 709, "cookies": false, "type": "", "demo": "databases\/get-collection.md", @@ -8337,7 +7894,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 710, "cookies": false, "type": "", "demo": "databases\/update-collection.md", @@ -8412,16 +7968,19 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this collection as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", + "default": false, "x-example": false } } @@ -8446,7 +8005,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 711, "cookies": false, "type": "", "demo": "databases\/delete-collection.md", @@ -8524,7 +8082,6 @@ "x-appwrite": { "method": "listAttributes", "group": "attributes", - "weight": 729, "cookies": false, "type": "", "demo": "databases\/list-attributes.md", @@ -8626,7 +8183,6 @@ "x-appwrite": { "method": "createBigIntAttribute", "group": "attributes", - "weight": 742, "cookies": false, "type": "", "demo": "databases\/create-big-int-attribute.md", @@ -8718,6 +8274,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -8755,7 +8312,6 @@ "x-appwrite": { "method": "updateBigIntAttribute", "group": "attributes", - "weight": 743, "cookies": false, "type": "", "demo": "databases\/update-big-int-attribute.md", @@ -8889,7 +8445,6 @@ "x-appwrite": { "method": "createBooleanAttribute", "group": "attributes", - "weight": 730, "cookies": false, "type": "", "demo": "databases\/create-boolean-attribute.md", @@ -8966,6 +8521,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -9003,7 +8559,6 @@ "x-appwrite": { "method": "updateBooleanAttribute", "group": "attributes", - "weight": 731, "cookies": false, "type": "", "demo": "databases\/update-boolean-attribute.md", @@ -9122,7 +8677,6 @@ "x-appwrite": { "method": "createDatetimeAttribute", "group": "attributes", - "weight": 732, "cookies": false, "type": "", "demo": "databases\/create-datetime-attribute.md", @@ -9200,6 +8754,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -9237,7 +8792,6 @@ "x-appwrite": { "method": "updateDatetimeAttribute", "group": "attributes", - "weight": 733, "cookies": false, "type": "", "demo": "databases\/update-datetime-attribute.md", @@ -9357,7 +8911,6 @@ "x-appwrite": { "method": "createEmailAttribute", "group": "attributes", - "weight": 734, "cookies": false, "type": "", "demo": "databases\/create-email-attribute.md", @@ -9435,6 +8988,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -9472,7 +9026,6 @@ "x-appwrite": { "method": "updateEmailAttribute", "group": "attributes", - "weight": 735, "cookies": false, "type": "", "demo": "databases\/update-email-attribute.md", @@ -9592,7 +9145,6 @@ "x-appwrite": { "method": "createEnumAttribute", "group": "attributes", - "weight": 736, "cookies": false, "type": "", "demo": "databases\/create-enum-attribute.md", @@ -9677,6 +9229,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -9715,7 +9268,6 @@ "x-appwrite": { "method": "updateEnumAttribute", "group": "attributes", - "weight": 737, "cookies": false, "type": "", "demo": "databases\/update-enum-attribute.md", @@ -9843,7 +9395,6 @@ "x-appwrite": { "method": "createFloatAttribute", "group": "attributes", - "weight": 738, "cookies": false, "type": "", "demo": "databases\/create-float-attribute.md", @@ -9935,6 +9486,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -9972,7 +9524,6 @@ "x-appwrite": { "method": "updateFloatAttribute", "group": "attributes", - "weight": 739, "cookies": false, "type": "", "demo": "databases\/update-float-attribute.md", @@ -10106,7 +9657,6 @@ "x-appwrite": { "method": "createIntegerAttribute", "group": "attributes", - "weight": 740, "cookies": false, "type": "", "demo": "databases\/create-integer-attribute.md", @@ -10198,6 +9748,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -10235,7 +9786,6 @@ "x-appwrite": { "method": "updateIntegerAttribute", "group": "attributes", - "weight": 741, "cookies": false, "type": "", "demo": "databases\/update-integer-attribute.md", @@ -10369,7 +9919,6 @@ "x-appwrite": { "method": "createIpAttribute", "group": "attributes", - "weight": 744, "cookies": false, "type": "", "demo": "databases\/create-ip-attribute.md", @@ -10446,6 +9995,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -10483,7 +10033,6 @@ "x-appwrite": { "method": "updateIpAttribute", "group": "attributes", - "weight": 745, "cookies": false, "type": "", "demo": "databases\/update-ip-attribute.md", @@ -10602,7 +10151,6 @@ "x-appwrite": { "method": "createLineAttribute", "group": "attributes", - "weight": 746, "cookies": false, "type": "", "demo": "databases\/create-line-attribute.md", @@ -10718,7 +10266,6 @@ "x-appwrite": { "method": "updateLineAttribute", "group": "attributes", - "weight": 747, "cookies": false, "type": "", "demo": "databases\/update-line-attribute.md", @@ -10843,7 +10390,6 @@ "x-appwrite": { "method": "createLongtextAttribute", "group": "attributes", - "weight": 764, "cookies": false, "type": "", "demo": "databases\/create-longtext-attribute.md", @@ -10916,11 +10462,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -10958,7 +10506,6 @@ "x-appwrite": { "method": "updateLongtextAttribute", "group": "attributes", - "weight": 765, "cookies": false, "type": "", "demo": "databases\/update-longtext-attribute.md", @@ -11073,7 +10620,6 @@ "x-appwrite": { "method": "createMediumtextAttribute", "group": "attributes", - "weight": 762, "cookies": false, "type": "", "demo": "databases\/create-mediumtext-attribute.md", @@ -11146,11 +10692,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -11188,7 +10736,6 @@ "x-appwrite": { "method": "updateMediumtextAttribute", "group": "attributes", - "weight": 763, "cookies": false, "type": "", "demo": "databases\/update-mediumtext-attribute.md", @@ -11303,7 +10850,6 @@ "x-appwrite": { "method": "createPointAttribute", "group": "attributes", - "weight": 748, "cookies": false, "type": "", "demo": "databases\/create-point-attribute.md", @@ -11419,7 +10965,6 @@ "x-appwrite": { "method": "updatePointAttribute", "group": "attributes", - "weight": 749, "cookies": false, "type": "", "demo": "databases\/update-point-attribute.md", @@ -11544,7 +11089,6 @@ "x-appwrite": { "method": "createPolygonAttribute", "group": "attributes", - "weight": 750, "cookies": false, "type": "", "demo": "databases\/create-polygon-attribute.md", @@ -11660,7 +11204,6 @@ "x-appwrite": { "method": "updatePolygonAttribute", "group": "attributes", - "weight": 751, "cookies": false, "type": "", "demo": "databases\/update-polygon-attribute.md", @@ -11785,7 +11328,6 @@ "x-appwrite": { "method": "createRelationshipAttribute", "group": "attributes", - "weight": 752, "cookies": false, "type": "", "demo": "databases\/create-relationship-attribute.md", @@ -11858,12 +11400,12 @@ "manyToMany", "oneToMany" ], - "x-enum-name": "RelationshipType", - "x-enum-keys": [] + "x-enum-name": "RelationshipType" }, "twoWay": { "type": "boolean", "description": "Is Two Way?", + "default": false, "x-example": false }, "key": { @@ -11881,14 +11423,14 @@ "onDelete": { "type": "string", "description": "Constraints option", + "default": "restrict", "x-example": "cascade", "enum": [ "cascade", "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" } }, "required": [ @@ -11925,7 +11467,6 @@ "x-appwrite": { "method": "updateRelationshipAttribute", "group": "attributes", - "weight": 753, "cookies": false, "type": "", "demo": "databases\/update-relationship-attribute.md", @@ -12001,8 +11542,7 @@ "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" }, "newKey": { "type": "string", @@ -12041,7 +11581,6 @@ "x-appwrite": { "method": "createStringAttribute", "group": "attributes", - "weight": 754, "cookies": false, "type": "", "demo": "databases\/create-string-attribute.md", @@ -12124,11 +11663,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -12167,7 +11708,6 @@ "x-appwrite": { "method": "updateStringAttribute", "group": "attributes", - "weight": 755, "cookies": false, "type": "", "demo": "databases\/update-string-attribute.md", @@ -12293,7 +11833,6 @@ "x-appwrite": { "method": "createTextAttribute", "group": "attributes", - "weight": 760, "cookies": false, "type": "", "demo": "databases\/create-text-attribute.md", @@ -12366,11 +11905,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -12408,7 +11949,6 @@ "x-appwrite": { "method": "updateTextAttribute", "group": "attributes", - "weight": 761, "cookies": false, "type": "", "demo": "databases\/update-text-attribute.md", @@ -12523,7 +12063,6 @@ "x-appwrite": { "method": "createUrlAttribute", "group": "attributes", - "weight": 756, "cookies": false, "type": "", "demo": "databases\/create-url-attribute.md", @@ -12601,6 +12140,7 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false } }, @@ -12638,7 +12178,6 @@ "x-appwrite": { "method": "updateUrlAttribute", "group": "attributes", - "weight": 757, "cookies": false, "type": "", "demo": "databases\/update-url-attribute.md", @@ -12758,7 +12297,6 @@ "x-appwrite": { "method": "createVarcharAttribute", "group": "attributes", - "weight": 758, "cookies": false, "type": "", "demo": "databases\/create-varchar-attribute.md", @@ -12837,11 +12375,13 @@ "array": { "type": "boolean", "description": "Is attribute an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", + "default": false, "x-example": false } }, @@ -12880,7 +12420,6 @@ "x-appwrite": { "method": "updateVarcharAttribute", "group": "attributes", - "weight": 759, "cookies": false, "type": "", "demo": "databases\/update-varchar-attribute.md", @@ -13084,7 +12623,6 @@ "x-appwrite": { "method": "getAttribute", "group": "attributes", - "weight": 727, "cookies": false, "type": "", "demo": "databases\/get-attribute.md", @@ -13162,7 +12700,6 @@ "x-appwrite": { "method": "deleteAttribute", "group": "attributes", - "weight": 728, "cookies": false, "type": "", "demo": "databases\/delete-attribute.md", @@ -13249,7 +12786,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 918, "cookies": false, "type": "", "demo": "databases\/list-documents.md", @@ -13375,7 +12911,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 715, "cookies": false, "type": "", "demo": "databases\/create-document.md", @@ -13511,11 +13046,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -13530,6 +13067,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -13570,7 +13108,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 720, "cookies": false, "type": "", "demo": "databases\/upsert-documents.md", @@ -13709,7 +13246,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 718, "cookies": false, "type": "", "demo": "databases\/update-documents.md", @@ -13770,11 +13306,13 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -13815,7 +13353,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 722, "cookies": false, "type": "", "demo": "databases\/delete-documents.md", @@ -13876,6 +13413,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -13918,7 +13456,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 716, "cookies": false, "type": "", "demo": "databases\/get-document.md", @@ -14031,7 +13568,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 719, "cookies": false, "type": "", "demo": "databases\/upsert-document.md", @@ -14143,6 +13679,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required attributes of the document to be created or updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -14189,7 +13726,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 717, "cookies": false, "type": "", "demo": "databases\/update-document.md", @@ -14264,6 +13800,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -14303,7 +13840,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 721, "cookies": false, "type": "", "demo": "databases\/delete-document.md", @@ -14412,7 +13948,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 726, "cookies": false, "type": "", "demo": "databases\/decrement-document-attribute.md", @@ -14496,6 +14031,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -14543,7 +14079,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 725, "cookies": false, "type": "", "demo": "databases\/increment-document-attribute.md", @@ -14627,6 +14162,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -14674,7 +14210,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 769, "cookies": false, "type": "", "demo": "databases\/list-indexes.md", @@ -14774,7 +14309,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 766, "cookies": false, "type": "", "demo": "databases\/create-index.md", @@ -14847,8 +14381,7 @@ "unique", "spatial" ], - "x-enum-name": "DatabasesIndexType", - "x-enum-keys": [] + "x-enum-name": "DatabasesIndexType" }, "attributes": { "type": "array", @@ -14861,6 +14394,7 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -14868,13 +14402,13 @@ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", + "default": [], "x-example": null, "items": { "type": "integer" @@ -14916,7 +14450,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 767, "cookies": false, "type": "", "demo": "databases\/get-index.md", @@ -14994,7 +14527,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 768, "cookies": false, "type": "", "demo": "databases\/delete-index.md", @@ -15081,7 +14613,6 @@ "x-appwrite": { "method": "list", "group": "documentsdb", - "weight": 920, "cookies": false, "type": "", "demo": "documentsdb\/list.md", @@ -15157,7 +14688,6 @@ "x-appwrite": { "method": "create", "group": "documentsdb", - "weight": 922, "cookies": false, "type": "", "demo": "documentsdb\/create.md", @@ -15202,6 +14732,7 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -15239,7 +14770,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 883, "cookies": false, "type": "", "demo": "documentsdb\/list-transactions.md", @@ -15308,7 +14838,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 879, "cookies": false, "type": "", "demo": "documentsdb\/create-transaction.md", @@ -15347,6 +14876,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -15381,7 +14911,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 880, "cookies": false, "type": "", "demo": "documentsdb\/get-transaction.md", @@ -15447,7 +14976,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 881, "cookies": false, "type": "", "demo": "documentsdb\/update-transaction.md", @@ -15498,11 +15026,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -15527,7 +15057,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 882, "cookies": false, "type": "", "demo": "documentsdb\/delete-transaction.md", @@ -15595,7 +15124,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 884, "cookies": false, "type": "", "demo": "documentsdb\/create-operations.md", @@ -15645,6 +15173,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -15681,7 +15210,6 @@ "x-appwrite": { "method": "get", "group": "documentsdb", - "weight": 852, "cookies": false, "type": "", "demo": "documentsdb\/get.md", @@ -15743,7 +15271,6 @@ "x-appwrite": { "method": "update", "group": "documentsdb", - "weight": 853, "cookies": false, "type": "", "demo": "documentsdb\/update.md", @@ -15795,6 +15322,7 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -15822,7 +15350,6 @@ "x-appwrite": { "method": "delete", "group": "documentsdb", - "weight": 923, "cookies": false, "type": "", "demo": "documentsdb\/delete.md", @@ -15886,7 +15413,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 862, "cookies": false, "type": "", "demo": "documentsdb\/list-collections.md", @@ -15983,7 +15509,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 858, "cookies": false, "type": "", "demo": "documentsdb\/create-collection.md", @@ -16049,16 +15574,19 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false }, "attributes": { "type": "array", "description": "Array of attribute definitions to create. Each attribute should contain: key (string), type (string: string, integer, float, boolean, datetime, relationship), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", + "default": [], "x-example": null, "items": { "type": "object" @@ -16067,6 +15595,7 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of attribute keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", + "default": [], "x-example": null, "items": { "type": "object" @@ -16107,7 +15636,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 859, "cookies": false, "type": "", "demo": "documentsdb\/get-collection.md", @@ -16179,7 +15707,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 860, "cookies": false, "type": "", "demo": "documentsdb\/update-collection.md", @@ -16249,16 +15776,19 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this collection as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", + "default": false, "x-example": false } }, @@ -16286,7 +15816,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 861, "cookies": false, "type": "", "demo": "documentsdb\/delete-collection.md", @@ -16360,7 +15889,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 921, "cookies": false, "type": "", "demo": "documentsdb\/list-documents.md", @@ -16482,7 +16010,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 868, "cookies": false, "type": "", "demo": "documentsdb\/create-document.md", @@ -16604,11 +16131,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -16622,6 +16151,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -16661,7 +16191,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 873, "cookies": false, "type": "", "demo": "documentsdb\/upsert-documents.md", @@ -16791,7 +16320,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 871, "cookies": false, "type": "", "demo": "documentsdb\/update-documents.md", @@ -16848,11 +16376,13 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -16892,7 +16422,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 875, "cookies": false, "type": "", "demo": "documentsdb\/delete-documents.md", @@ -16949,6 +16478,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -16990,7 +16520,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 869, "cookies": false, "type": "", "demo": "documentsdb\/get-document.md", @@ -17099,7 +16628,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 872, "cookies": false, "type": "", "demo": "documentsdb\/upsert-document.md", @@ -17203,6 +16731,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -17247,7 +16776,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 870, "cookies": false, "type": "", "demo": "documentsdb\/update-document.md", @@ -17318,6 +16846,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -17355,7 +16884,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 874, "cookies": false, "type": "", "demo": "documentsdb\/delete-document.md", @@ -17459,7 +16987,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 878, "cookies": false, "type": "", "demo": "documentsdb\/decrement-document-attribute.md", @@ -17539,6 +17066,7 @@ "value": { "type": "number", "description": "Value to decrement the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -17584,7 +17112,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 877, "cookies": false, "type": "", "demo": "documentsdb\/increment-document-attribute.md", @@ -17664,6 +17191,7 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -17709,7 +17237,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 867, "cookies": false, "type": "", "demo": "documentsdb\/list-indexes.md", @@ -17805,7 +17332,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 864, "cookies": false, "type": "", "demo": "documentsdb\/create-index.md", @@ -17873,8 +17399,7 @@ "fulltext", "unique" ], - "x-enum-name": "DocumentsDBIndexType", - "x-enum-keys": [] + "x-enum-name": "DocumentsDBIndexType" }, "attributes": { "type": "array", @@ -17887,6 +17412,7 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -17894,13 +17420,13 @@ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", + "default": [], "x-example": null, "items": { "type": "integer" @@ -17942,7 +17468,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 865, "cookies": false, "type": "", "demo": "documentsdb\/get-index.md", @@ -18016,7 +17541,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 866, "cookies": false, "type": "", "demo": "documentsdb\/delete-index.md", @@ -18099,7 +17623,6 @@ "x-appwrite": { "method": "list", "group": "functions", - "weight": 425, "cookies": false, "type": "", "demo": "functions\/list.md", @@ -18185,7 +17708,6 @@ "x-appwrite": { "method": "create", "group": "functions", - "weight": 969, "cookies": false, "type": "", "demo": "functions\/create.md", @@ -18283,6 +17805,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -18322,14 +17845,15 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "execute": { "type": "array", "description": "An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", + "default": [], "x-example": "[\"any\"]", "items": { "type": "string" @@ -18338,6 +17862,7 @@ "events": { "type": "array", "description": "Events list. Maximum of 100 events are allowed.", + "default": [], "x-example": null, "items": { "type": "string" @@ -18346,37 +17871,44 @@ "schedule": { "type": "string", "description": "Schedule CRON syntax.", + "default": "", "x-example": null }, "timeout": { "type": "integer", "description": "Function maximum execution time in seconds.", + "default": 15, "x-example": 1, "format": "int32" }, "enabled": { "type": "boolean", "description": "Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.", + "default": true, "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, executions will exclude logs and errors, and will be slightly faster.", + "default": true, "x-example": false }, "entrypoint": { "type": "string", "description": "Entrypoint File. This path is relative to the \"providerRootDirectory\".", + "default": "", "x-example": "<ENTRYPOINT>" }, "commands": { "type": "string", "description": "Build Commands.", + "default": "", "x-example": "<COMMANDS>" }, "scopes": { "type": "array", "description": "List of scopes allowed for API key auto-generated for every execution. Maximum of 100 scopes are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -18476,48 +18008,73 @@ "events.read", "usage.read" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", + "default": "", "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the function.", + "default": "", "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the function.", + "default": "", "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.", + "default": false, "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to function code in the linked repo.", + "default": "", "x-example": "<PROVIDER_ROOT_DIRECTORY>" }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, "buildSpecification": { "type": "string", "description": "Build specification for the function deployments.", + "default": {}, "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the function executions.", + "default": {}, "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", + "default": 0, "x-example": 0, "format": "int32" } @@ -18557,7 +18114,6 @@ "x-appwrite": { "method": "listRuntimes", "group": "runtimes", - "weight": 427, "cookies": false, "type": "", "demo": "functions\/list-runtimes.md", @@ -18608,7 +18164,6 @@ "x-appwrite": { "method": "listSpecifications", "group": "runtimes", - "weight": 428, "cookies": false, "type": "", "demo": "functions\/list-specifications.md", @@ -18659,7 +18214,6 @@ "x-appwrite": { "method": "get", "group": "functions", - "weight": 423, "cookies": false, "type": "", "demo": "functions\/get.md", @@ -18720,7 +18274,6 @@ "x-appwrite": { "method": "update", "group": "functions", - "weight": 970, "cookies": false, "type": "", "demo": "functions\/update.md", @@ -18825,6 +18378,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -18864,14 +18418,15 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "execute": { "type": "array", "description": "An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", + "default": [], "x-example": "[\"any\"]", "items": { "type": "string" @@ -18880,6 +18435,7 @@ "events": { "type": "array", "description": "Events list. Maximum of 100 events are allowed.", + "default": [], "x-example": null, "items": { "type": "string" @@ -18888,37 +18444,44 @@ "schedule": { "type": "string", "description": "Schedule CRON syntax.", + "default": "", "x-example": null }, "timeout": { "type": "integer", "description": "Maximum execution time in seconds.", + "default": 15, "x-example": 1, "format": "int32" }, "enabled": { "type": "boolean", "description": "Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.", + "default": true, "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, executions will exclude logs and errors, and will be slightly faster.", + "default": true, "x-example": false }, "entrypoint": { "type": "string", "description": "Entrypoint File. This path is relative to the \"providerRootDirectory\".", + "default": "", "x-example": "<ENTRYPOINT>" }, "commands": { "type": "string", "description": "Build Commands.", + "default": "", "x-example": "<COMMANDS>" }, "scopes": { "type": "array", "description": "List of scopes allowed for API Key auto-generated for every execution. Maximum of 100 scopes are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -19018,13 +18581,13 @@ "events.read", "usage.read" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Controle System) deployment.", + "default": "", "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { @@ -19036,31 +18599,55 @@ "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the function", + "default": "", "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.", + "default": false, "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to function code in the linked repo.", + "default": "", "x-example": "<PROVIDER_ROOT_DIRECTORY>" }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "x-example": null, + "items": { + "type": "string" + }, + "x-nullable": true + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "x-example": null, + "items": { + "type": "string" + }, + "x-nullable": true + }, "buildSpecification": { "type": "string", "description": "Build specification for the function deployments.", + "default": {}, "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the function executions.", + "default": {}, "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", + "default": 0, "x-example": 0, "format": "int32" } @@ -19089,7 +18676,6 @@ "x-appwrite": { "method": "delete", "group": "functions", - "weight": 426, "cookies": false, "type": "", "demo": "functions\/delete.md", @@ -19152,7 +18738,6 @@ "x-appwrite": { "method": "updateFunctionDeployment", "group": "functions", - "weight": 431, "cookies": false, "type": "", "demo": "functions\/update-function-deployment.md", @@ -19234,7 +18819,6 @@ "x-appwrite": { "method": "listDeployments", "group": "deployments", - "weight": 432, "cookies": false, "type": "", "demo": "functions\/list-deployments.md", @@ -19330,7 +18914,6 @@ "x-appwrite": { "method": "createDeployment", "group": "deployments", - "weight": 429, "cookies": false, "type": "upload", "demo": "functions\/create-deployment.md", @@ -19431,7 +19014,6 @@ "x-appwrite": { "method": "createDuplicateDeployment", "group": "deployments", - "weight": 437, "cookies": false, "type": "", "demo": "functions\/create-duplicate-deployment.md", @@ -19482,6 +19064,7 @@ "buildId": { "type": "string", "description": "Build unique ID.", + "default": "", "x-example": "<BUILD_ID>" } }, @@ -19518,7 +19101,6 @@ "x-appwrite": { "method": "createTemplateDeployment", "group": "deployments", - "weight": 434, "cookies": false, "type": "", "demo": "functions\/create-template-deployment.md", @@ -19585,8 +19167,7 @@ "branch", "tag" ], - "x-enum-name": "TemplateReferenceType", - "x-enum-keys": [] + "x-enum-name": "TemplateReferenceType" }, "reference": { "type": "string", @@ -19596,6 +19177,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -19636,7 +19218,6 @@ "x-appwrite": { "method": "createVcsDeployment", "group": "deployments", - "weight": 435, "cookies": false, "type": "", "demo": "functions\/create-vcs-deployment.md", @@ -19687,8 +19268,7 @@ "branch", "commit" ], - "x-enum-name": "VCSReferenceType", - "x-enum-keys": [] + "x-enum-name": "VCSReferenceType" }, "reference": { "type": "string", @@ -19698,6 +19278,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -19735,7 +19316,6 @@ "x-appwrite": { "method": "getDeployment", "group": "deployments", - "weight": 430, "cookies": false, "type": "", "demo": "functions\/get-deployment.md", @@ -19799,7 +19379,6 @@ "x-appwrite": { "method": "deleteDeployment", "group": "deployments", - "weight": 433, "cookies": false, "type": "", "demo": "functions\/delete-deployment.md", @@ -19865,7 +19444,6 @@ "x-appwrite": { "method": "getDeploymentDownload", "group": "deployments", - "weight": 436, "cookies": false, "type": "location", "demo": "functions\/get-deployment-download.md", @@ -19925,7 +19503,6 @@ "output" ], "x-enum-name": "DeploymentDownloadType", - "x-enum-keys": [], "default": "source" }, "in": "query" @@ -19957,7 +19534,6 @@ "x-appwrite": { "method": "updateDeploymentStatus", "group": "deployments", - "weight": 438, "cookies": false, "type": "", "demo": "functions\/update-deployment-status.md", @@ -20030,7 +19606,6 @@ "x-appwrite": { "method": "listExecutions", "group": "executions", - "weight": 441, "cookies": false, "type": "", "demo": "functions\/list-executions.md", @@ -20122,7 +19697,6 @@ "x-appwrite": { "method": "createExecution", "group": "executions", - "weight": 439, "cookies": false, "type": "", "demo": "functions\/create-execution.md", @@ -20175,21 +19749,25 @@ "body": { "type": "string", "description": "HTTP body of execution. Default value is empty string.", + "default": "", "x-example": "<BODY>" }, "async": { "type": "boolean", "description": "Execute code in the background. Default value is false.", + "default": false, "x-example": false }, "path": { "type": "string", "description": "HTTP path of execution. Path can include query params. Default value is \/", + "default": "\/", "x-example": "<PATH>" }, "method": { "type": "string", "description": "HTTP method of execution. Default value is POST.", + "default": "POST", "x-example": "GET", "enum": [ "GET", @@ -20200,12 +19778,12 @@ "OPTIONS", "HEAD" ], - "x-enum-name": "ExecutionMethod", - "x-enum-keys": [] + "x-enum-name": "ExecutionMethod" }, "headers": { "type": "object", "description": "HTTP headers of execution. Defaults to empty.", + "default": {}, "x-example": "{}" }, "scheduledAt": { @@ -20245,7 +19823,6 @@ "x-appwrite": { "method": "getExecution", "group": "executions", - "weight": 440, "cookies": false, "type": "", "demo": "functions\/get-execution.md", @@ -20316,7 +19893,6 @@ "x-appwrite": { "method": "deleteExecution", "group": "executions", - "weight": 442, "cookies": false, "type": "", "demo": "functions\/delete-execution.md", @@ -20392,7 +19968,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 447, "cookies": false, "type": "", "demo": "functions\/list-variables.md", @@ -20477,7 +20052,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 971, "cookies": false, "type": "", "demo": "functions\/create-variable.md", @@ -20538,6 +20112,7 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only functions can read them during build and runtime.", + "default": true, "x-example": false } }, @@ -20576,7 +20151,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 446, "cookies": false, "type": "", "demo": "functions\/get-variable.md", @@ -20647,7 +20221,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 448, "cookies": false, "type": "", "demo": "functions\/update-variable.md", @@ -20740,7 +20313,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 449, "cookies": false, "type": "", "demo": "functions\/delete-variable.md", @@ -20813,7 +20385,6 @@ "x-appwrite": { "method": "query", "group": "graphql", - "weight": 116, "cookies": false, "type": "graphql", "demo": "graphql\/query.md", @@ -20869,7 +20440,6 @@ "x-appwrite": { "method": "mutation", "group": "graphql", - "weight": 115, "cookies": false, "type": "graphql", "demo": "graphql\/mutation.md", @@ -20925,7 +20495,6 @@ "x-appwrite": { "method": "get", "group": "health", - "weight": 452, "cookies": false, "type": "", "demo": "health\/get.md", @@ -20977,7 +20546,6 @@ "x-appwrite": { "method": "getAntivirus", "group": "health", - "weight": 461, "cookies": false, "type": "", "demo": "health\/get-antivirus.md", @@ -21029,7 +20597,6 @@ "x-appwrite": { "method": "getCache", "group": "health", - "weight": 455, "cookies": false, "type": "", "demo": "health\/get-cache.md", @@ -21081,7 +20648,6 @@ "x-appwrite": { "method": "getCertificate", "group": "health", - "weight": 458, "cookies": false, "type": "", "demo": "health\/get-certificate.md", @@ -21144,7 +20710,6 @@ "x-appwrite": { "method": "getConsolePausing", "group": null, - "weight": 1115, "cookies": false, "type": "", "demo": "health\/get-console-pausing.md", @@ -21220,7 +20785,6 @@ "x-appwrite": { "method": "getDB", "group": "health", - "weight": 454, "cookies": false, "type": "", "demo": "health\/get-db.md", @@ -21272,7 +20836,6 @@ "x-appwrite": { "method": "getPubSub", "group": "health", - "weight": 456, "cookies": false, "type": "", "demo": "health\/get-pub-sub.md", @@ -21324,7 +20887,6 @@ "x-appwrite": { "method": "getQueueAudits", "group": "queue", - "weight": 462, "cookies": false, "type": "", "demo": "health\/get-queue-audits.md", @@ -21389,7 +20951,6 @@ "x-appwrite": { "method": "getQueueBillingProjectAggregation", "group": null, - "weight": 1111, "cookies": false, "type": "", "demo": "health\/get-queue-billing-project-aggregation.md", @@ -21454,7 +21015,6 @@ "x-appwrite": { "method": "getQueueBillingTeamAggregation", "group": null, - "weight": 1110, "cookies": false, "type": "", "demo": "health\/get-queue-billing-team-aggregation.md", @@ -21519,7 +21079,6 @@ "x-appwrite": { "method": "getQueueBuilds", "group": "queue", - "weight": 466, "cookies": false, "type": "", "demo": "health\/get-queue-builds.md", @@ -21584,7 +21143,6 @@ "x-appwrite": { "method": "getQueuePriorityBuilds", "group": null, - "weight": 1112, "cookies": false, "type": "", "demo": "health\/get-queue-priority-builds.md", @@ -21649,7 +21207,6 @@ "x-appwrite": { "method": "getQueueCertificates", "group": "queue", - "weight": 465, "cookies": false, "type": "", "demo": "health\/get-queue-certificates.md", @@ -21714,7 +21271,6 @@ "x-appwrite": { "method": "getQueueDatabases", "group": "queue", - "weight": 467, "cookies": false, "type": "", "demo": "health\/get-queue-databases.md", @@ -21790,7 +21346,6 @@ "x-appwrite": { "method": "getQueueDeletes", "group": "queue", - "weight": 468, "cookies": false, "type": "", "demo": "health\/get-queue-deletes.md", @@ -21855,7 +21410,6 @@ "x-appwrite": { "method": "getFailedJobs", "group": "queue", - "weight": 475, "cookies": false, "type": "", "demo": "health\/get-failed-jobs.md", @@ -21904,8 +21458,7 @@ "v1-messaging", "v1-migrations" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "HealthQueueName" }, "in": "path" }, @@ -21947,7 +21500,6 @@ "x-appwrite": { "method": "getQueueFunctions", "group": "queue", - "weight": 472, "cookies": false, "type": "", "demo": "health\/get-queue-functions.md", @@ -22012,7 +21564,6 @@ "x-appwrite": { "method": "getQueueLogs", "group": "queue", - "weight": 464, "cookies": false, "type": "", "demo": "health\/get-queue-logs.md", @@ -22077,7 +21628,6 @@ "x-appwrite": { "method": "getQueueMails", "group": "queue", - "weight": 469, "cookies": false, "type": "", "demo": "health\/get-queue-mails.md", @@ -22142,7 +21692,6 @@ "x-appwrite": { "method": "getQueueMessaging", "group": "queue", - "weight": 470, "cookies": false, "type": "", "demo": "health\/get-queue-messaging.md", @@ -22207,7 +21756,6 @@ "x-appwrite": { "method": "getQueueMigrations", "group": "queue", - "weight": 471, "cookies": false, "type": "", "demo": "health\/get-queue-migrations.md", @@ -22272,7 +21820,6 @@ "x-appwrite": { "method": "getQueueRegionManager", "group": null, - "weight": 1113, "cookies": false, "type": "", "demo": "health\/get-queue-region-manager.md", @@ -22337,7 +21884,6 @@ "x-appwrite": { "method": "getQueueStatsResources", "group": "queue", - "weight": 473, "cookies": false, "type": "", "demo": "health\/get-queue-stats-resources.md", @@ -22402,7 +21948,6 @@ "x-appwrite": { "method": "getQueueUsage", "group": "queue", - "weight": 474, "cookies": false, "type": "", "demo": "health\/get-queue-usage.md", @@ -22467,7 +22012,6 @@ "x-appwrite": { "method": "getQueueThreats", "group": null, - "weight": 1114, "cookies": false, "type": "", "demo": "health\/get-queue-threats.md", @@ -22532,7 +22076,6 @@ "x-appwrite": { "method": "getQueueWebhooks", "group": "queue", - "weight": 463, "cookies": false, "type": "", "demo": "health\/get-queue-webhooks.md", @@ -22597,7 +22140,6 @@ "x-appwrite": { "method": "getStorage", "group": "storage", - "weight": 460, "cookies": false, "type": "", "demo": "health\/get-storage.md", @@ -22649,7 +22191,6 @@ "x-appwrite": { "method": "getStorageLocal", "group": "storage", - "weight": 459, "cookies": false, "type": "", "demo": "health\/get-storage-local.md", @@ -22701,7 +22242,6 @@ "x-appwrite": { "method": "getTime", "group": "health", - "weight": 457, "cookies": false, "type": "", "demo": "health\/get-time.md", @@ -22753,7 +22293,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 49, "cookies": false, "type": "", "demo": "locale\/get.md", @@ -22809,7 +22348,6 @@ "x-appwrite": { "method": "listCodes", "group": null, - "weight": 50, "cookies": false, "type": "", "demo": "locale\/list-codes.md", @@ -22865,7 +22403,6 @@ "x-appwrite": { "method": "listContinents", "group": null, - "weight": 54, "cookies": false, "type": "", "demo": "locale\/list-continents.md", @@ -22921,7 +22458,6 @@ "x-appwrite": { "method": "listCountries", "group": null, - "weight": 51, "cookies": false, "type": "", "demo": "locale\/list-countries.md", @@ -22977,7 +22513,6 @@ "x-appwrite": { "method": "listCountriesEU", "group": null, - "weight": 52, "cookies": false, "type": "", "demo": "locale\/list-countries-eu.md", @@ -23033,7 +22568,6 @@ "x-appwrite": { "method": "listCountriesPhones", "group": null, - "weight": 53, "cookies": false, "type": "", "demo": "locale\/list-countries-phones.md", @@ -23089,7 +22623,6 @@ "x-appwrite": { "method": "listCurrencies", "group": null, - "weight": 55, "cookies": false, "type": "", "demo": "locale\/list-currencies.md", @@ -23145,7 +22678,6 @@ "x-appwrite": { "method": "listLanguages", "group": null, - "weight": 56, "cookies": false, "type": "", "demo": "locale\/list-languages.md", @@ -23201,7 +22733,6 @@ "x-appwrite": { "method": "listMessages", "group": "messages", - "weight": 157, "cookies": false, "type": "", "demo": "messaging\/list-messages.md", @@ -23290,7 +22821,6 @@ "x-appwrite": { "method": "createEmail", "group": "messages", - "weight": 154, "cookies": false, "type": "", "demo": "messaging\/create-email.md", @@ -23340,6 +22870,7 @@ "topics": { "type": "array", "description": "List of Topic IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23348,6 +22879,7 @@ "users": { "type": "array", "description": "List of User IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23356,6 +22888,7 @@ "targets": { "type": "array", "description": "List of Targets IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23364,6 +22897,7 @@ "cc": { "type": "array", "description": "Array of target IDs to be added as CC.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23372,6 +22906,7 @@ "bcc": { "type": "array", "description": "Array of target IDs to be added as BCC.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23380,6 +22915,7 @@ "attachments": { "type": "array", "description": "Array of compound ID strings of bucket IDs and file IDs to be attached to the email. They should be formatted as <BUCKET_ID>:<FILE_ID>.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23388,11 +22924,13 @@ "draft": { "type": "boolean", "description": "Is message a draft", + "default": false, "x-example": false }, "html": { "type": "boolean", "description": "Is content of type HTML", + "default": false, "x-example": false }, "scheduledAt": { @@ -23438,7 +22976,6 @@ "x-appwrite": { "method": "updateEmail", "group": "messages", - "weight": 161, "cookies": false, "type": "", "demo": "messaging\/update-email.md", @@ -23598,7 +23135,6 @@ "x-appwrite": { "method": "createPush", "group": "messages", - "weight": 156, "cookies": false, "type": "", "demo": "messaging\/create-push.md", @@ -23638,16 +23174,19 @@ "title": { "type": "string", "description": "Title for push notification.", + "default": "", "x-example": "<TITLE>" }, "body": { "type": "string", "description": "Body for push notification.", + "default": "", "x-example": "<BODY>" }, "topics": { "type": "array", "description": "List of Topic IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23656,6 +23195,7 @@ "users": { "type": "array", "description": "List of User IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23664,6 +23204,7 @@ "targets": { "type": "array", "description": "List of Targets IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -23678,42 +23219,50 @@ "action": { "type": "string", "description": "Action for push notification.", + "default": "", "x-example": "<ACTION>" }, "image": { "type": "string", "description": "Image for push notification. Must be a compound bucket ID to file ID of a jpeg, png, or bmp image in Appwrite Storage. It should be formatted as <BUCKET_ID>:<FILE_ID>.", + "default": "", "x-example": "<ID1:ID2>" }, "icon": { "type": "string", "description": "Icon for push notification. Available only for Android and Web Platform.", + "default": "", "x-example": "<ICON>" }, "sound": { "type": "string", "description": "Sound for push notification. Available only for Android and iOS Platform.", + "default": "", "x-example": "<SOUND>" }, "color": { "type": "string", "description": "Color for push notification. Available only for Android Platform.", + "default": "", "x-example": "<COLOR>" }, "tag": { "type": "string", "description": "Tag for push notification. Available only for Android Platform.", + "default": "", "x-example": "<TAG>" }, "badge": { "type": "integer", "description": "Badge for push notification. Available only for iOS Platform.", + "default": -1, "x-example": null, "format": "int32" }, "draft": { "type": "boolean", "description": "Is message a draft", + "default": false, "x-example": false }, "scheduledAt": { @@ -23726,23 +23275,25 @@ "contentAvailable": { "type": "boolean", "description": "If set to true, the notification will be delivered in the background. Available only for iOS Platform.", + "default": false, "x-example": false }, "critical": { "type": "boolean", "description": "If set to true, the notification will be marked as critical. This requires the app to have the critical notification entitlement. Available only for iOS Platform.", + "default": false, "x-example": false }, "priority": { "type": "string", "description": "Set the notification priority. \"normal\" will consider device state and may not deliver notifications immediately. \"high\" will always attempt to immediately deliver the notification.", + "default": "high", "x-example": "normal", "enum": [ "normal", "high" ], - "x-enum-name": "MessagePriority", - "x-enum-keys": [] + "x-enum-name": "MessagePriority" } }, "required": [ @@ -23778,7 +23329,6 @@ "x-appwrite": { "method": "updatePush", "group": "messages", - "weight": 163, "cookies": false, "type": "", "demo": "messaging\/update-push.md", @@ -23944,7 +23494,6 @@ "high" ], "x-enum-name": "MessagePriority", - "x-enum-keys": [], "x-nullable": true } } @@ -23978,7 +23527,6 @@ "x-appwrite": { "method": "createSms", "group": "messages", - "weight": 155, "cookies": false, "type": "", "demo": "messaging\/create-sms.md", @@ -24095,6 +23643,7 @@ "topics": { "type": "array", "description": "List of Topic IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -24103,6 +23652,7 @@ "users": { "type": "array", "description": "List of User IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -24111,6 +23661,7 @@ "targets": { "type": "array", "description": "List of Targets IDs.", + "default": [], "x-example": null, "items": { "type": "string" @@ -24119,6 +23670,7 @@ "draft": { "type": "boolean", "description": "Is message a draft", + "default": false, "x-example": false }, "scheduledAt": { @@ -24163,7 +23715,6 @@ "x-appwrite": { "method": "updateSms", "group": "messages", - "weight": 162, "cookies": false, "type": "", "demo": "messaging\/update-sms.md", @@ -24354,7 +23905,6 @@ "x-appwrite": { "method": "getMessage", "group": "messages", - "weight": 160, "cookies": false, "type": "", "demo": "messaging\/get-message.md", @@ -24409,7 +23959,6 @@ "x-appwrite": { "method": "delete", "group": "messages", - "weight": 164, "cookies": false, "type": "", "demo": "messaging\/delete.md", @@ -24473,7 +24022,6 @@ "x-appwrite": { "method": "listMessageLogs", "group": "logs", - "weight": 158, "cookies": false, "type": "", "demo": "messaging\/list-message-logs.md", @@ -24561,7 +24109,6 @@ "x-appwrite": { "method": "listTargets", "group": "messages", - "weight": 159, "cookies": false, "type": "", "demo": "messaging\/list-targets.md", @@ -24649,7 +24196,6 @@ "x-appwrite": { "method": "listProviders", "group": "providers", - "weight": 128, "cookies": false, "type": "", "demo": "messaging\/list-providers.md", @@ -24738,7 +24284,6 @@ "x-appwrite": { "method": "createApnsProvider", "group": "providers", - "weight": 127, "cookies": false, "type": "", "demo": "messaging\/create-apns-provider.md", @@ -24857,26 +24402,31 @@ "authKey": { "type": "string", "description": "APNS authentication key.", + "default": "", "x-example": "<AUTH_KEY>" }, "authKeyId": { "type": "string", "description": "APNS authentication key ID.", + "default": "", "x-example": "<AUTH_KEY_ID>" }, "teamId": { "type": "string", "description": "APNS team ID.", + "default": "", "x-example": "<TEAM_ID>" }, "bundleId": { "type": "string", "description": "APNS bundle ID.", + "default": "", "x-example": "<BUNDLE_ID>" }, "sandbox": { "type": "boolean", "description": "Use APNS sandbox environment.", + "default": false, "x-example": false }, "enabled": { @@ -24920,7 +24470,6 @@ "x-appwrite": { "method": "updateApnsProvider", "group": "providers", - "weight": 141, "cookies": false, "type": "", "demo": "messaging\/update-apns-provider.md", @@ -25039,6 +24588,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -25050,21 +24600,25 @@ "authKey": { "type": "string", "description": "APNS authentication key.", + "default": "", "x-example": "<AUTH_KEY>" }, "authKeyId": { "type": "string", "description": "APNS authentication key ID.", + "default": "", "x-example": "<AUTH_KEY_ID>" }, "teamId": { "type": "string", "description": "APNS team ID.", + "default": "", "x-example": "<TEAM_ID>" }, "bundleId": { "type": "string", "description": "APNS bundle ID.", + "default": "", "x-example": "<BUNDLE_ID>" }, "sandbox": { @@ -25104,7 +24658,6 @@ "x-appwrite": { "method": "createFcmProvider", "group": "providers", - "weight": 126, "cookies": false, "type": "", "demo": "messaging\/create-fcm-provider.md", @@ -25259,7 +24812,6 @@ "x-appwrite": { "method": "updateFcmProvider", "group": "providers", - "weight": 140, "cookies": false, "type": "", "demo": "messaging\/update-fcm-provider.md", @@ -25370,6 +24922,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -25415,7 +24968,6 @@ "x-appwrite": { "method": "createMailgunProvider", "group": "providers", - "weight": 117, "cookies": false, "type": "", "demo": "messaging\/create-mailgun-provider.md", @@ -25460,11 +25012,13 @@ "apiKey": { "type": "string", "description": "Mailgun API Key.", + "default": "", "x-example": "<API_KEY>" }, "domain": { "type": "string", "description": "Mailgun Domain.", + "default": "", "x-example": "<DOMAIN>" }, "isEuRegion": { @@ -25476,22 +25030,26 @@ "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name. Reply to name must have reply to email as well.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email. Reply to email must have reply to name as well.", + "default": "", "x-example": "email@example.com", "format": "email" }, @@ -25536,7 +25094,6 @@ "x-appwrite": { "method": "updateMailgunProvider", "group": "providers", - "weight": 131, "cookies": false, "type": "", "demo": "messaging\/update-mailgun-provider.md", @@ -25583,16 +25140,19 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "apiKey": { "type": "string", "description": "Mailgun API Key.", + "default": "", "x-example": "<API_KEY>" }, "domain": { "type": "string", "description": "Mailgun Domain.", + "default": "", "x-example": "<DOMAIN>" }, "isEuRegion": { @@ -25610,22 +25170,26 @@ "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", + "default": "", "x-example": "<REPLY_TO_EMAIL>" } } @@ -25659,7 +25223,6 @@ "x-appwrite": { "method": "createMsg91Provider", "group": "providers", - "weight": 121, "cookies": false, "type": "", "demo": "messaging\/create-msg-91-provider.md", @@ -25704,16 +25267,19 @@ "templateId": { "type": "string", "description": "Msg91 template ID", + "default": "", "x-example": "<TEMPLATE_ID>" }, "senderId": { "type": "string", "description": "Msg91 sender ID.", + "default": "", "x-example": "<SENDER_ID>" }, "authKey": { "type": "string", "description": "Msg91 auth key.", + "default": "", "x-example": "<AUTH_KEY>" }, "enabled": { @@ -25757,7 +25323,6 @@ "x-appwrite": { "method": "updateMsg91Provider", "group": "providers", - "weight": 135, "cookies": false, "type": "", "demo": "messaging\/update-msg-91-provider.md", @@ -25804,6 +25369,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -25815,16 +25381,19 @@ "templateId": { "type": "string", "description": "Msg91 template ID.", + "default": "", "x-example": "<TEMPLATE_ID>" }, "senderId": { "type": "string", "description": "Msg91 sender ID.", + "default": "", "x-example": "<SENDER_ID>" }, "authKey": { "type": "string", "description": "Msg91 auth key.", + "default": "", "x-example": "<AUTH_KEY>" } } @@ -25858,7 +25427,6 @@ "x-appwrite": { "method": "createResendProvider", "group": "providers", - "weight": 119, "cookies": false, "type": "", "demo": "messaging\/create-resend-provider.md", @@ -25903,27 +25471,32 @@ "apiKey": { "type": "string", "description": "Resend API key.", + "default": "", "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", + "default": "", "x-example": "email@example.com", "format": "email" }, @@ -25968,7 +25541,6 @@ "x-appwrite": { "method": "updateResendProvider", "group": "providers", - "weight": 133, "cookies": false, "type": "", "demo": "messaging\/update-resend-provider.md", @@ -26015,6 +25587,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -26026,27 +25599,32 @@ "apiKey": { "type": "string", "description": "Resend API key.", + "default": "", "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", + "default": "", "x-example": "<REPLY_TO_EMAIL>" } } @@ -26080,7 +25658,6 @@ "x-appwrite": { "method": "createSendgridProvider", "group": "providers", - "weight": 118, "cookies": false, "type": "", "demo": "messaging\/create-sendgrid-provider.md", @@ -26125,27 +25702,32 @@ "apiKey": { "type": "string", "description": "Sendgrid API key.", + "default": "", "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", + "default": "", "x-example": "email@example.com", "format": "email" }, @@ -26190,7 +25772,6 @@ "x-appwrite": { "method": "updateSendgridProvider", "group": "providers", - "weight": 132, "cookies": false, "type": "", "demo": "messaging\/update-sendgrid-provider.md", @@ -26237,6 +25818,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -26248,27 +25830,32 @@ "apiKey": { "type": "string", "description": "Sendgrid API key.", + "default": "", "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", + "default": "", "x-example": "<REPLY_TO_EMAIL>" } } @@ -26302,7 +25889,6 @@ "x-appwrite": { "method": "createSmtpProvider", "group": "providers", - "weight": 120, "cookies": false, "type": "", "demo": "messaging\/create-smtp-provider.md", @@ -26440,17 +26026,20 @@ "port": { "type": "integer", "description": "The default SMTP server port.", + "default": 587, "x-example": 1, "format": "int32" }, "username": { "type": "string", "description": "Authentication username.", + "default": "", "x-example": "<USERNAME>" }, "password": { "type": "string", "description": "Authentication password.", + "default": "", "x-example": "<PASSWORD>" }, "encryption": { @@ -26462,38 +26051,43 @@ "ssl", "tls" ], - "x-enum-name": "SmtpEncryption", - "x-enum-keys": [] + "x-enum-name": "SmtpEncryption" }, "autoTLS": { "type": "boolean", "description": "Enable SMTP AutoTLS feature.", + "default": true, "x-example": false }, "mailer": { "type": "string", "description": "The value to use for the X-Mailer header.", + "default": "", "x-example": "<MAILER>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", + "default": "", "x-example": "email@example.com", "format": "email" }, @@ -26539,7 +26133,6 @@ "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", - "weight": 134, "cookies": false, "type": "", "demo": "messaging\/update-smtp-provider.md", @@ -26670,11 +26263,13 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "host": { "type": "string", "description": "SMTP hosts. Either a single hostname or multiple semicolon-delimited hostnames. You can also specify a different port for each host such as `smtp1.example.com:25;smtp2.example.com`. You can also specify encryption type, for example: `tls:\/\/smtp1.example.com:587;ssl:\/\/smtp2.example.com:465\"`. Hosts will be tried in order.", + "default": "", "x-example": "<HOST>" }, "port": { @@ -26687,11 +26282,13 @@ "username": { "type": "string", "description": "Authentication username.", + "default": "", "x-example": "<USERNAME>" }, "password": { "type": "string", "description": "Authentication password.", + "default": "", "x-example": "<PASSWORD>" }, "encryption": { @@ -26703,8 +26300,7 @@ "ssl", "tls" ], - "x-enum-name": "SmtpEncryption", - "x-enum-keys": [] + "x-enum-name": "SmtpEncryption" }, "autoTLS": { "type": "boolean", @@ -26715,27 +26311,32 @@ "mailer": { "type": "string", "description": "The value to use for the X-Mailer header.", + "default": "", "x-example": "<MAILER>" }, "fromName": { "type": "string", "description": "Sender Name.", + "default": "", "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", + "default": "", "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", + "default": "", "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", + "default": "", "x-example": "<REPLY_TO_EMAIL>" }, "enabled": { @@ -26775,7 +26376,6 @@ "x-appwrite": { "method": "createTelesignProvider", "group": "providers", - "weight": 122, "cookies": false, "type": "", "demo": "messaging\/create-telesign-provider.md", @@ -26820,17 +26420,20 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, "customerId": { "type": "string", "description": "Telesign customer ID.", + "default": "", "x-example": "<CUSTOMER_ID>" }, "apiKey": { "type": "string", "description": "Telesign API key.", + "default": "", "x-example": "<API_KEY>" }, "enabled": { @@ -26874,7 +26477,6 @@ "x-appwrite": { "method": "updateTelesignProvider", "group": "providers", - "weight": 136, "cookies": false, "type": "", "demo": "messaging\/update-telesign-provider.md", @@ -26921,6 +26523,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -26932,16 +26535,19 @@ "customerId": { "type": "string", "description": "Telesign customer ID.", + "default": "", "x-example": "<CUSTOMER_ID>" }, "apiKey": { "type": "string", "description": "Telesign API key.", + "default": "", "x-example": "<API_KEY>" }, "from": { "type": "string", "description": "Sender number.", + "default": "", "x-example": "<FROM>" } } @@ -26975,7 +26581,6 @@ "x-appwrite": { "method": "createTextmagicProvider", "group": "providers", - "weight": 123, "cookies": false, "type": "", "demo": "messaging\/create-textmagic-provider.md", @@ -27020,17 +26625,20 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, "username": { "type": "string", "description": "Textmagic username.", + "default": "", "x-example": "<USERNAME>" }, "apiKey": { "type": "string", "description": "Textmagic apiKey.", + "default": "", "x-example": "<API_KEY>" }, "enabled": { @@ -27074,7 +26682,6 @@ "x-appwrite": { "method": "updateTextmagicProvider", "group": "providers", - "weight": 137, "cookies": false, "type": "", "demo": "messaging\/update-textmagic-provider.md", @@ -27121,6 +26728,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -27132,16 +26740,19 @@ "username": { "type": "string", "description": "Textmagic username.", + "default": "", "x-example": "<USERNAME>" }, "apiKey": { "type": "string", "description": "Textmagic apiKey.", + "default": "", "x-example": "<API_KEY>" }, "from": { "type": "string", "description": "Sender number.", + "default": "", "x-example": "<FROM>" } } @@ -27175,7 +26786,6 @@ "x-appwrite": { "method": "createTwilioProvider", "group": "providers", - "weight": 124, "cookies": false, "type": "", "demo": "messaging\/create-twilio-provider.md", @@ -27220,17 +26830,20 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, "accountSid": { "type": "string", "description": "Twilio account secret ID.", + "default": "", "x-example": "<ACCOUNT_SID>" }, "authToken": { "type": "string", "description": "Twilio authentication token.", + "default": "", "x-example": "<AUTH_TOKEN>" }, "enabled": { @@ -27274,7 +26887,6 @@ "x-appwrite": { "method": "updateTwilioProvider", "group": "providers", - "weight": 138, "cookies": false, "type": "", "demo": "messaging\/update-twilio-provider.md", @@ -27321,6 +26933,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -27332,16 +26945,19 @@ "accountSid": { "type": "string", "description": "Twilio account secret ID.", + "default": "", "x-example": "<ACCOUNT_SID>" }, "authToken": { "type": "string", "description": "Twilio authentication token.", + "default": "", "x-example": "<AUTH_TOKEN>" }, "from": { "type": "string", "description": "Sender number.", + "default": "", "x-example": "<FROM>" } } @@ -27375,7 +26991,6 @@ "x-appwrite": { "method": "createVonageProvider", "group": "providers", - "weight": 125, "cookies": false, "type": "", "demo": "messaging\/create-vonage-provider.md", @@ -27420,17 +27035,20 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, "apiKey": { "type": "string", "description": "Vonage API key.", + "default": "", "x-example": "<API_KEY>" }, "apiSecret": { "type": "string", "description": "Vonage API secret.", + "default": "", "x-example": "<API_SECRET>" }, "enabled": { @@ -27474,7 +27092,6 @@ "x-appwrite": { "method": "updateVonageProvider", "group": "providers", - "weight": 139, "cookies": false, "type": "", "demo": "messaging\/update-vonage-provider.md", @@ -27521,6 +27138,7 @@ "name": { "type": "string", "description": "Provider name.", + "default": "", "x-example": "<NAME>" }, "enabled": { @@ -27532,16 +27150,19 @@ "apiKey": { "type": "string", "description": "Vonage API key.", + "default": "", "x-example": "<API_KEY>" }, "apiSecret": { "type": "string", "description": "Vonage API secret.", + "default": "", "x-example": "<API_SECRET>" }, "from": { "type": "string", "description": "Sender number.", + "default": "", "x-example": "<FROM>" } } @@ -27575,7 +27196,6 @@ "x-appwrite": { "method": "getProvider", "group": "providers", - "weight": 130, "cookies": false, "type": "", "demo": "messaging\/get-provider.md", @@ -27630,7 +27250,6 @@ "x-appwrite": { "method": "deleteProvider", "group": "providers", - "weight": 142, "cookies": false, "type": "", "demo": "messaging\/delete-provider.md", @@ -27694,7 +27313,6 @@ "x-appwrite": { "method": "listProviderLogs", "group": "providers", - "weight": 129, "cookies": false, "type": "", "demo": "messaging\/list-provider-logs.md", @@ -27782,7 +27400,6 @@ "x-appwrite": { "method": "listSubscriberLogs", "group": "subscribers", - "weight": 151, "cookies": false, "type": "", "demo": "messaging\/list-subscriber-logs.md", @@ -27870,7 +27487,6 @@ "x-appwrite": { "method": "listTopics", "group": "topics", - "weight": 144, "cookies": false, "type": "", "demo": "messaging\/list-topics.md", @@ -27957,7 +27573,6 @@ "x-appwrite": { "method": "createTopic", "group": "topics", - "weight": 143, "cookies": false, "type": "", "demo": "messaging\/create-topic.md", @@ -28002,6 +27617,9 @@ "subscribe": { "type": "array", "description": "An array of role strings with subscribe permission. By default all users are granted with any subscribe permission. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", + "default": [ + "users" + ], "x-example": "[\"any\"]", "items": { "type": "string" @@ -28042,7 +27660,6 @@ "x-appwrite": { "method": "getTopic", "group": "topics", - "weight": 146, "cookies": false, "type": "", "demo": "messaging\/get-topic.md", @@ -28104,7 +27721,6 @@ "x-appwrite": { "method": "updateTopic", "group": "topics", - "weight": 147, "cookies": false, "type": "", "demo": "messaging\/update-topic.md", @@ -28185,7 +27801,6 @@ "x-appwrite": { "method": "deleteTopic", "group": "topics", - "weight": 148, "cookies": false, "type": "", "demo": "messaging\/delete-topic.md", @@ -28249,7 +27864,6 @@ "x-appwrite": { "method": "listTopicLogs", "group": "topics", - "weight": 145, "cookies": false, "type": "", "demo": "messaging\/list-topic-logs.md", @@ -28337,7 +27951,6 @@ "x-appwrite": { "method": "listSubscribers", "group": "subscribers", - "weight": 150, "cookies": false, "type": "", "demo": "messaging\/list-subscribers.md", @@ -28412,19 +28025,738 @@ ] }, "post": { - "summary": "Create subscriber", - "operationId": "messagingCreateSubscriber", + "summary": "Create subscriber", + "operationId": "messagingCreateSubscriber", + "tags": [ + "messaging" + ], + "description": "Create a new subscriber.", + "responses": { + "201": { + "description": "Subscriber", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/subscriber" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "createSubscriber", + "group": "subscribers", + "cookies": false, + "type": "", + "demo": "messaging\/create-subscriber.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "subscribers.write", + "platforms": [ + "server", + "client", + "console", + "server" + ], + "packaging": false, + "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/create-subscriber.md", + "auth": { + "Project": [], + "JWT": [] + } + }, + "security": [ + { + "Project": [], + "JWT": [], + "Session": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "topicId", + "description": "Topic ID. The topic ID to subscribe to.", + "required": true, + "schema": { + "type": "string", + "x-example": "<TOPIC_ID>" + }, + "in": "path" + } + ], + "requestBody": { + "content": { + "application\/json": { + "schema": { + "type": "object", + "properties": { + "subscriberId": { + "type": "string", + "description": "Subscriber ID. Choose a custom Subscriber ID or a new Subscriber ID.", + "x-example": "<SUBSCRIBER_ID>" + }, + "targetId": { + "type": "string", + "description": "Target ID. The target ID to link to the specified Topic ID.", + "x-example": "<TARGET_ID>" + } + }, + "required": [ + "subscriberId", + "targetId" + ] + } + } + } + } + } + }, + "\/messaging\/topics\/{topicId}\/subscribers\/{subscriberId}": { + "get": { + "summary": "Get subscriber", + "operationId": "messagingGetSubscriber", + "tags": [ + "messaging" + ], + "description": "Get a subscriber by its unique ID.\n", + "responses": { + "200": { + "description": "Subscriber", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/subscriber" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getSubscriber", + "group": "subscribers", + "cookies": false, + "type": "", + "demo": "messaging\/get-subscriber.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "subscribers.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/get-subscriber.md", + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "topicId", + "description": "Topic ID. The topic ID subscribed to.", + "required": true, + "schema": { + "type": "string", + "x-example": "<TOPIC_ID>" + }, + "in": "path" + }, + { + "name": "subscriberId", + "description": "Subscriber ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<SUBSCRIBER_ID>" + }, + "in": "path" + } + ] + }, + "delete": { + "summary": "Delete subscriber", + "operationId": "messagingDeleteSubscriber", + "tags": [ + "messaging" + ], + "description": "Delete a subscriber by its unique ID.", + "responses": { + "204": { + "description": "No content" + } + }, + "deprecated": false, + "x-appwrite": { + "method": "deleteSubscriber", + "group": "subscribers", + "cookies": false, + "type": "", + "demo": "messaging\/delete-subscriber.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "subscribers.write", + "platforms": [ + "server", + "client", + "console", + "server" + ], + "packaging": false, + "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/delete-subscriber.md", + "auth": { + "Project": [], + "JWT": [] + } + }, + "security": [ + { + "Project": [], + "JWT": [], + "Session": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "topicId", + "description": "Topic ID. The topic ID subscribed to.", + "required": true, + "schema": { + "type": "string", + "x-example": "<TOPIC_ID>" + }, + "in": "path" + }, + { + "name": "subscriberId", + "description": "Subscriber ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<SUBSCRIBER_ID>" + }, + "in": "path" + } + ] + } + }, + "\/organization\/keys": { + "get": { + "summary": "List organization keys", + "operationId": "organizationListKeys", + "tags": [ + "organization" + ], + "description": "Get a list of all API keys from the current organization.", + "responses": { + "200": { + "description": "API Keys List", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/keyList" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "listKeys", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/list-keys.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "queries", + "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: expire, accessedAt, name, scopes", + "required": false, + "schema": { + "type": "array", + "items": { + "type": "string" + }, + "default": [] + }, + "in": "query" + }, + { + "name": "total", + "description": "When set to false, the total count returned will be 0 and will not be calculated.", + "required": false, + "schema": { + "type": "boolean", + "x-example": false, + "default": true + }, + "in": "query" + } + ] + }, + "post": { + "summary": "Create organization key", + "operationId": "organizationCreateKey", + "tags": [ + "organization" + ], + "description": "Create a new organization API key.", + "responses": { + "201": { + "description": "Key", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/key" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "createKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/create-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "requestBody": { + "content": { + "application\/json": { + "schema": { + "type": "object", + "properties": { + "keyId": { + "type": "string", + "description": "Key ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "x-example": "<KEY_ID>" + }, + "name": { + "type": "string", + "description": "Key name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "scopes": { + "type": "array", + "description": "Key scopes list. Maximum of 100 scopes are allowed.", + "x-example": null, + "items": { + "type": "string", + "enum": [ + "projects.read", + "projects.write", + "devKeys.read", + "devKeys.write", + "organization.keys.read", + "organization.keys.write", + "domains.read", + "domains.write", + "keys.read", + "keys.write" + ], + "x-enum-name": "OrganizationKeyScopes" + } + }, + "expire": { + "type": "string", + "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", + "x-example": "2020-10-15T06:38:00.000+00:00", + "format": "datetime", + "x-nullable": true + } + }, + "required": [ + "keyId", + "name", + "scopes" + ] + } + } + } + } + } + }, + "\/organization\/keys\/{keyId}": { + "get": { + "summary": "Get organization key", + "operationId": "organizationGetKey", + "tags": [ + "organization" + ], + "description": "Get a key by its unique ID. This endpoint returns details about a specific API key in your organization including its scopes.", + "responses": { + "200": { + "description": "Key", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/key" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/get-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<KEY_ID>" + }, + "in": "path" + } + ] + }, + "put": { + "summary": "Update organization key", + "operationId": "organizationUpdateKey", + "tags": [ + "organization" + ], + "description": "Update a key by its unique ID. Use this endpoint to update the name, scopes, or expiration time of an API key.", + "responses": { + "200": { + "description": "Key", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/key" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "updateKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/update-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<KEY_ID>" + }, + "in": "path" + } + ], + "requestBody": { + "content": { + "application\/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Key name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "scopes": { + "type": "array", + "description": "Key scopes list. Maximum of 100 scopes are allowed.", + "x-example": null, + "items": { + "type": "string", + "enum": [ + "projects.read", + "projects.write", + "devKeys.read", + "devKeys.write", + "organization.keys.read", + "organization.keys.write", + "domains.read", + "domains.write", + "keys.read", + "keys.write" + ], + "x-enum-name": "OrganizationKeyScopes" + } + }, + "expire": { + "type": "string", + "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", + "x-example": "2020-10-15T06:38:00.000+00:00", + "format": "datetime", + "x-nullable": true + } + }, + "required": [ + "name", + "scopes" + ] + } + } + } + } + }, + "delete": { + "summary": "Delete organization key", + "operationId": "organizationDeleteKey", + "tags": [ + "organization" + ], + "description": "Delete a key by its unique ID. Once deleted, the key can no longer be used to authenticate API calls.", + "responses": { + "204": { + "description": "No content" + } + }, + "deprecated": false, + "x-appwrite": { + "method": "deleteKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/delete-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "schema": { + "type": "string", + "x-example": "<KEY_ID>" + }, + "in": "path" + } + ] + } + }, + "\/organization\/projects": { + "get": { + "summary": "List organization projects", + "operationId": "organizationListProjects", + "tags": [ + "organization" + ], + "description": "Get a list of all projects. You can use the query params to filter your results.", + "responses": { + "200": { + "description": "Projects List", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/projectList" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "listProjects", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/list-projects.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "queries", + "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, teamId, labels, search", + "required": false, + "schema": { + "type": "array", + "items": { + "type": "string" + }, + "default": [] + }, + "in": "query" + }, + { + "name": "search", + "description": "Search term to filter your list results. Max length: 256 chars.", + "required": false, + "schema": { + "type": "string", + "x-example": "<SEARCH>", + "default": "" + }, + "in": "query" + }, + { + "name": "total", + "description": "When set to false, the total count returned will be 0 and will not be calculated.", + "required": false, + "schema": { + "type": "boolean", + "x-example": false, + "default": true + }, + "in": "query" + } + ] + }, + "post": { + "summary": "Create organization project", + "operationId": "organizationCreateProject", "tags": [ - "messaging" + "organization" ], - "description": "Create a new subscriber.", + "description": "Create a new project.", "responses": { "201": { - "description": "Subscriber", + "description": "Project", "content": { "application\/json": { "schema": { - "$ref": "#\/components\/schemas\/subscriber" + "$ref": "#\/components\/schemas\/project" } } } @@ -28432,70 +28764,66 @@ }, "deprecated": false, "x-appwrite": { - "method": "createSubscriber", - "group": "subscribers", - "weight": 149, + "method": "createProject", + "group": "projects", "cookies": false, "type": "", - "demo": "messaging\/create-subscriber.md", + "demo": "organization\/create-project.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "subscribers.write", + "scope": "projects.write", "platforms": [ - "server", - "client", "console", "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/create-subscriber.md", "auth": { "Project": [], - "JWT": [] + "Key": [] } }, "security": [ { "Project": [], - "JWT": [], - "Session": [], "Key": [] } ], - "parameters": [ - { - "name": "topicId", - "description": "Topic ID. The topic ID to subscribe to.", - "required": true, - "schema": { - "type": "string", - "x-example": "<TOPIC_ID>" - }, - "in": "path" - } - ], "requestBody": { "content": { "application\/json": { "schema": { "type": "object", "properties": { - "subscriberId": { + "projectId": { "type": "string", - "description": "Subscriber ID. Choose a custom Subscriber ID or a new Subscriber ID.", - "x-example": "<SUBSCRIBER_ID>" + "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, and hyphen. Can't start with a special char. Max length is 36 chars.", + "x-example": null }, - "targetId": { + "name": { "type": "string", - "description": "Target ID. The target ID to link to the specified Topic ID.", - "x-example": "<TARGET_ID>" + "description": "Project name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "region": { + "type": "string", + "description": "Project Region.", + "x-example": "fra", + "enum": [ + "fra", + "nyc", + "syd", + "sfo", + "sgp", + "tor" + ], + "x-enum-name": "Region" } }, "required": [ - "subscriberId", - "targetId" + "projectId", + "name" ] } } @@ -28503,21 +28831,21 @@ } } }, - "\/messaging\/topics\/{topicId}\/subscribers\/{subscriberId}": { + "\/organization\/projects\/{projectId}": { "get": { - "summary": "Get subscriber", - "operationId": "messagingGetSubscriber", + "summary": "Get organization project", + "operationId": "organizationGetProject", "tags": [ - "messaging" + "organization" ], - "description": "Get a subscriber by its unique ID.\n", + "description": "Get a project.", "responses": { "200": { - "description": "Subscriber", + "description": "Project", "content": { - "application\/json": { + "": { "schema": { - "$ref": "#\/components\/schemas\/subscriber" + "$ref": "#\/components\/schemas\/project" } } } @@ -28525,23 +28853,21 @@ }, "deprecated": false, "x-appwrite": { - "method": "getSubscriber", - "group": "subscribers", - "weight": 152, + "method": "getProject", + "group": "projects", "cookies": false, "type": "", - "demo": "messaging\/get-subscriber.md", + "demo": "organization\/get-project.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "subscribers.read", + "scope": "projects.read", "platforms": [ "console", "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/get-subscriber.md", "auth": { "Project": [], "Key": [] @@ -28555,34 +28881,103 @@ ], "parameters": [ { - "name": "topicId", - "description": "Topic ID. The topic ID subscribed to.", + "name": "projectId", + "description": "Project unique ID.", "required": true, "schema": { "type": "string", - "x-example": "<TOPIC_ID>" + "x-example": "<PROJECT_ID>" }, "in": "path" - }, + } + ] + }, + "patch": { + "summary": "Update organization project", + "operationId": "organizationUpdateProject", + "tags": [ + "organization" + ], + "description": "Update a project by its unique ID.", + "responses": { + "200": { + "description": "Project", + "content": { + "application\/json": { + "schema": { + "$ref": "#\/components\/schemas\/project" + } + } + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "updateProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/update-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ { - "name": "subscriberId", - "description": "Subscriber ID.", + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "projectId", + "description": "Project unique ID.", "required": true, "schema": { "type": "string", - "x-example": "<SUBSCRIBER_ID>" + "x-example": "<PROJECT_ID>" }, "in": "path" } - ] + ], + "requestBody": { + "content": { + "application\/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Project name. Max length: 128 chars.", + "x-example": "<NAME>" + } + }, + "required": [ + "name" + ] + } + } + } + } }, "delete": { - "summary": "Delete subscriber", - "operationId": "messagingDeleteSubscriber", + "summary": "Delete organization project", + "operationId": "organizationDeleteProject", "tags": [ - "messaging" + "organization" ], - "description": "Delete a subscriber by its unique ID.", + "description": "Delete a project by its unique ID.", "responses": { "204": { "description": "No content" @@ -28590,56 +28985,40 @@ }, "deprecated": false, "x-appwrite": { - "method": "deleteSubscriber", - "group": "subscribers", - "weight": 153, + "method": "deleteProject", + "group": "projects", "cookies": false, "type": "", - "demo": "messaging\/delete-subscriber.md", + "demo": "organization\/delete-project.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "subscribers.write", + "scope": "projects.write", "platforms": [ - "server", - "client", "console", "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/delete-subscriber.md", "auth": { "Project": [], - "JWT": [] + "Key": [] } }, "security": [ { "Project": [], - "JWT": [], - "Session": [], "Key": [] } ], "parameters": [ { - "name": "topicId", - "description": "Topic ID. The topic ID subscribed to.", - "required": true, - "schema": { - "type": "string", - "x-example": "<TOPIC_ID>" - }, - "in": "path" - }, - { - "name": "subscriberId", - "description": "Subscriber ID.", + "name": "projectId", + "description": "Project unique ID.", "required": true, "schema": { "type": "string", - "x-example": "<SUBSCRIBER_ID>" + "x-example": "<PROJECT_ID>" }, "in": "path" } @@ -28670,7 +29049,6 @@ "x-appwrite": { "method": "list", "group": "presences", - "weight": 419, "cookies": false, "type": "", "demo": "presences\/list.md", @@ -28764,7 +29142,6 @@ "x-appwrite": { "method": "get", "group": "presences", - "weight": 418, "cookies": false, "type": "", "demo": "presences\/get.md", @@ -28830,7 +29207,6 @@ "x-appwrite": { "method": "upsert", "group": "presences", - "weight": 416, "cookies": false, "type": "", "demo": "presences\/upsert.md", @@ -28933,6 +29309,7 @@ "metadata": { "type": "object", "description": "Presence metadata object.", + "default": {}, "x-example": "{}" } }, @@ -28967,7 +29344,6 @@ "x-appwrite": { "method": "update", "group": "presences", - "weight": 420, "cookies": false, "type": "", "demo": "presences\/update.md", @@ -29075,6 +29451,7 @@ "purge": { "type": "boolean", "description": "When true, purge cached responses used by list presences endpoint.", + "default": false, "x-example": false } } @@ -29099,7 +29476,6 @@ "x-appwrite": { "method": "delete", "group": "presences", - "weight": 421, "cookies": false, "type": "", "demo": "presences\/delete.md", @@ -29167,7 +29543,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 1161, "cookies": false, "type": "", "demo": "project\/get.md", @@ -29209,7 +29584,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 1160, "cookies": false, "type": "", "demo": "project\/delete.md", @@ -29260,7 +29634,6 @@ "x-appwrite": { "method": "updateAuthMethod", "group": null, - "weight": 1210, "cookies": false, "type": "", "demo": "project\/update-auth-method.md", @@ -29302,8 +29675,7 @@ "jwt", "phone" ], - "x-enum-name": "ProjectAuthMethodId", - "x-enum-keys": [] + "x-enum-name": "ProjectAuthMethodId" }, "in": "path" } @@ -29353,7 +29725,6 @@ "x-appwrite": { "method": "listKeys", "group": "keys", - "weight": 1177, "cookies": false, "type": "", "demo": "project\/list-keys.md", @@ -29428,7 +29799,6 @@ "x-appwrite": { "method": "createKey", "group": "keys", - "weight": 1175, "cookies": false, "type": "", "demo": "project\/create-key.md", @@ -29571,8 +29941,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "expire": { @@ -29618,7 +29987,6 @@ "x-appwrite": { "method": "createEphemeralKey", "group": "keys", - "weight": 1176, "cookies": false, "type": "", "demo": "project\/create-ephemeral-key.md", @@ -29751,8 +30119,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "duration": { @@ -29796,7 +30163,6 @@ "x-appwrite": { "method": "getKey", "group": "keys", - "weight": 1178, "cookies": false, "type": "", "demo": "project\/get-key.md", @@ -29857,7 +30223,6 @@ "x-appwrite": { "method": "updateKey", "group": "keys", - "weight": 1180, "cookies": false, "type": "", "demo": "project\/update-key.md", @@ -30007,8 +30372,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "expire": { @@ -30044,7 +30408,6 @@ "x-appwrite": { "method": "deleteKey", "group": "keys", - "weight": 1179, "cookies": false, "type": "", "demo": "project\/delete-key.md", @@ -30107,7 +30470,6 @@ "x-appwrite": { "method": "updateLabels", "group": null, - "weight": 1162, "cookies": false, "type": "", "demo": "project\/update-labels.md", @@ -30180,7 +30542,6 @@ "x-appwrite": { "method": "listMockPhones", "group": "mocks", - "weight": 1195, "cookies": false, "type": "", "demo": "project\/list-mock-phones.md", @@ -30255,7 +30616,6 @@ "x-appwrite": { "method": "createMockPhone", "group": "mocks", - "weight": 1194, "cookies": false, "type": "", "demo": "project\/create-mock-phone.md", @@ -30332,7 +30692,6 @@ "x-appwrite": { "method": "getMockPhone", "group": "mocks", - "weight": 1196, "cookies": false, "type": "", "demo": "project\/get-mock-phone.md", @@ -30394,7 +30753,6 @@ "x-appwrite": { "method": "updateMockPhone", "group": "mocks", - "weight": 1197, "cookies": false, "type": "", "demo": "project\/update-mock-phone.md", @@ -30468,7 +30826,6 @@ "x-appwrite": { "method": "deleteMockPhone", "group": "mocks", - "weight": 1198, "cookies": false, "type": "", "demo": "project\/delete-mock-phone.md", @@ -30532,7 +30889,6 @@ "x-appwrite": { "method": "listOAuth2Providers", "group": "oauth2", - "weight": 1211, "cookies": false, "type": "", "demo": "project\/list-o-auth-2-providers.md", @@ -30609,7 +30965,6 @@ "x-appwrite": { "method": "updateOAuth2Amazon", "group": "oauth2", - "weight": 1238, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-amazon.md", @@ -30689,7 +31044,6 @@ "x-appwrite": { "method": "updateOAuth2Apple", "group": "oauth2", - "weight": 1253, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-apple.md", @@ -30781,7 +31135,6 @@ "x-appwrite": { "method": "updateOAuth2Auth0", "group": "oauth2", - "weight": 1247, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-auth-0.md", @@ -30867,7 +31220,6 @@ "x-appwrite": { "method": "updateOAuth2Authentik", "group": "oauth2", - "weight": 1246, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-authentik.md", @@ -30953,7 +31305,6 @@ "x-appwrite": { "method": "updateOAuth2Autodesk", "group": "oauth2", - "weight": 1221, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-autodesk.md", @@ -31033,7 +31384,6 @@ "x-appwrite": { "method": "updateOAuth2Bitbucket", "group": "oauth2", - "weight": 1218, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-bitbucket.md", @@ -31113,7 +31463,6 @@ "x-appwrite": { "method": "updateOAuth2Bitly", "group": "oauth2", - "weight": 1219, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-bitly.md", @@ -31193,7 +31542,6 @@ "x-appwrite": { "method": "updateOAuth2Box", "group": "oauth2", - "weight": 1220, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-box.md", @@ -31273,7 +31621,6 @@ "x-appwrite": { "method": "updateOAuth2Dailymotion", "group": "oauth2", - "weight": 1217, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-dailymotion.md", @@ -31353,7 +31700,6 @@ "x-appwrite": { "method": "updateOAuth2Discord", "group": "oauth2", - "weight": 1214, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-discord.md", @@ -31433,7 +31779,6 @@ "x-appwrite": { "method": "updateOAuth2Disqus", "group": "oauth2", - "weight": 1237, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-disqus.md", @@ -31513,7 +31858,6 @@ "x-appwrite": { "method": "updateOAuth2Dropbox", "group": "oauth2", - "weight": 1216, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-dropbox.md", @@ -31593,7 +31937,6 @@ "x-appwrite": { "method": "updateOAuth2Etsy", "group": "oauth2", - "weight": 1239, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-etsy.md", @@ -31673,7 +32016,6 @@ "x-appwrite": { "method": "updateOAuth2Facebook", "group": "oauth2", - "weight": 1240, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-facebook.md", @@ -31753,7 +32095,6 @@ "x-appwrite": { "method": "updateOAuth2Figma", "group": "oauth2", - "weight": 1215, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-figma.md", @@ -31833,7 +32174,6 @@ "x-appwrite": { "method": "updateOAuth2FusionAuth", "group": "oauth2", - "weight": 1248, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-fusion-auth.md", @@ -31919,7 +32259,6 @@ "x-appwrite": { "method": "updateOAuth2GitHub", "group": "oauth2", - "weight": 1213, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-git-hub.md", @@ -31999,7 +32338,6 @@ "x-appwrite": { "method": "updateOAuth2Gitlab", "group": "oauth2", - "weight": 1245, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-gitlab.md", @@ -32086,7 +32424,6 @@ "x-appwrite": { "method": "updateOAuth2Google", "group": "oauth2", - "weight": 1222, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-google.md", @@ -32140,8 +32477,7 @@ "consent", "select_account" ], - "x-enum-name": "ProjectOAuth2GooglePrompt", - "x-enum-keys": [] + "x-enum-name": "ProjectOAuth2GooglePrompt" }, "x-nullable": true }, @@ -32182,7 +32518,6 @@ "x-appwrite": { "method": "updateOAuth2Keycloak", "group": "oauth2", - "weight": 1249, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-keycloak.md", @@ -32274,7 +32609,6 @@ "x-appwrite": { "method": "updateOAuth2Kick", "group": "oauth2", - "weight": 1252, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-kick.md", @@ -32354,7 +32688,6 @@ "x-appwrite": { "method": "updateOAuth2Linkedin", "group": "oauth2", - "weight": 1236, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-linkedin.md", @@ -32434,7 +32767,6 @@ "x-appwrite": { "method": "updateOAuth2Microsoft", "group": "oauth2", - "weight": 1254, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-microsoft.md", @@ -32520,7 +32852,6 @@ "x-appwrite": { "method": "updateOAuth2Notion", "group": "oauth2", - "weight": 1233, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-notion.md", @@ -32600,7 +32931,6 @@ "x-appwrite": { "method": "updateOAuth2Oidc", "group": "oauth2", - "weight": 1250, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-oidc.md", @@ -32708,7 +33038,6 @@ "x-appwrite": { "method": "updateOAuth2Okta", "group": "oauth2", - "weight": 1251, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-okta.md", @@ -32800,7 +33129,6 @@ "x-appwrite": { "method": "updateOAuth2Paypal", "group": "oauth2", - "weight": 1243, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-paypal.md", @@ -32880,7 +33208,6 @@ "x-appwrite": { "method": "updateOAuth2PaypalSandbox", "group": "oauth2", - "weight": 1244, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-paypal-sandbox.md", @@ -32960,7 +33287,6 @@ "x-appwrite": { "method": "updateOAuth2Podio", "group": "oauth2", - "weight": 1232, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-podio.md", @@ -33040,7 +33366,6 @@ "x-appwrite": { "method": "updateOAuth2Salesforce", "group": "oauth2", - "weight": 1234, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-salesforce.md", @@ -33120,7 +33445,6 @@ "x-appwrite": { "method": "updateOAuth2Slack", "group": "oauth2", - "weight": 1231, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-slack.md", @@ -33200,7 +33524,6 @@ "x-appwrite": { "method": "updateOAuth2Spotify", "group": "oauth2", - "weight": 1230, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-spotify.md", @@ -33280,7 +33603,6 @@ "x-appwrite": { "method": "updateOAuth2Stripe", "group": "oauth2", - "weight": 1229, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-stripe.md", @@ -33360,7 +33682,6 @@ "x-appwrite": { "method": "updateOAuth2Tradeshift", "group": "oauth2", - "weight": 1241, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-tradeshift.md", @@ -33440,7 +33761,6 @@ "x-appwrite": { "method": "updateOAuth2TradeshiftSandbox", "group": "oauth2", - "weight": 1242, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-tradeshift-sandbox.md", @@ -33520,7 +33840,6 @@ "x-appwrite": { "method": "updateOAuth2Twitch", "group": "oauth2", - "weight": 1228, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-twitch.md", @@ -33600,7 +33919,6 @@ "x-appwrite": { "method": "updateOAuth2WordPress", "group": "oauth2", - "weight": 1227, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-word-press.md", @@ -33680,7 +33998,6 @@ "x-appwrite": { "method": "updateOAuth2X", "group": "oauth2", - "weight": 1226, "cookies": false, "type": "", "demo": "project\/update-o-auth-2x.md", @@ -33760,7 +34077,6 @@ "x-appwrite": { "method": "updateOAuth2Yahoo", "group": "oauth2", - "weight": 1235, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-yahoo.md", @@ -33840,7 +34156,6 @@ "x-appwrite": { "method": "updateOAuth2Yandex", "group": "oauth2", - "weight": 1225, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-yandex.md", @@ -33920,7 +34235,6 @@ "x-appwrite": { "method": "updateOAuth2Zoho", "group": "oauth2", - "weight": 1224, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-zoho.md", @@ -34000,7 +34314,6 @@ "x-appwrite": { "method": "updateOAuth2Zoom", "group": "oauth2", - "weight": 1223, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-zoom.md", @@ -34248,7 +34561,6 @@ "x-appwrite": { "method": "getOAuth2Provider", "group": "oauth2", - "weight": 1212, "cookies": false, "type": "", "demo": "project\/get-o-auth-2-provider.md", @@ -34324,12 +34636,9 @@ "yammer", "yandex", "zoho", - "zoom", - "githubImagine", - "googleImagine" + "zoom" ], - "x-enum-name": "ProjectOAuthProviderId", - "x-enum-keys": [] + "x-enum-name": "ProjectOAuthProviderId" }, "in": "path" } @@ -34360,7 +34669,6 @@ "x-appwrite": { "method": "listPlatforms", "group": "platforms", - "weight": 1181, "cookies": false, "type": "", "demo": "project\/list-platforms.md", @@ -34437,7 +34745,6 @@ "x-appwrite": { "method": "createAndroidPlatform", "group": "platforms", - "weight": 1185, "cookies": false, "type": "", "demo": "project\/create-android-platform.md", @@ -34519,7 +34826,6 @@ "x-appwrite": { "method": "updateAndroidPlatform", "group": "platforms", - "weight": 1190, "cookies": false, "type": "", "demo": "project\/update-android-platform.md", @@ -34607,7 +34913,6 @@ "x-appwrite": { "method": "createApplePlatform", "group": "platforms", - "weight": 1184, "cookies": false, "type": "", "demo": "project\/create-apple-platform.md", @@ -34689,7 +34994,6 @@ "x-appwrite": { "method": "updateApplePlatform", "group": "platforms", - "weight": 1189, "cookies": false, "type": "", "demo": "project\/update-apple-platform.md", @@ -34777,7 +35081,6 @@ "x-appwrite": { "method": "createLinuxPlatform", "group": "platforms", - "weight": 1187, "cookies": false, "type": "", "demo": "project\/create-linux-platform.md", @@ -34859,7 +35162,6 @@ "x-appwrite": { "method": "updateLinuxPlatform", "group": "platforms", - "weight": 1192, "cookies": false, "type": "", "demo": "project\/update-linux-platform.md", @@ -34947,7 +35249,6 @@ "x-appwrite": { "method": "createWebPlatform", "group": "platforms", - "weight": 1183, "cookies": false, "type": "", "demo": "project\/create-web-platform.md", @@ -35029,7 +35330,6 @@ "x-appwrite": { "method": "updateWebPlatform", "group": "platforms", - "weight": 1188, "cookies": false, "type": "", "demo": "project\/update-web-platform.md", @@ -35117,7 +35417,6 @@ "x-appwrite": { "method": "createWindowsPlatform", "group": "platforms", - "weight": 1186, "cookies": false, "type": "", "demo": "project\/create-windows-platform.md", @@ -35199,7 +35498,6 @@ "x-appwrite": { "method": "updateWindowsPlatform", "group": "platforms", - "weight": 1191, "cookies": false, "type": "", "demo": "project\/update-windows-platform.md", @@ -35313,7 +35611,6 @@ "x-appwrite": { "method": "getPlatform", "group": "platforms", - "weight": 1182, "cookies": false, "type": "", "demo": "project\/get-platform.md", @@ -35367,7 +35664,6 @@ "x-appwrite": { "method": "deletePlatform", "group": "platforms", - "weight": 1193, "cookies": false, "type": "", "demo": "project\/delete-platform.md", @@ -35430,7 +35726,6 @@ "x-appwrite": { "method": "listPolicies", "group": "policies", - "weight": 1199, "cookies": false, "type": "", "demo": "project\/list-policies.md", @@ -35510,7 +35805,6 @@ "x-appwrite": { "method": "updateDenyAliasedEmailPolicy", "group": "policies", - "weight": 1255, "cookies": false, "type": "", "demo": "project\/update-deny-aliased-email-policy.md", @@ -35583,7 +35877,6 @@ "x-appwrite": { "method": "updateDenyDisposableEmailPolicy", "group": "policies", - "weight": 1256, "cookies": false, "type": "", "demo": "project\/update-deny-disposable-email-policy.md", @@ -35656,7 +35949,6 @@ "x-appwrite": { "method": "updateDenyFreeEmailPolicy", "group": "policies", - "weight": 1257, "cookies": false, "type": "", "demo": "project\/update-deny-free-email-policy.md", @@ -35729,7 +36021,6 @@ "x-appwrite": { "method": "updateMembershipPrivacyPolicy", "group": "policies", - "weight": 1201, "cookies": false, "type": "", "demo": "project\/update-membership-privacy-policy.md", @@ -35819,7 +36110,6 @@ "x-appwrite": { "method": "updatePasswordDictionaryPolicy", "group": "policies", - "weight": 1202, "cookies": false, "type": "", "demo": "project\/update-password-dictionary-policy.md", @@ -35892,7 +36182,6 @@ "x-appwrite": { "method": "updatePasswordHistoryPolicy", "group": "policies", - "weight": 1203, "cookies": false, "type": "", "demo": "project\/update-password-history-policy.md", @@ -35967,7 +36256,6 @@ "x-appwrite": { "method": "updatePasswordPersonalDataPolicy", "group": "policies", - "weight": 1204, "cookies": false, "type": "", "demo": "project\/update-password-personal-data-policy.md", @@ -36040,7 +36328,6 @@ "x-appwrite": { "method": "updateSessionAlertPolicy", "group": "policies", - "weight": 1205, "cookies": false, "type": "", "demo": "project\/update-session-alert-policy.md", @@ -36113,7 +36400,6 @@ "x-appwrite": { "method": "updateSessionDurationPolicy", "group": "policies", - "weight": 1206, "cookies": false, "type": "", "demo": "project\/update-session-duration-policy.md", @@ -36187,7 +36473,6 @@ "x-appwrite": { "method": "updateSessionInvalidationPolicy", "group": "policies", - "weight": 1207, "cookies": false, "type": "", "demo": "project\/update-session-invalidation-policy.md", @@ -36260,7 +36545,6 @@ "x-appwrite": { "method": "updateSessionLimitPolicy", "group": "policies", - "weight": 1208, "cookies": false, "type": "", "demo": "project\/update-session-limit-policy.md", @@ -36335,7 +36619,6 @@ "x-appwrite": { "method": "updateUserLimitPolicy", "group": "policies", - "weight": 1209, "cookies": false, "type": "", "demo": "project\/update-user-limit-policy.md", @@ -36452,7 +36735,6 @@ "x-appwrite": { "method": "getPolicy", "group": "policies", - "weight": 1200, "cookies": false, "type": "", "demo": "project\/get-policy.md", @@ -36499,8 +36781,7 @@ "user-limit", "membership-privacy" ], - "x-enum-name": "ProjectPolicyId", - "x-enum-keys": [] + "x-enum-name": "ProjectPolicyId" }, "in": "path" } @@ -36531,7 +36812,6 @@ "x-appwrite": { "method": "updateProtocol", "group": null, - "weight": 1163, "cookies": false, "type": "", "demo": "project\/update-protocol.md", @@ -36569,8 +36849,7 @@ "graphql", "websocket" ], - "x-enum-name": "ProjectProtocolId", - "x-enum-keys": [] + "x-enum-name": "ProjectProtocolId" }, "in": "path" } @@ -36620,7 +36899,6 @@ "x-appwrite": { "method": "updateService", "group": null, - "weight": 1164, "cookies": false, "type": "", "demo": "project\/update-service.md", @@ -36673,8 +36951,7 @@ "messaging", "advisor" ], - "x-enum-name": "ProjectServiceId", - "x-enum-keys": [] + "x-enum-name": "ProjectServiceId" }, "in": "path" } @@ -36724,7 +37001,6 @@ "x-appwrite": { "method": "updateSMTP", "group": "smtp", - "weight": 1165, "cookies": false, "type": "", "demo": "project\/update-smtp.md", @@ -36815,7 +37091,6 @@ "ssl" ], "x-enum-name": "ProjectSMTPSecure", - "x-enum-keys": [], "x-nullable": true }, "enabled": { @@ -36848,7 +37123,6 @@ "x-appwrite": { "method": "createSMTPTest", "group": "smtp", - "weight": 1166, "cookies": false, "type": "", "demo": "project\/create-smtp-test.md", @@ -36921,7 +37195,6 @@ "x-appwrite": { "method": "listEmailTemplates", "group": "templates", - "weight": 1167, "cookies": false, "type": "", "demo": "project\/list-email-templates.md", @@ -36996,7 +37269,6 @@ "x-appwrite": { "method": "updateEmailTemplate", "group": "templates", - "weight": 1169, "cookies": false, "type": "", "demo": "project\/update-email-template.md", @@ -37040,8 +37312,7 @@ "sessionAlert", "otpSession" ], - "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateId" }, "locale": { "type": "string", @@ -37180,8 +37451,7 @@ "zh-tw", "zu" ], - "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateLocale" }, "subject": { "type": "string", @@ -37255,7 +37525,6 @@ "x-appwrite": { "method": "getEmailTemplate", "group": "templates", - "weight": 1168, "cookies": false, "type": "", "demo": "project\/get-email-template.md", @@ -37297,8 +37566,7 @@ "sessionAlert", "otpSession" ], - "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateId" }, "in": "path" }, @@ -37442,8 +37710,7 @@ "zh-tw", "zu" ], - "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateLocale" }, "in": "query" } @@ -37474,7 +37741,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 1171, "cookies": false, "type": "", "demo": "project\/list-variables.md", @@ -37549,7 +37815,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 1170, "cookies": false, "type": "", "demo": "project\/create-variable.md", @@ -37598,6 +37863,7 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only projects can read them during build and runtime.", + "default": true, "x-example": false } }, @@ -37636,7 +37902,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 1172, "cookies": false, "type": "", "demo": "project\/get-variable.md", @@ -37697,7 +37962,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 1174, "cookies": false, "type": "", "demo": "project\/update-variable.md", @@ -37780,7 +38044,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 1173, "cookies": false, "type": "", "demo": "project\/delete-variable.md", @@ -37843,7 +38106,6 @@ "x-appwrite": { "method": "listRules", "group": "rules", - "weight": 1267, "cookies": false, "type": "", "demo": "proxy\/list-rules.md", @@ -37920,7 +38182,6 @@ "x-appwrite": { "method": "createAPIRule", "group": "rules", - "weight": 1262, "cookies": false, "type": "", "demo": "proxy\/create-api-rule.md", @@ -37990,7 +38251,6 @@ "x-appwrite": { "method": "createFunctionRule", "group": "rules", - "weight": 1264, "cookies": false, "type": "", "demo": "proxy\/create-function-rule.md", @@ -38034,6 +38294,7 @@ "branch": { "type": "string", "description": "Name of VCS branch to deploy changes automatically", + "default": "", "x-example": "<BRANCH>" } }, @@ -38071,7 +38332,6 @@ "x-appwrite": { "method": "createRedirectRule", "group": "rules", - "weight": 1265, "cookies": false, "type": "", "demo": "proxy\/create-redirect-rule.md", @@ -38123,12 +38383,12 @@ "307", "308" ], - "x-enum-name": null, + "x-enum-name": "RedirectStatusCode", "x-enum-keys": [ - "Moved Permanently 301", - "Found 302", - "Temporary Redirect 307", - "Permanent Redirect 308" + "MovedPermanently", + "Found", + "TemporaryRedirect", + "PermanentRedirect" ] }, "resourceId": { @@ -38188,7 +38448,6 @@ "x-appwrite": { "method": "createSiteRule", "group": "rules", - "weight": 1263, "cookies": false, "type": "", "demo": "proxy\/create-site-rule.md", @@ -38232,6 +38491,7 @@ "branch": { "type": "string", "description": "Name of VCS branch to deploy changes automatically", + "default": "", "x-example": "<BRANCH>" } }, @@ -38269,7 +38529,6 @@ "x-appwrite": { "method": "getRule", "group": "rules", - "weight": 1266, "cookies": false, "type": "", "demo": "proxy\/get-rule.md", @@ -38323,7 +38582,6 @@ "x-appwrite": { "method": "deleteRule", "group": "rules", - "weight": 1268, "cookies": false, "type": "", "demo": "proxy\/delete-rule.md", @@ -38386,7 +38644,6 @@ "x-appwrite": { "method": "updateRuleStatus", "group": "rules", - "weight": 1269, "cookies": false, "type": "", "demo": "proxy\/update-rule-status.md", @@ -38449,7 +38706,6 @@ "x-appwrite": { "method": "listReports", "group": "reports", - "weight": 695, "cookies": false, "type": "", "demo": "advisor\/list-reports.md", @@ -38527,7 +38783,6 @@ "x-appwrite": { "method": "getReport", "group": "reports", - "weight": 694, "cookies": false, "type": "", "demo": "advisor\/get-report.md", @@ -38582,7 +38837,6 @@ "x-appwrite": { "method": "deleteReport", "group": "reports", - "weight": 696, "cookies": false, "type": "", "demo": "advisor\/delete-report.md", @@ -38646,7 +38900,6 @@ "x-appwrite": { "method": "listInsights", "group": "insights", - "weight": 698, "cookies": false, "type": "", "demo": "advisor\/list-insights.md", @@ -38734,7 +38987,6 @@ "x-appwrite": { "method": "getInsight", "group": "insights", - "weight": 697, "cookies": false, "type": "", "demo": "advisor\/get-insight.md", @@ -38808,7 +39060,6 @@ "x-appwrite": { "method": "list", "group": "sites", - "weight": 479, "cookies": false, "type": "", "demo": "sites\/list.md", @@ -38894,7 +39145,6 @@ "x-appwrite": { "method": "create", "group": "sites", - "weight": 972, "cookies": false, "type": "", "demo": "sites\/create.md", @@ -38956,43 +39206,49 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "enabled": { "type": "boolean", "description": "Is site enabled? When set to 'disabled', users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.", + "default": true, "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.", + "default": true, "x-example": false }, "timeout": { "type": "integer", "description": "Maximum request time in seconds.", + "default": 30, "x-example": 1, "format": "int32" }, "installCommand": { "type": "string", "description": "Install Command.", + "default": "", "x-example": "<INSTALL_COMMAND>" }, "buildCommand": { "type": "string", "description": "Build Command.", + "default": "", "x-example": "<BUILD_COMMAND>" }, "startCommand": { "type": "string", "description": "Custom start command. Leave empty to use default.", + "default": "", "x-example": "<START_COMMAND>" }, "outputDirectory": { "type": "string", "description": "Output Directory for site.", + "default": "", "x-example": "<OUTPUT_DIRECTORY>" }, "buildRuntime": { @@ -39052,6 +39308,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -39091,10 +39348,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteBuildRuntime" }, "adapter": { "type": "string", @@ -39104,52 +39361,78 @@ "static", "ssr" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteAdapter" }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", + "default": "", "x-example": "<INSTALLATION_ID>" }, "fallbackFile": { "type": "string", "description": "Fallback file for single page application sites.", + "default": "", "x-example": "<FALLBACK_FILE>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the site.", + "default": "", "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the site.", + "default": "", "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.", + "default": false, "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to site code in the linked repo.", + "default": "", "x-example": "<PROVIDER_ROOT_DIRECTORY>" }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, "buildSpecification": { "type": "string", "description": "Build specification for the site deployments.", + "default": {}, "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the SSR executions.", + "default": {}, "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", + "default": 0, "x-example": 0, "format": "int32" } @@ -39190,7 +39473,6 @@ "x-appwrite": { "method": "listFrameworks", "group": "frameworks", - "weight": 482, "cookies": false, "type": "", "demo": "sites\/list-frameworks.md", @@ -39241,7 +39523,6 @@ "x-appwrite": { "method": "listSpecifications", "group": "frameworks", - "weight": 505, "cookies": false, "type": "", "demo": "sites\/list-specifications.md", @@ -39292,7 +39573,6 @@ "x-appwrite": { "method": "get", "group": "sites", - "weight": 478, "cookies": false, "type": "", "demo": "sites\/get.md", @@ -39353,7 +39633,6 @@ "x-appwrite": { "method": "update", "group": "sites", - "weight": 973, "cookies": false, "type": "", "demo": "sites\/update.md", @@ -39422,43 +39701,49 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "enabled": { "type": "boolean", "description": "Is site enabled? When set to 'disabled', users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.", + "default": true, "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.", + "default": true, "x-example": false }, "timeout": { "type": "integer", "description": "Maximum request time in seconds.", + "default": 30, "x-example": 1, "format": "int32" }, "installCommand": { "type": "string", "description": "Install Command.", + "default": "", "x-example": "<INSTALL_COMMAND>" }, "buildCommand": { "type": "string", "description": "Build Command.", + "default": "", "x-example": "<BUILD_COMMAND>" }, "startCommand": { "type": "string", "description": "Custom start command. Leave empty to use default.", + "default": "", "x-example": "<START_COMMAND>" }, "outputDirectory": { "type": "string", "description": "Output Directory for site.", + "default": "", "x-example": "<OUTPUT_DIRECTORY>" }, "buildRuntime": { @@ -39518,6 +39803,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -39557,10 +39843,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteBuildRuntime" }, "adapter": { "type": "string", @@ -39570,52 +39856,78 @@ "static", "ssr" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteAdapter" }, "fallbackFile": { "type": "string", "description": "Fallback file for single page application sites.", + "default": "", "x-example": "<FALLBACK_FILE>" }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", + "default": "", "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the site.", + "default": "", "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the site.", + "default": "", "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.", + "default": false, "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to site code in the linked repo.", + "default": "", "x-example": "<PROVIDER_ROOT_DIRECTORY>" }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "x-example": null, + "items": { + "type": "string" + }, + "x-nullable": true + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "x-example": null, + "items": { + "type": "string" + }, + "x-nullable": true + }, "buildSpecification": { "type": "string", "description": "Build specification for the site deployments.", + "default": {}, "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the SSR executions.", + "default": {}, "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", + "default": 0, "x-example": 0, "format": "int32" } @@ -39645,7 +39957,6 @@ "x-appwrite": { "method": "delete", "group": "sites", - "weight": 481, "cookies": false, "type": "", "demo": "sites\/delete.md", @@ -39708,7 +40019,6 @@ "x-appwrite": { "method": "updateSiteDeployment", "group": "sites", - "weight": 488, "cookies": false, "type": "", "demo": "sites\/update-site-deployment.md", @@ -39790,7 +40100,6 @@ "x-appwrite": { "method": "listDeployments", "group": "deployments", - "weight": 487, "cookies": false, "type": "", "demo": "sites\/list-deployments.md", @@ -39886,7 +40195,6 @@ "x-appwrite": { "method": "createDeployment", "group": "deployments", - "weight": 483, "cookies": false, "type": "upload", "demo": "sites\/create-deployment.md", @@ -39956,6 +40264,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -39992,7 +40301,6 @@ "x-appwrite": { "method": "createDuplicateDeployment", "group": "deployments", - "weight": 491, "cookies": false, "type": "", "demo": "sites\/create-duplicate-deployment.md", @@ -40074,7 +40382,6 @@ "x-appwrite": { "method": "createTemplateDeployment", "group": "deployments", - "weight": 484, "cookies": false, "type": "", "demo": "sites\/create-template-deployment.md", @@ -40141,8 +40448,7 @@ "commit", "tag" ], - "x-enum-name": "TemplateReferenceType", - "x-enum-keys": [] + "x-enum-name": "TemplateReferenceType" }, "reference": { "type": "string", @@ -40152,6 +40458,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -40192,7 +40499,6 @@ "x-appwrite": { "method": "createVcsDeployment", "group": "deployments", - "weight": 485, "cookies": false, "type": "", "demo": "sites\/create-vcs-deployment.md", @@ -40244,8 +40550,7 @@ "commit", "tag" ], - "x-enum-name": "VCSReferenceType", - "x-enum-keys": [] + "x-enum-name": "VCSReferenceType" }, "reference": { "type": "string", @@ -40255,6 +40560,7 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", + "default": false, "x-example": false } }, @@ -40292,7 +40598,6 @@ "x-appwrite": { "method": "getDeployment", "group": "deployments", - "weight": 486, "cookies": false, "type": "", "demo": "sites\/get-deployment.md", @@ -40356,7 +40661,6 @@ "x-appwrite": { "method": "deleteDeployment", "group": "deployments", - "weight": 489, "cookies": false, "type": "", "demo": "sites\/delete-deployment.md", @@ -40422,7 +40726,6 @@ "x-appwrite": { "method": "getDeploymentDownload", "group": "deployments", - "weight": 490, "cookies": false, "type": "location", "demo": "sites\/get-deployment-download.md", @@ -40482,7 +40785,6 @@ "output" ], "x-enum-name": "DeploymentDownloadType", - "x-enum-keys": [], "default": "source" }, "in": "query" @@ -40514,7 +40816,6 @@ "x-appwrite": { "method": "updateDeploymentStatus", "group": "deployments", - "weight": 492, "cookies": false, "type": "", "demo": "sites\/update-deployment-status.md", @@ -40587,7 +40888,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 494, "cookies": false, "type": "", "demo": "sites\/list-logs.md", @@ -40674,7 +40974,6 @@ "x-appwrite": { "method": "getLog", "group": "logs", - "weight": 493, "cookies": false, "type": "", "demo": "sites\/get-log.md", @@ -40738,7 +41037,6 @@ "x-appwrite": { "method": "deleteLog", "group": "logs", - "weight": 495, "cookies": false, "type": "", "demo": "sites\/delete-log.md", @@ -40811,7 +41109,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 498, "cookies": false, "type": "", "demo": "sites\/list-variables.md", @@ -40896,7 +41193,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 974, "cookies": false, "type": "", "demo": "sites\/create-variable.md", @@ -40957,6 +41253,7 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only sites can read them during build and runtime.", + "default": true, "x-example": false } }, @@ -40995,7 +41292,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 497, "cookies": false, "type": "", "demo": "sites\/get-variable.md", @@ -41066,7 +41362,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 499, "cookies": false, "type": "", "demo": "sites\/update-variable.md", @@ -41159,7 +41454,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 500, "cookies": false, "type": "", "demo": "sites\/delete-variable.md", @@ -41232,7 +41526,6 @@ "x-appwrite": { "method": "listBuckets", "group": "buckets", - "weight": 550, "cookies": false, "type": "", "demo": "storage\/list-buckets.md", @@ -41319,7 +41612,6 @@ "x-appwrite": { "method": "createBucket", "group": "buckets", - "weight": 548, "cookies": false, "type": "", "demo": "storage\/create-bucket.md", @@ -41373,22 +41665,26 @@ "fileSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual file. A user needs one of file or bucket level permissions to access a file. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is bucket enabled? When set to 'disabled', users cannot access the files in this bucket but Server SDKs with and API key can still access the bucket. No files are lost when this is toggled.", + "default": true, "x-example": false }, "maximumFileSize": { "type": "integer", - "description": "Maximum file size allowed in bytes. Maximum allowed value is 5GB.", + "description": "Maximum file size allowed in bytes. Maximum allowed value is 0B.", + "default": {}, "x-example": 1, "format": "int32" }, "allowedFileExtensions": { "type": "array", "description": "Allowed file extensions. Maximum of 100 extensions are allowed, each 64 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -41397,28 +41693,31 @@ "compression": { "type": "string", "description": "Compression algorithm chosen for compression. Can be one of none, [gzip](https:\/\/en.wikipedia.org\/wiki\/Gzip), or [zstd](https:\/\/en.wikipedia.org\/wiki\/Zstd), For file size above 20MB compression is skipped even if it's enabled", + "default": "none", "x-example": "none", "enum": [ "none", "gzip", "zstd" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Compression" }, "encryption": { "type": "boolean", "description": "Is encryption enabled? For file size above 20MB encryption is skipped even if it's enabled", + "default": true, "x-example": false }, "antivirus": { "type": "boolean", "description": "Is virus scanning enabled? For file size above 20MB AntiVirus scanning is skipped even if it's enabled", + "default": true, "x-example": false }, "transformations": { "type": "boolean", "description": "Are image transformations enabled?", + "default": true, "x-example": false } }, @@ -41456,7 +41755,6 @@ "x-appwrite": { "method": "getBucket", "group": "buckets", - "weight": 549, "cookies": false, "type": "", "demo": "storage\/get-bucket.md", @@ -41518,7 +41816,6 @@ "x-appwrite": { "method": "updateBucket", "group": "buckets", - "weight": 551, "cookies": false, "type": "", "demo": "storage\/update-bucket.md", @@ -41579,22 +41876,26 @@ "fileSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual file. A user needs one of file or bucket level permissions to access a file. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is bucket enabled? When set to 'disabled', users cannot access the files in this bucket but Server SDKs with and API key can still access the bucket. No files are lost when this is toggled.", + "default": true, "x-example": false }, "maximumFileSize": { "type": "integer", - "description": "Maximum file size allowed in bytes. Maximum allowed value is 5GB.", + "description": "Maximum file size allowed in bytes. Maximum allowed value is 0B.", + "default": {}, "x-example": 1, "format": "int32" }, "allowedFileExtensions": { "type": "array", "description": "Allowed file extensions. Maximum of 100 extensions are allowed, each 64 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -41603,28 +41904,31 @@ "compression": { "type": "string", "description": "Compression algorithm chosen for compression. Can be one of none, [gzip](https:\/\/en.wikipedia.org\/wiki\/Gzip), or [zstd](https:\/\/en.wikipedia.org\/wiki\/Zstd), For file size above 20MB compression is skipped even if it's enabled", + "default": "none", "x-example": "none", "enum": [ "none", "gzip", "zstd" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Compression" }, "encryption": { "type": "boolean", "description": "Is encryption enabled? For file size above 20MB encryption is skipped even if it's enabled", + "default": true, "x-example": false }, "antivirus": { "type": "boolean", "description": "Is virus scanning enabled? For file size above 20MB AntiVirus scanning is skipped even if it's enabled", + "default": true, "x-example": false }, "transformations": { "type": "boolean", "description": "Are image transformations enabled?", + "default": true, "x-example": false } }, @@ -41652,7 +41956,6 @@ "x-appwrite": { "method": "deleteBucket", "group": "buckets", - "weight": 552, "cookies": false, "type": "", "demo": "storage\/delete-bucket.md", @@ -41716,7 +42019,6 @@ "x-appwrite": { "method": "listFiles", "group": "files", - "weight": 555, "cookies": false, "type": "", "demo": "storage\/list-files.md", @@ -41817,7 +42119,6 @@ "x-appwrite": { "method": "createFile", "group": "files", - "weight": 1260, "cookies": false, "type": "upload", "demo": "storage\/create-file.md", @@ -41921,7 +42222,6 @@ "x-appwrite": { "method": "getFile", "group": "files", - "weight": 554, "cookies": false, "type": "", "demo": "storage\/get-file.md", @@ -41997,7 +42297,6 @@ "x-appwrite": { "method": "updateFile", "group": "files", - "weight": 556, "cookies": false, "type": "", "demo": "storage\/update-file.md", @@ -42091,7 +42390,6 @@ "x-appwrite": { "method": "deleteFile", "group": "files", - "weight": 557, "cookies": false, "type": "", "demo": "storage\/delete-file.md", @@ -42162,7 +42460,6 @@ "x-appwrite": { "method": "getFileDownload", "group": "files", - "weight": 559, "cookies": false, "type": "location", "demo": "storage\/get-file-download.md", @@ -42244,7 +42541,6 @@ "x-appwrite": { "method": "getFilePreview", "group": "files", - "weight": 558, "cookies": false, "type": "location", "demo": "storage\/get-file-preview.md", @@ -42338,7 +42634,6 @@ "bottom-right" ], "x-enum-name": "ImageGravity", - "x-enum-keys": [], "default": "center" }, "in": "query" @@ -42439,8 +42734,7 @@ "avif", "gif" ], - "x-enum-name": "ImageFormat", - "x-enum-keys": [] + "x-enum-name": "ImageFormat" }, "in": "query" }, @@ -42475,7 +42769,6 @@ "x-appwrite": { "method": "getFileView", "group": "files", - "weight": 560, "cookies": false, "type": "location", "demo": "storage\/get-file-view.md", @@ -42564,7 +42857,6 @@ "x-appwrite": { "method": "list", "group": "tablesdb", - "weight": 780, "cookies": false, "type": "", "demo": "tablesdb\/list.md", @@ -42651,7 +42943,6 @@ "x-appwrite": { "method": "create", "group": "tablesdb", - "weight": 776, "cookies": false, "type": "", "demo": "tablesdb\/create.md", @@ -42696,6 +42987,7 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -42733,7 +43025,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 849, "cookies": false, "type": "", "demo": "tablesdb\/list-transactions.md", @@ -42805,7 +43096,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 845, "cookies": false, "type": "", "demo": "tablesdb\/create-transaction.md", @@ -42847,6 +43137,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -42881,7 +43172,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 846, "cookies": false, "type": "", "demo": "tablesdb\/get-transaction.md", @@ -42950,7 +43240,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 847, "cookies": false, "type": "", "demo": "tablesdb\/update-transaction.md", @@ -43004,11 +43293,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -43033,7 +43324,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 848, "cookies": false, "type": "", "demo": "tablesdb\/delete-transaction.md", @@ -43104,7 +43394,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 850, "cookies": false, "type": "", "demo": "tablesdb\/create-operations.md", @@ -43158,6 +43447,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"tableId\": \"<TABLE_ID>\",\n\t \"rowId\": \"<ROW_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -43194,7 +43484,6 @@ "x-appwrite": { "method": "get", "group": "tablesdb", - "weight": 777, "cookies": false, "type": "", "demo": "tablesdb\/get.md", @@ -43256,7 +43545,6 @@ "x-appwrite": { "method": "update", "group": "tablesdb", - "weight": 778, "cookies": false, "type": "", "demo": "tablesdb\/update.md", @@ -43308,6 +43596,7 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } } @@ -43332,7 +43621,6 @@ "x-appwrite": { "method": "delete", "group": "tablesdb", - "weight": 779, "cookies": false, "type": "", "demo": "tablesdb\/delete.md", @@ -43396,7 +43684,6 @@ "x-appwrite": { "method": "listTables", "group": "tables", - "weight": 787, "cookies": false, "type": "", "demo": "tablesdb\/list-tables.md", @@ -43496,7 +43783,6 @@ "x-appwrite": { "method": "createTable", "group": "tables", - "weight": 783, "cookies": false, "type": "", "demo": "tablesdb\/create-table.md", @@ -43565,16 +43851,19 @@ "rowSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual rows. A user needs one of row or table level permissions to access a row. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is table enabled? When set to 'disabled', users cannot access the table but Server SDKs with and API key can still read and write to the table. No data is lost when this is toggled.", + "default": true, "x-example": false }, "columns": { "type": "array", "description": "Array of column definitions to create. Each column should contain: key (string), type (string: string, integer, float, boolean, datetime, relationship), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", + "default": [], "x-example": null, "items": { "type": "object" @@ -43583,6 +43872,7 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of column keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", + "default": [], "x-example": null, "items": { "type": "object" @@ -43623,7 +43913,6 @@ "x-appwrite": { "method": "getTable", "group": "tables", - "weight": 784, "cookies": false, "type": "", "demo": "tablesdb\/get-table.md", @@ -43698,7 +43987,6 @@ "x-appwrite": { "method": "updateTable", "group": "tables", - "weight": 785, "cookies": false, "type": "", "demo": "tablesdb\/update-table.md", @@ -43772,16 +44060,19 @@ "rowSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual rows. A user needs one of row or table-level permissions to access a row. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is table enabled? When set to 'disabled', users cannot access the table but Server SDKs with and API key can still read and write to the table. No data is lost when this is toggled.", + "default": true, "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this table as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", + "default": false, "x-example": false } } @@ -43806,7 +44097,6 @@ "x-appwrite": { "method": "deleteTable", "group": "tables", - "weight": 786, "cookies": false, "type": "", "demo": "tablesdb\/delete-table.md", @@ -43883,7 +44173,6 @@ "x-appwrite": { "method": "listColumns", "group": "columns", - "weight": 792, "cookies": false, "type": "", "demo": "tablesdb\/list-columns.md", @@ -43986,7 +44275,6 @@ "x-appwrite": { "method": "createBigIntColumn", "group": "columns", - "weight": 805, "cookies": false, "type": "", "demo": "tablesdb\/create-big-int-column.md", @@ -44079,6 +44367,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -44116,7 +44405,6 @@ "x-appwrite": { "method": "updateBigIntColumn", "group": "columns", - "weight": 806, "cookies": false, "type": "", "demo": "tablesdb\/update-big-int-column.md", @@ -44251,7 +44539,6 @@ "x-appwrite": { "method": "createBooleanColumn", "group": "columns", - "weight": 793, "cookies": false, "type": "", "demo": "tablesdb\/create-boolean-column.md", @@ -44329,6 +44616,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -44366,7 +44654,6 @@ "x-appwrite": { "method": "updateBooleanColumn", "group": "columns", - "weight": 794, "cookies": false, "type": "", "demo": "tablesdb\/update-boolean-column.md", @@ -44486,7 +44773,6 @@ "x-appwrite": { "method": "createDatetimeColumn", "group": "columns", - "weight": 795, "cookies": false, "type": "", "demo": "tablesdb\/create-datetime-column.md", @@ -44565,6 +44851,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -44602,7 +44889,6 @@ "x-appwrite": { "method": "updateDatetimeColumn", "group": "columns", - "weight": 796, "cookies": false, "type": "", "demo": "tablesdb\/update-datetime-column.md", @@ -44723,7 +45009,6 @@ "x-appwrite": { "method": "createEmailColumn", "group": "columns", - "weight": 797, "cookies": false, "type": "", "demo": "tablesdb\/create-email-column.md", @@ -44802,6 +45087,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -44839,7 +45125,6 @@ "x-appwrite": { "method": "updateEmailColumn", "group": "columns", - "weight": 798, "cookies": false, "type": "", "demo": "tablesdb\/update-email-column.md", @@ -44960,7 +45245,6 @@ "x-appwrite": { "method": "createEnumColumn", "group": "columns", - "weight": 799, "cookies": false, "type": "", "demo": "tablesdb\/create-enum-column.md", @@ -45046,6 +45330,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -45084,7 +45369,6 @@ "x-appwrite": { "method": "updateEnumColumn", "group": "columns", - "weight": 800, "cookies": false, "type": "", "demo": "tablesdb\/update-enum-column.md", @@ -45213,7 +45497,6 @@ "x-appwrite": { "method": "createFloatColumn", "group": "columns", - "weight": 801, "cookies": false, "type": "", "demo": "tablesdb\/create-float-column.md", @@ -45306,6 +45589,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -45343,7 +45627,6 @@ "x-appwrite": { "method": "updateFloatColumn", "group": "columns", - "weight": 802, "cookies": false, "type": "", "demo": "tablesdb\/update-float-column.md", @@ -45478,7 +45761,6 @@ "x-appwrite": { "method": "createIntegerColumn", "group": "columns", - "weight": 803, "cookies": false, "type": "", "demo": "tablesdb\/create-integer-column.md", @@ -45571,6 +45853,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -45608,7 +45891,6 @@ "x-appwrite": { "method": "updateIntegerColumn", "group": "columns", - "weight": 804, "cookies": false, "type": "", "demo": "tablesdb\/update-integer-column.md", @@ -45743,7 +46025,6 @@ "x-appwrite": { "method": "createIpColumn", "group": "columns", - "weight": 807, "cookies": false, "type": "", "demo": "tablesdb\/create-ip-column.md", @@ -45821,6 +46102,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -45858,7 +46140,6 @@ "x-appwrite": { "method": "updateIpColumn", "group": "columns", - "weight": 808, "cookies": false, "type": "", "demo": "tablesdb\/update-ip-column.md", @@ -45978,7 +46259,6 @@ "x-appwrite": { "method": "createLineColumn", "group": "columns", - "weight": 809, "cookies": false, "type": "", "demo": "tablesdb\/create-line-column.md", @@ -46095,7 +46375,6 @@ "x-appwrite": { "method": "updateLineColumn", "group": "columns", - "weight": 810, "cookies": false, "type": "", "demo": "tablesdb\/update-line-column.md", @@ -46221,7 +46500,6 @@ "x-appwrite": { "method": "createLongtextColumn", "group": "columns", - "weight": 827, "cookies": false, "type": "", "demo": "tablesdb\/create-longtext-column.md", @@ -46299,11 +46577,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -46341,7 +46621,6 @@ "x-appwrite": { "method": "updateLongtextColumn", "group": "columns", - "weight": 828, "cookies": false, "type": "", "demo": "tablesdb\/update-longtext-column.md", @@ -46461,7 +46740,6 @@ "x-appwrite": { "method": "createMediumtextColumn", "group": "columns", - "weight": 825, "cookies": false, "type": "", "demo": "tablesdb\/create-mediumtext-column.md", @@ -46539,11 +46817,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -46581,7 +46861,6 @@ "x-appwrite": { "method": "updateMediumtextColumn", "group": "columns", - "weight": 826, "cookies": false, "type": "", "demo": "tablesdb\/update-mediumtext-column.md", @@ -46701,7 +46980,6 @@ "x-appwrite": { "method": "createPointColumn", "group": "columns", - "weight": 811, "cookies": false, "type": "", "demo": "tablesdb\/create-point-column.md", @@ -46818,7 +47096,6 @@ "x-appwrite": { "method": "updatePointColumn", "group": "columns", - "weight": 812, "cookies": false, "type": "", "demo": "tablesdb\/update-point-column.md", @@ -46944,7 +47221,6 @@ "x-appwrite": { "method": "createPolygonColumn", "group": "columns", - "weight": 813, "cookies": false, "type": "", "demo": "tablesdb\/create-polygon-column.md", @@ -47061,7 +47337,6 @@ "x-appwrite": { "method": "updatePolygonColumn", "group": "columns", - "weight": 814, "cookies": false, "type": "", "demo": "tablesdb\/update-polygon-column.md", @@ -47187,7 +47462,6 @@ "x-appwrite": { "method": "createRelationshipColumn", "group": "columns", - "weight": 815, "cookies": false, "type": "", "demo": "tablesdb\/create-relationship-column.md", @@ -47261,12 +47535,12 @@ "manyToMany", "oneToMany" ], - "x-enum-name": "RelationshipType", - "x-enum-keys": [] + "x-enum-name": "RelationshipType" }, "twoWay": { "type": "boolean", "description": "Is Two Way?", + "default": false, "x-example": false }, "key": { @@ -47284,14 +47558,14 @@ "onDelete": { "type": "string", "description": "Constraints option", + "default": "restrict", "x-example": "cascade", "enum": [ "cascade", "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" } }, "required": [ @@ -47328,7 +47602,6 @@ "x-appwrite": { "method": "createStringColumn", "group": "columns", - "weight": 817, "cookies": false, "type": "", "demo": "tablesdb\/create-string-column.md", @@ -47416,11 +47689,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -47459,7 +47734,6 @@ "x-appwrite": { "method": "updateStringColumn", "group": "columns", - "weight": 818, "cookies": false, "type": "", "demo": "tablesdb\/update-string-column.md", @@ -47590,7 +47864,6 @@ "x-appwrite": { "method": "createTextColumn", "group": "columns", - "weight": 823, "cookies": false, "type": "", "demo": "tablesdb\/create-text-column.md", @@ -47668,11 +47941,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -47710,7 +47985,6 @@ "x-appwrite": { "method": "updateTextColumn", "group": "columns", - "weight": 824, "cookies": false, "type": "", "demo": "tablesdb\/update-text-column.md", @@ -47830,7 +48104,6 @@ "x-appwrite": { "method": "createUrlColumn", "group": "columns", - "weight": 819, "cookies": false, "type": "", "demo": "tablesdb\/create-url-column.md", @@ -47909,6 +48182,7 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false } }, @@ -47946,7 +48220,6 @@ "x-appwrite": { "method": "updateUrlColumn", "group": "columns", - "weight": 820, "cookies": false, "type": "", "demo": "tablesdb\/update-url-column.md", @@ -48067,7 +48340,6 @@ "x-appwrite": { "method": "createVarcharColumn", "group": "columns", - "weight": 821, "cookies": false, "type": "", "demo": "tablesdb\/create-varchar-column.md", @@ -48151,11 +48423,13 @@ "array": { "type": "boolean", "description": "Is column an array?", + "default": false, "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", + "default": false, "x-example": false } }, @@ -48194,7 +48468,6 @@ "x-appwrite": { "method": "updateVarcharColumn", "group": "columns", - "weight": 822, "cookies": false, "type": "", "demo": "tablesdb\/update-varchar-column.md", @@ -48403,7 +48676,6 @@ "x-appwrite": { "method": "getColumn", "group": "columns", - "weight": 790, "cookies": false, "type": "", "demo": "tablesdb\/get-column.md", @@ -48482,7 +48754,6 @@ "x-appwrite": { "method": "deleteColumn", "group": "columns", - "weight": 791, "cookies": false, "type": "", "demo": "tablesdb\/delete-column.md", @@ -48570,7 +48841,6 @@ "x-appwrite": { "method": "updateRelationshipColumn", "group": "columns", - "weight": 816, "cookies": false, "type": "", "demo": "tablesdb\/update-relationship-column.md", @@ -48648,7 +48918,6 @@ "setNull" ], "x-enum-name": "RelationMutate", - "x-enum-keys": [], "x-nullable": true }, "newKey": { @@ -48688,7 +48957,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 832, "cookies": false, "type": "", "demo": "tablesdb\/list-indexes.md", @@ -48788,7 +49056,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 829, "cookies": false, "type": "", "demo": "tablesdb\/create-index.md", @@ -48861,8 +49128,7 @@ "unique", "spatial" ], - "x-enum-name": "TablesDBIndexType", - "x-enum-keys": [] + "x-enum-name": "TablesDBIndexType" }, "columns": { "type": "array", @@ -48875,6 +49141,7 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -48882,13 +49149,13 @@ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", + "default": [], "x-example": null, "items": { "type": "integer" @@ -48930,7 +49197,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 830, "cookies": false, "type": "", "demo": "tablesdb\/get-index.md", @@ -49008,7 +49274,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 831, "cookies": false, "type": "", "demo": "tablesdb\/delete-index.md", @@ -49095,7 +49360,6 @@ "x-appwrite": { "method": "listRows", "group": "rows", - "weight": 919, "cookies": false, "type": "", "demo": "tablesdb\/list-rows.md", @@ -49220,7 +49484,6 @@ "x-appwrite": { "method": "createRow", "group": "rows", - "weight": 833, "cookies": false, "type": "", "demo": "tablesdb\/create-row.md", @@ -49347,11 +49610,13 @@ "rowId": { "type": "string", "description": "Row ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "<ROW_ID>" }, "data": { "type": "object", "description": "Row data as JSON object.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { @@ -49366,6 +49631,7 @@ "rows": { "type": "array", "description": "Array of rows data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -49406,7 +49672,6 @@ "x-appwrite": { "method": "upsertRows", "group": "rows", - "weight": 838, "cookies": false, "type": "", "demo": "tablesdb\/upsert-rows.md", @@ -49540,7 +49805,6 @@ "x-appwrite": { "method": "updateRows", "group": "rows", - "weight": 836, "cookies": false, "type": "", "demo": "tablesdb\/update-rows.md", @@ -49600,11 +49864,13 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only column and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -49645,7 +49911,6 @@ "x-appwrite": { "method": "deleteRows", "group": "rows", - "weight": 840, "cookies": false, "type": "", "demo": "tablesdb\/delete-rows.md", @@ -49705,6 +49970,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -49747,7 +50013,6 @@ "x-appwrite": { "method": "getRow", "group": "rows", - "weight": 834, "cookies": false, "type": "", "demo": "tablesdb\/get-row.md", @@ -49859,7 +50124,6 @@ "x-appwrite": { "method": "upsertRow", "group": "rows", - "weight": 837, "cookies": false, "type": "", "demo": "tablesdb\/upsert-row.md", @@ -49966,6 +50230,7 @@ "data": { "type": "object", "description": "Row data as JSON object. Include all required columns of the row to be created or updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -50012,7 +50277,6 @@ "x-appwrite": { "method": "updateRow", "group": "rows", - "weight": 835, "cookies": false, "type": "", "demo": "tablesdb\/update-row.md", @@ -50086,6 +50350,7 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only columns and value pairs to be updated.", + "default": {}, "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { @@ -50125,7 +50390,6 @@ "x-appwrite": { "method": "deleteRow", "group": "rows", - "weight": 839, "cookies": false, "type": "", "demo": "tablesdb\/delete-row.md", @@ -50233,7 +50497,6 @@ "x-appwrite": { "method": "decrementRowColumn", "group": "rows", - "weight": 844, "cookies": false, "type": "", "demo": "tablesdb\/decrement-row-column.md", @@ -50316,6 +50579,7 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -50363,7 +50627,6 @@ "x-appwrite": { "method": "incrementRowColumn", "group": "rows", - "weight": 843, "cookies": false, "type": "", "demo": "tablesdb\/increment-row-column.md", @@ -50446,6 +50709,7 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", + "default": 1, "x-example": null, "format": "float" }, @@ -50493,7 +50757,6 @@ "x-appwrite": { "method": "list", "group": "teams", - "weight": 531, "cookies": false, "type": "", "demo": "teams\/list.md", @@ -50584,7 +50847,6 @@ "x-appwrite": { "method": "create", "group": "teams", - "weight": 529, "cookies": false, "type": "", "demo": "teams\/create.md", @@ -50633,6 +50895,9 @@ "roles": { "type": "array", "description": "Array of strings. Use this param to set the roles in the team for the user who created it. The default role is **owner**. A role can be any string. Learn more about [roles and permissions](https:\/\/appwrite.io\/docs\/permissions). Maximum of 100 roles are allowed, each 32 characters long.", + "default": [ + "owner" + ], "x-example": null, "items": { "type": "string" @@ -50673,7 +50938,6 @@ "x-appwrite": { "method": "get", "group": "teams", - "weight": 530, "cookies": false, "type": "", "demo": "teams\/get.md", @@ -50739,7 +51003,6 @@ "x-appwrite": { "method": "updateName", "group": "teams", - "weight": 533, "cookies": false, "type": "", "demo": "teams\/update-name.md", @@ -50817,7 +51080,6 @@ "x-appwrite": { "method": "delete", "group": "teams", - "weight": 532, "cookies": false, "type": "", "demo": "teams\/delete.md", @@ -50885,7 +51147,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 538, "cookies": false, "type": "", "demo": "teams\/list-memberships.md", @@ -50986,7 +51247,6 @@ "x-appwrite": { "method": "createMembership", "group": "memberships", - "weight": 536, "cookies": false, "type": "", "demo": "teams\/create-membership.md", @@ -51037,17 +51297,20 @@ "email": { "type": "string", "description": "Email of the new team member.", + "default": "", "x-example": "email@example.com", "format": "email" }, "userId": { "type": "string", "description": "ID of the user to be added to a team.", + "default": "", "x-example": "<USER_ID>" }, "phone": { "type": "string", "description": "Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", + "default": "", "x-example": "+12065550100", "format": "phone" }, @@ -51062,12 +51325,14 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the invitation email. This parameter is not required when an API key is supplied. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", + "default": "", "x-example": "https:\/\/example.com", "format": "url" }, "name": { "type": "string", "description": "Name of the new team member. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -51104,7 +51369,6 @@ "x-appwrite": { "method": "getMembership", "group": "memberships", - "weight": 537, "cookies": false, "type": "", "demo": "teams\/get-membership.md", @@ -51180,7 +51444,6 @@ "x-appwrite": { "method": "updateMembership", "group": "memberships", - "weight": 539, "cookies": false, "type": "", "demo": "teams\/update-membership.md", @@ -51271,7 +51534,6 @@ "x-appwrite": { "method": "deleteMembership", "group": "memberships", - "weight": 1261, "cookies": false, "type": "", "demo": "teams\/delete-membership.md", @@ -51349,7 +51611,6 @@ "x-appwrite": { "method": "updateMembershipStatus", "group": "memberships", - "weight": 541, "cookies": false, "type": "", "demo": "teams\/update-membership-status.md", @@ -51450,7 +51711,6 @@ "x-appwrite": { "method": "getPrefs", "group": "teams", - "weight": 534, "cookies": false, "type": "", "demo": "teams\/get-prefs.md", @@ -51514,7 +51774,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "teams", - "weight": 535, "cookies": false, "type": "", "demo": "teams\/update-prefs.md", @@ -51599,7 +51858,6 @@ "x-appwrite": { "method": "list", "group": "files", - "weight": 545, "cookies": false, "type": "", "demo": "tokens\/list.md", @@ -51694,7 +51952,6 @@ "x-appwrite": { "method": "createFileToken", "group": "files", - "weight": 543, "cookies": false, "type": "", "demo": "tokens\/create-file-token.md", @@ -51785,7 +52042,6 @@ "x-appwrite": { "method": "get", "group": "tokens", - "weight": 544, "cookies": false, "type": "", "demo": "tokens\/get.md", @@ -51846,7 +52102,6 @@ "x-appwrite": { "method": "update", "group": "tokens", - "weight": 546, "cookies": false, "type": "", "demo": "tokens\/update.md", @@ -51918,7 +52173,6 @@ "x-appwrite": { "method": "delete", "group": "tokens", - "weight": 547, "cookies": false, "type": "", "demo": "tokens\/delete.md", @@ -51981,7 +52235,6 @@ "x-appwrite": { "method": "listEvents", "group": "events", - "weight": 1273, "cookies": false, "type": "", "demo": "usage\/list-events.md", @@ -52058,7 +52311,6 @@ "x-appwrite": { "method": "listGauges", "group": "gauges", - "weight": 1274, "cookies": false, "type": "", "demo": "usage\/list-gauges.md", @@ -52135,7 +52387,6 @@ "x-appwrite": { "method": "list", "group": "users", - "weight": 70, "cookies": false, "type": "", "demo": "users\/list.md", @@ -52222,7 +52473,6 @@ "x-appwrite": { "method": "create", "group": "users", - "weight": 61, "cookies": false, "type": "", "demo": "users\/create.md", @@ -52276,11 +52526,13 @@ "password": { "type": "string", "description": "Plain text user password. Must be at least 8 chars.", + "default": "", "x-example": null }, "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -52317,7 +52569,6 @@ "x-appwrite": { "method": "createArgon2User", "group": "users", - "weight": 64, "cookies": false, "type": "", "demo": "users\/create-argon-2-user.md", @@ -52369,6 +52620,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -52407,7 +52659,6 @@ "x-appwrite": { "method": "createBcryptUser", "group": "users", - "weight": 62, "cookies": false, "type": "", "demo": "users\/create-bcrypt-user.md", @@ -52459,6 +52710,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -52497,7 +52749,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 78, "cookies": false, "type": "", "demo": "users\/list-identities.md", @@ -52579,7 +52830,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 102, "cookies": false, "type": "", "demo": "users\/delete-identity.md", @@ -52643,7 +52893,6 @@ "x-appwrite": { "method": "createMD5User", "group": "users", - "weight": 63, "cookies": false, "type": "", "demo": "users\/create-md-5-user.md", @@ -52695,6 +52944,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -52733,7 +52983,6 @@ "x-appwrite": { "method": "createPHPassUser", "group": "users", - "weight": 66, "cookies": false, "type": "", "demo": "users\/create-ph-pass-user.md", @@ -52785,6 +53034,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -52823,7 +53073,6 @@ "x-appwrite": { "method": "createScryptUser", "group": "users", - "weight": 67, "cookies": false, "type": "", "demo": "users\/create-scrypt-user.md", @@ -52904,6 +53153,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -52947,7 +53197,6 @@ "x-appwrite": { "method": "createScryptModifiedUser", "group": "users", - "weight": 68, "cookies": false, "type": "", "demo": "users\/create-scrypt-modified-user.md", @@ -53014,6 +53263,7 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -53055,7 +53305,6 @@ "x-appwrite": { "method": "createSHAUser", "group": "users", - "weight": 65, "cookies": false, "type": "", "demo": "users\/create-sha-user.md", @@ -53121,12 +53370,12 @@ "sha3-384", "sha3-512" ], - "x-enum-name": "PasswordHash", - "x-enum-keys": [] + "x-enum-name": "PasswordHash" }, "name": { "type": "string", "description": "User name. Max length: 128 chars.", + "default": "", "x-example": "<NAME>" } }, @@ -53165,7 +53414,6 @@ "x-appwrite": { "method": "get", "group": "users", - "weight": 71, "cookies": false, "type": "", "demo": "users\/get.md", @@ -53220,7 +53468,6 @@ "x-appwrite": { "method": "delete", "group": "users", - "weight": 100, "cookies": false, "type": "", "demo": "users\/delete.md", @@ -53284,7 +53531,6 @@ "x-appwrite": { "method": "updateEmail", "group": "users", - "weight": 85, "cookies": false, "type": "", "demo": "users\/update-email.md", @@ -53368,7 +53614,6 @@ "x-appwrite": { "method": "updateImpersonator", "group": "users", - "weight": 81, "cookies": false, "type": "", "demo": "users\/update-impersonator.md", @@ -53451,7 +53696,6 @@ "x-appwrite": { "method": "createJWT", "group": "sessions", - "weight": 103, "cookies": false, "type": "", "demo": "users\/create-jwt.md", @@ -53498,11 +53742,13 @@ "sessionId": { "type": "string", "description": "Session ID. Use the string 'recent' to use the most recent session. Defaults to the most recent session.", + "default": "", "x-example": "<SESSION_ID>" }, "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", + "default": 900, "x-example": 0, "format": "int32" } @@ -53537,7 +53783,6 @@ "x-appwrite": { "method": "updateLabels", "group": "users", - "weight": 80, "cookies": false, "type": "", "demo": "users\/update-labels.md", @@ -53623,7 +53868,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 76, "cookies": false, "type": "", "demo": "users\/list-logs.md", @@ -53711,7 +53955,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 75, "cookies": false, "type": "", "demo": "users\/list-memberships.md", @@ -53810,7 +54053,6 @@ "x-appwrite": { "method": "updateMfa", "group": "users", - "weight": 90, "cookies": false, "type": "", "demo": "users\/update-mfa.md", @@ -53948,7 +54190,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 95, "cookies": false, "type": "", "demo": "users\/delete-mfa-authenticator.md", @@ -54055,8 +54296,7 @@ "enum": [ "totp" ], - "x-enum-name": "AuthenticatorType", - "x-enum-keys": [] + "x-enum-name": "AuthenticatorType" }, "in": "path" } @@ -54087,7 +54327,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 91, "cookies": false, "type": "", "demo": "users\/list-mfa-factors.md", @@ -54209,7 +54448,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 92, "cookies": false, "type": "", "demo": "users\/get-mfa-recovery-codes.md", @@ -54329,7 +54567,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 94, "cookies": false, "type": "", "demo": "users\/update-mfa-recovery-codes.md", @@ -54449,7 +54686,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 93, "cookies": false, "type": "", "demo": "users\/create-mfa-recovery-codes.md", @@ -54571,7 +54807,6 @@ "x-appwrite": { "method": "updateName", "group": "users", - "weight": 83, "cookies": false, "type": "", "demo": "users\/update-name.md", @@ -54654,7 +54889,6 @@ "x-appwrite": { "method": "updatePassword", "group": "users", - "weight": 84, "cookies": false, "type": "", "demo": "users\/update-password.md", @@ -54737,7 +54971,6 @@ "x-appwrite": { "method": "updatePhone", "group": "users", - "weight": 86, "cookies": false, "type": "", "demo": "users\/update-phone.md", @@ -54821,7 +55054,6 @@ "x-appwrite": { "method": "getPrefs", "group": "users", - "weight": 72, "cookies": false, "type": "", "demo": "users\/get-prefs.md", @@ -54883,7 +55115,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "users", - "weight": 88, "cookies": false, "type": "", "demo": "users\/update-prefs.md", @@ -54966,7 +55197,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 74, "cookies": false, "type": "", "demo": "users\/list-sessions.md", @@ -55042,7 +55272,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 96, "cookies": false, "type": "", "demo": "users\/create-session.md", @@ -55100,7 +55329,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 99, "cookies": false, "type": "", "demo": "users\/delete-sessions.md", @@ -55160,7 +55388,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 98, "cookies": false, "type": "", "demo": "users\/delete-session.md", @@ -55237,7 +55464,6 @@ "x-appwrite": { "method": "updateStatus", "group": "users", - "weight": 79, "cookies": false, "type": "", "demo": "users\/update-status.md", @@ -55320,7 +55546,6 @@ "x-appwrite": { "method": "listTargets", "group": "targets", - "weight": 77, "cookies": false, "type": "", "demo": "users\/list-targets.md", @@ -55406,7 +55631,6 @@ "x-appwrite": { "method": "createTarget", "group": "targets", - "weight": 69, "cookies": false, "type": "", "demo": "users\/create-target.md", @@ -55464,8 +55688,7 @@ "sms", "push" ], - "x-enum-name": "MessagingProviderType", - "x-enum-keys": [] + "x-enum-name": "MessagingProviderType" }, "identifier": { "type": "string", @@ -55475,11 +55698,13 @@ "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", + "default": "", "x-example": "<PROVIDER_ID>" }, "name": { "type": "string", "description": "Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.", + "default": "", "x-example": "<NAME>" } }, @@ -55518,7 +55743,6 @@ "x-appwrite": { "method": "getTarget", "group": "targets", - "weight": 73, "cookies": false, "type": "", "demo": "users\/get-target.md", @@ -55590,7 +55814,6 @@ "x-appwrite": { "method": "updateTarget", "group": "targets", - "weight": 89, "cookies": false, "type": "", "demo": "users\/update-target.md", @@ -55647,16 +55870,19 @@ "identifier": { "type": "string", "description": "The target identifier (token, email, phone etc.)", + "default": "", "x-example": "<IDENTIFIER>" }, "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", + "default": "", "x-example": "<PROVIDER_ID>" }, "name": { "type": "string", "description": "Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.", + "default": "", "x-example": "<NAME>" } } @@ -55681,7 +55907,6 @@ "x-appwrite": { "method": "deleteTarget", "group": "targets", - "weight": 101, "cookies": false, "type": "", "demo": "users\/delete-target.md", @@ -55755,7 +55980,6 @@ "x-appwrite": { "method": "createToken", "group": "sessions", - "weight": 97, "cookies": false, "type": "", "demo": "users\/create-token.md", @@ -55802,12 +56026,14 @@ "length": { "type": "integer", "description": "Token length in characters. The default length is 6 characters", + "default": 6, "x-example": 4, "format": "int32" }, "expire": { "type": "integer", "description": "Token expiration period in seconds. The default expiration is 15 minutes.", + "default": 900, "x-example": 60, "format": "int32" } @@ -55842,7 +56068,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "users", - "weight": 87, "cookies": false, "type": "", "demo": "users\/update-email-verification.md", @@ -55925,7 +56150,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "users", - "weight": 82, "cookies": false, "type": "", "demo": "users\/update-phone-verification.md", @@ -56008,7 +56232,6 @@ "x-appwrite": { "method": "list", "group": "vectorsdb", - "weight": 924, "cookies": false, "type": "", "demo": "vectorsdb\/list.md", @@ -56084,7 +56307,6 @@ "x-appwrite": { "method": "create", "group": "vectorsdb", - "weight": 925, "cookies": false, "type": "", "demo": "vectorsdb\/create.md", @@ -56129,6 +56351,7 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -56166,7 +56389,6 @@ "x-appwrite": { "method": "createTextEmbeddings", "group": "documents", - "weight": 911, "cookies": false, "type": "", "demo": "vectorsdb\/create-text-embeddings.md", @@ -56238,12 +56460,12 @@ "model": { "type": "string", "description": "The embedding model to use for generating vector embeddings.", + "default": "embeddinggemma", "x-example": "embeddinggemma", "enum": [ "embeddinggemma" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "EmbeddingModel" } }, "required": [ @@ -56279,7 +56501,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 916, "cookies": false, "type": "", "demo": "vectorsdb\/list-transactions.md", @@ -56348,7 +56569,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 912, "cookies": false, "type": "", "demo": "vectorsdb\/create-transaction.md", @@ -56387,6 +56607,7 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", + "default": 300, "x-example": 60, "format": "int32" } @@ -56421,7 +56642,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 913, "cookies": false, "type": "", "demo": "vectorsdb\/get-transaction.md", @@ -56487,7 +56707,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 914, "cookies": false, "type": "", "demo": "vectorsdb\/update-transaction.md", @@ -56538,11 +56757,13 @@ "commit": { "type": "boolean", "description": "Commit transaction?", + "default": false, "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", + "default": false, "x-example": false } } @@ -56567,7 +56788,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 915, "cookies": false, "type": "", "demo": "vectorsdb\/delete-transaction.md", @@ -56635,7 +56855,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 917, "cookies": false, "type": "", "demo": "vectorsdb\/create-operations.md", @@ -56686,6 +56905,7 @@ "operations": { "type": "array", "description": "Array of staged operations.", + "default": [], "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" @@ -56722,7 +56942,6 @@ "x-appwrite": { "method": "get", "group": "vectorsdb", - "weight": 886, "cookies": false, "type": "", "demo": "vectorsdb\/get.md", @@ -56784,7 +57003,6 @@ "x-appwrite": { "method": "update", "group": "vectorsdb", - "weight": 887, "cookies": false, "type": "", "demo": "vectorsdb\/update.md", @@ -56836,6 +57054,7 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -56863,7 +57082,6 @@ "x-appwrite": { "method": "delete", "group": "vectorsdb", - "weight": 926, "cookies": false, "type": "", "demo": "vectorsdb\/delete.md", @@ -56927,7 +57145,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 896, "cookies": false, "type": "", "demo": "vectorsdb\/list-collections.md", @@ -57024,7 +57241,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 892, "cookies": false, "type": "", "demo": "vectorsdb\/create-collection.md", @@ -57095,11 +57311,13 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -57138,7 +57356,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 893, "cookies": false, "type": "", "demo": "vectorsdb\/get-collection.md", @@ -57210,7 +57427,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 894, "cookies": false, "type": "", "demo": "vectorsdb\/update-collection.md", @@ -57286,11 +57502,13 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", + "default": false, "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", + "default": true, "x-example": false } }, @@ -57318,7 +57536,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 895, "cookies": false, "type": "", "demo": "vectorsdb\/delete-collection.md", @@ -57392,7 +57609,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 906, "cookies": false, "type": "", "demo": "vectorsdb\/list-documents.md", @@ -57514,7 +57730,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 902, "cookies": false, "type": "", "demo": "vectorsdb\/create-document.md", @@ -57636,11 +57851,13 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "default": "", "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", + "default": {}, "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }" }, "permissions": { @@ -57654,6 +57871,7 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", + "default": [], "x-example": null, "items": { "type": "object" @@ -57693,7 +57911,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 909, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-documents.md", @@ -57823,7 +58040,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 908, "cookies": false, "type": "", "demo": "vectorsdb\/update-documents.md", @@ -57880,11 +58096,13 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -57924,7 +58142,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 910, "cookies": false, "type": "", "demo": "vectorsdb\/delete-documents.md", @@ -57981,6 +58198,7 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", + "default": [], "x-example": null, "items": { "type": "string" @@ -58022,7 +58240,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 905, "cookies": false, "type": "", "demo": "vectorsdb\/get-document.md", @@ -58131,7 +58348,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 904, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-document.md", @@ -58235,6 +58451,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -58279,7 +58496,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 903, "cookies": false, "type": "", "demo": "vectorsdb\/update-document.md", @@ -58350,6 +58566,7 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", + "default": {}, "x-example": "{}" }, "permissions": { @@ -58387,7 +58604,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 907, "cookies": false, "type": "", "demo": "vectorsdb\/delete-document.md", @@ -58491,7 +58707,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 901, "cookies": false, "type": "", "demo": "vectorsdb\/list-indexes.md", @@ -58587,7 +58802,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 898, "cookies": false, "type": "", "demo": "vectorsdb\/create-index.md", @@ -58658,8 +58872,7 @@ "key", "unique" ], - "x-enum-name": "VectorsDBIndexType", - "x-enum-keys": [] + "x-enum-name": "VectorsDBIndexType" }, "attributes": { "type": "array", @@ -58672,6 +58885,7 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", + "default": [], "x-example": null, "items": { "type": "string", @@ -58679,13 +58893,13 @@ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", + "default": [], "x-example": null, "items": { "type": "integer" @@ -58727,7 +58941,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 899, "cookies": false, "type": "", "demo": "vectorsdb\/get-index.md", @@ -58801,7 +59014,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 900, "cookies": false, "type": "", "demo": "vectorsdb\/delete-index.md", @@ -58884,7 +59096,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 578, "cookies": false, "type": "", "demo": "webhooks\/list.md", @@ -58959,7 +59170,6 @@ "x-appwrite": { "method": "create", "group": null, - "weight": 577, "cookies": false, "type": "", "demo": "webhooks\/create.md", @@ -59016,21 +59226,25 @@ "enabled": { "type": "boolean", "description": "Enable or disable a webhook.", + "default": true, "x-example": false }, "tls": { "type": "boolean", "description": "Certificate verification, false for disabled or true for enabled.", + "default": false, "x-example": false }, "authUsername": { "type": "string", "description": "Webhook HTTP user. Max length: 256 chars.", + "default": "", "x-example": "<AUTH_USERNAME>" }, "authPassword": { "type": "string", "description": "Webhook HTTP password. Max length: 256 chars.", + "default": "", "x-example": "<AUTH_PASSWORD>" }, "secret": { @@ -59076,7 +59290,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 579, "cookies": false, "type": "", "demo": "webhooks\/get.md", @@ -59137,7 +59350,6 @@ "x-appwrite": { "method": "update", "group": null, - "weight": 581, "cookies": false, "type": "", "demo": "webhooks\/update.md", @@ -59201,21 +59413,25 @@ "enabled": { "type": "boolean", "description": "Enable or disable a webhook.", + "default": true, "x-example": false }, "tls": { "type": "boolean", "description": "Certificate verification, false for disabled or true for enabled.", + "default": false, "x-example": false }, "authUsername": { "type": "string", "description": "Webhook HTTP user. Max length: 256 chars.", + "default": "", "x-example": "<AUTH_USERNAME>" }, "authPassword": { "type": "string", "description": "Webhook HTTP password. Max length: 256 chars.", + "default": "", "x-example": "<AUTH_PASSWORD>" } }, @@ -59245,7 +59461,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 580, "cookies": false, "type": "", "demo": "webhooks\/delete.md", @@ -59308,7 +59523,6 @@ "x-appwrite": { "method": "updateSecret", "group": null, - "weight": 582, "cookies": false, "type": "", "demo": "webhooks\/update-secret.md", @@ -60133,6 +60347,34 @@ "executions": "" } }, + "projectList": { + "description": "Projects List", + "type": "object", + "properties": { + "total": { + "type": "integer", + "description": "Total number of projects that matched your query.", + "x-example": 5, + "format": "int32" + }, + "projects": { + "type": "array", + "description": "List of projects.", + "items": { + "$ref": "#\/components\/schemas\/project" + }, + "x-example": "" + } + }, + "required": [ + "total", + "projects" + ], + "example": { + "total": 5, + "projects": "" + } + }, "webhookList": { "description": "Webhooks List", "type": "object", @@ -67596,6 +67838,28 @@ "description": "Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests", "x-example": false }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all branches.", + "items": { + "type": "string" + }, + "x-example": [ + "main", + "feat\/*" + ] + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all file changes.", + "items": { + "type": "string" + }, + "x-example": [ + "src\/**", + "!docs\/**" + ] + }, "buildSpecification": { "type": "string", "description": "Machine specification for deployment builds.", @@ -67650,6 +67914,8 @@ "providerBranch", "providerRootDirectory", "providerSilentMode", + "providerBranches", + "providerPaths", "buildSpecification", "runtimeSpecification", "buildRuntime", @@ -67684,6 +67950,14 @@ "providerBranch": "main", "providerRootDirectory": "sites\/helloWorld", "providerSilentMode": false, + "providerBranches": [ + "main", + "feat\/*" + ], + "providerPaths": [ + "src\/**", + "!docs\/**" + ], "buildSpecification": "s-1vcpu-512mb", "runtimeSpecification": "s-1vcpu-512mb", "buildRuntime": "node-22", @@ -67849,6 +68123,28 @@ "description": "Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests", "x-example": false }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all branches.", + "items": { + "type": "string" + }, + "x-example": [ + "main", + "feat\/*" + ] + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all file changes.", + "items": { + "type": "string" + }, + "x-example": [ + "src\/**", + "!docs\/**" + ] + }, "buildSpecification": { "type": "string", "description": "Machine specification for deployment builds.", @@ -67889,6 +68185,8 @@ "providerBranch", "providerRootDirectory", "providerSilentMode", + "providerBranches", + "providerPaths", "buildSpecification", "runtimeSpecification" ], @@ -67921,6 +68219,14 @@ "providerBranch": "main", "providerRootDirectory": "functions\/helloWorld", "providerSilentMode": false, + "providerBranches": [ + "main", + "feat\/*" + ], + "providerPaths": [ + "src\/**", + "!docs\/**" + ], "buildSpecification": "s-1vcpu-512mb", "runtimeSpecification": "s-1vcpu-512mb" } @@ -73261,24 +73567,24 @@ "description": "Event ID.", "x-example": "5e5ea5c16897e" }, - "userType": { + "actorType": { "type": "string", - "description": "User type.", + "description": "Actor type.", "x-example": "user" }, - "userId": { + "actorId": { "type": "string", - "description": "User ID.", + "description": "Actor ID.", "x-example": "610fc2f985ee0" }, - "userEmail": { + "actorEmail": { "type": "string", - "description": "User Email.", + "description": "Actor Email.", "x-example": "john@appwrite.io" }, - "userName": { + "actorName": { "type": "string", - "description": "User Name.", + "description": "Actor Name.", "x-example": "John Doe" }, "resourceParent": { @@ -73419,10 +73725,10 @@ }, "required": [ "$id", - "userType", - "userId", - "userEmail", - "userName", + "actorType", + "actorId", + "actorEmail", + "actorName", "resourceParent", "resourceType", "resourceId", @@ -73453,10 +73759,10 @@ ], "example": { "$id": "5e5ea5c16897e", - "userType": "user", - "userId": "610fc2f985ee0", - "userEmail": "john@appwrite.io", - "userName": "John Doe", + "actorType": "user", + "actorId": "610fc2f985ee0", + "actorEmail": "john@appwrite.io", + "actorName": "John Doe", "resourceParent": "database\/ID", "resourceType": "collection", "resourceId": "610fc2f985ee0", diff --git a/specs/1.9.x/swagger2-1.9.x-client.json b/specs/1.9.x/swagger2-1.9.x-client.json index e691f40a4..b97ecaf3b 100644 --- a/specs/1.9.x/swagger2-1.9.x-client.json +++ b/specs/1.9.x/swagger2-1.9.x-client.json @@ -17,9 +17,6 @@ }, "host": "cloud.appwrite.io", "x-host-docs": "<REGION>.cloud.appwrite.io", - "x-appwrite": { - "endpointDocs": "https:\/\/<REGION>.cloud.appwrite.io\/v1" - }, "basePath": "\/v1", "schemes": [ "https" @@ -121,7 +118,6 @@ "x-appwrite": { "method": "get", "group": "account", - "weight": 9, "cookies": false, "type": "", "demo": "account\/get.md", @@ -174,7 +170,6 @@ "x-appwrite": { "method": "create", "group": "account", - "weight": 8, "cookies": false, "type": "", "demo": "account\/create.md", @@ -227,8 +222,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -267,7 +262,6 @@ "x-appwrite": { "method": "updateEmail", "group": "account", - "weight": 34, "cookies": false, "type": "", "demo": "account\/update-email.md", @@ -347,7 +341,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 47, "cookies": false, "type": "", "demo": "account\/list-identities.md", @@ -420,7 +413,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 48, "cookies": false, "type": "", "demo": "account\/delete-identity.md", @@ -485,7 +477,6 @@ "x-appwrite": { "method": "createJWT", "group": "tokens", - "weight": 29, "cookies": false, "type": "", "demo": "account\/create-jwt.md", @@ -522,8 +513,8 @@ "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", - "x-example": 0, "default": 900, + "x-example": 0, "format": "int32" } } @@ -556,7 +547,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 31, "cookies": false, "type": "", "demo": "account\/list-logs.md", @@ -634,7 +624,6 @@ "x-appwrite": { "method": "updateMFA", "group": "mfa", - "weight": 165, "cookies": false, "type": "", "demo": "account\/update-mfa.md", @@ -708,7 +697,6 @@ "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", - "weight": 167, "cookies": false, "type": "", "demo": "account\/create-mfa-authenticator.md", @@ -802,7 +790,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" } ] @@ -832,7 +819,6 @@ "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", - "weight": 168, "cookies": false, "type": "", "demo": "account\/update-mfa-authenticator.md", @@ -930,7 +916,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" }, { @@ -972,7 +957,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 169, "cookies": false, "type": "", "demo": "account\/delete-mfa-authenticator.md", @@ -1064,7 +1048,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" } ] @@ -1096,7 +1079,6 @@ "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", - "weight": 173, "cookies": false, "type": "", "demo": "account\/create-mfa-challenge.md", @@ -1196,8 +1178,7 @@ "totp", "recoverycode" ], - "x-enum-name": "AuthenticationFactor", - "x-enum-keys": [] + "x-enum-name": "AuthenticationFactor" } }, "required": [ @@ -1232,7 +1213,6 @@ "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", - "weight": 174, "cookies": false, "type": "", "demo": "account\/update-mfa-challenge.md", @@ -1370,7 +1350,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 166, "cookies": false, "type": "", "demo": "account\/list-mfa-factors.md", @@ -1471,7 +1450,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 172, "cookies": false, "type": "", "demo": "account\/get-mfa-recovery-codes.md", @@ -1572,7 +1550,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 170, "cookies": false, "type": "", "demo": "account\/create-mfa-recovery-codes.md", @@ -1673,7 +1650,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 171, "cookies": false, "type": "", "demo": "account\/update-mfa-recovery-codes.md", @@ -1776,7 +1752,6 @@ "x-appwrite": { "method": "updateName", "group": "account", - "weight": 32, "cookies": false, "type": "", "demo": "account\/update-name.md", @@ -1850,7 +1825,6 @@ "x-appwrite": { "method": "updatePassword", "group": "account", - "weight": 33, "cookies": false, "type": "", "demo": "account\/update-password.md", @@ -1892,8 +1866,8 @@ "oldPassword": { "type": "string", "description": "Current user password. Must be at least 8 chars.", - "x-example": "password", "default": "", + "x-example": "password", "format": "password" } }, @@ -1931,7 +1905,6 @@ "x-appwrite": { "method": "updatePhone", "group": "account", - "weight": 35, "cookies": false, "type": "", "demo": "account\/update-phone.md", @@ -2011,7 +1984,6 @@ "x-appwrite": { "method": "getPrefs", "group": "account", - "weight": 30, "cookies": false, "type": "", "demo": "account\/get-prefs.md", @@ -2064,7 +2036,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "account", - "weight": 36, "cookies": false, "type": "", "demo": "account\/update-prefs.md", @@ -2101,8 +2072,8 @@ "prefs": { "type": "object", "description": "Prefs key-value JSON object.", - "x-example": "{\"language\":\"en\",\"timezone\":\"UTC\",\"darkTheme\":true}", - "default": {} + "default": {}, + "x-example": "{\"language\":\"en\",\"timezone\":\"UTC\",\"darkTheme\":true}" } }, "required": [ @@ -2139,7 +2110,6 @@ "x-appwrite": { "method": "createRecovery", "group": "recovery", - "weight": 38, "cookies": false, "type": "", "demo": "account\/create-recovery.md", @@ -2222,7 +2192,6 @@ "x-appwrite": { "method": "updateRecovery", "group": "recovery", - "weight": 39, "cookies": false, "type": "", "demo": "account\/update-recovery.md", @@ -2306,7 +2275,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 11, "cookies": false, "type": "", "demo": "account\/list-sessions.md", @@ -2354,7 +2322,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 12, "cookies": false, "type": "", "demo": "account\/delete-sessions.md", @@ -2409,7 +2376,6 @@ "x-appwrite": { "method": "createAnonymousSession", "group": "sessions", - "weight": 17, "cookies": false, "type": "", "demo": "account\/create-anonymous-session.md", @@ -2464,7 +2430,6 @@ "x-appwrite": { "method": "createEmailPasswordSession", "group": "sessions", - "weight": 16, "cookies": false, "type": "", "demo": "account\/create-email-password-session.md", @@ -2546,7 +2511,6 @@ "x-appwrite": { "method": "updateMagicURLSession", "group": "sessions", - "weight": 26, "cookies": false, "type": "", "demo": "account\/update-magic-url-session.md", @@ -2625,7 +2589,6 @@ "x-appwrite": { "method": "createOAuth2Session", "group": "sessions", - "weight": 19, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-session.md", @@ -2705,7 +2668,6 @@ "zoom" ], "x-enum-name": "OAuthProvider", - "x-enum-keys": [], "in": "path" }, { @@ -2769,7 +2731,6 @@ "x-appwrite": { "method": "updatePhoneSession", "group": "sessions", - "weight": 27, "cookies": false, "type": "", "demo": "account\/update-phone-session.md", @@ -2853,7 +2814,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 18, "cookies": false, "type": "", "demo": "account\/create-session.md", @@ -2931,7 +2891,6 @@ "x-appwrite": { "method": "getSession", "group": "sessions", - "weight": 13, "cookies": false, "type": "", "demo": "account\/get-session.md", @@ -2994,7 +2953,6 @@ "x-appwrite": { "method": "updateSession", "group": "sessions", - "weight": 15, "cookies": false, "type": "", "demo": "account\/update-session.md", @@ -3052,7 +3010,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 14, "cookies": false, "type": "", "demo": "account\/delete-session.md", @@ -3117,7 +3074,6 @@ "x-appwrite": { "method": "updateStatus", "group": "account", - "weight": 37, "cookies": false, "type": "", "demo": "account\/update-status.md", @@ -3172,7 +3128,6 @@ "x-appwrite": { "method": "createPushTarget", "group": "pushTargets", - "weight": 44, "cookies": false, "type": "", "demo": "account\/create-push-target.md", @@ -3182,8 +3137,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -3195,8 +3149,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -3219,8 +3172,8 @@ "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", - "x-example": "<PROVIDER_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ID>" } }, "required": [ @@ -3258,7 +3211,6 @@ "x-appwrite": { "method": "updatePushTarget", "group": "pushTargets", - "weight": 45, "cookies": false, "type": "", "demo": "account\/update-push-target.md", @@ -3268,8 +3220,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -3281,8 +3232,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -3333,7 +3283,6 @@ "x-appwrite": { "method": "deletePushTarget", "group": "pushTargets", - "weight": 46, "cookies": false, "type": "", "demo": "account\/delete-push-target.md", @@ -3343,8 +3292,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -3356,8 +3304,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -3398,7 +3345,6 @@ "x-appwrite": { "method": "createEmailToken", "group": "tokens", - "weight": 25, "cookies": false, "type": "", "demo": "account\/create-email-token.md", @@ -3449,8 +3395,8 @@ "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -3488,7 +3434,6 @@ "x-appwrite": { "method": "createMagicURLToken", "group": "tokens", - "weight": 24, "cookies": false, "type": "", "demo": "account\/create-magic-url-token.md", @@ -3539,15 +3484,15 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the magic URL login. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "x-example": "https:\/\/example.com", "default": "", + "x-example": "https:\/\/example.com", "format": "url" }, "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -3580,7 +3525,6 @@ "x-appwrite": { "method": "createOAuth2Token", "group": "tokens", - "weight": 23, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-token.md", @@ -3660,7 +3604,6 @@ "zoom" ], "x-enum-name": "OAuthProvider", - "x-enum-keys": [], "in": "path" }, { @@ -3724,7 +3667,6 @@ "x-appwrite": { "method": "createPhoneToken", "group": "tokens", - "weight": 28, "cookies": false, "type": "", "demo": "account\/create-phone-token.md", @@ -3808,7 +3750,6 @@ "x-appwrite": { "method": "createEmailVerification", "group": "verification", - "weight": 40, "cookies": false, "type": "", "demo": "account\/create-email-verification.md", @@ -3933,7 +3874,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "verification", - "weight": 41, "cookies": false, "type": "", "demo": "account\/update-email-verification.md", @@ -4069,7 +4009,6 @@ "x-appwrite": { "method": "createPhoneVerification", "group": "verification", - "weight": 42, "cookies": false, "type": "", "demo": "account\/create-phone-verification.md", @@ -4125,7 +4064,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "verification", - "weight": 43, "cookies": false, "type": "", "demo": "account\/update-phone-verification.md", @@ -4203,7 +4141,6 @@ "x-appwrite": { "method": "getBrowser", "group": null, - "weight": 176, "cookies": false, "type": "location", "demo": "avatars\/get-browser.md", @@ -4329,7 +4266,6 @@ "x-appwrite": { "method": "getCreditCard", "group": null, - "weight": 175, "cookies": false, "type": "location", "demo": "avatars\/get-credit-card.md", @@ -4461,7 +4397,6 @@ "x-appwrite": { "method": "getFavicon", "group": null, - "weight": 179, "cookies": false, "type": "location", "demo": "avatars\/get-favicon.md", @@ -4525,7 +4460,6 @@ "x-appwrite": { "method": "getFlag", "group": null, - "weight": 177, "cookies": false, "type": "location", "demo": "avatars\/get-flag.md", @@ -5013,7 +4947,6 @@ "x-appwrite": { "method": "getImage", "group": null, - "weight": 178, "cookies": false, "type": "location", "demo": "avatars\/get-image.md", @@ -5097,7 +5030,6 @@ "x-appwrite": { "method": "getInitials", "group": null, - "weight": 181, "cookies": false, "type": "location", "demo": "avatars\/get-initials.md", @@ -5189,7 +5121,6 @@ "x-appwrite": { "method": "getQR", "group": null, - "weight": 180, "cookies": false, "type": "location", "demo": "avatars\/get-qr.md", @@ -5281,7 +5212,6 @@ "x-appwrite": { "method": "getScreenshot", "group": null, - "weight": 182, "cookies": false, "type": "location", "demo": "avatars\/get-screenshot.md", @@ -5367,8 +5297,7 @@ "light", "dark" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "BrowserTheme", "default": "light", "in": "query" }, @@ -5826,8 +5755,7 @@ "pacific\/wallis", "utc" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "Timezone", "in": "query" }, { @@ -5899,8 +5827,7 @@ "web-share", "xr-spatial-tracking" ], - "x-enum-name": "BrowserPermission", - "x-enum-keys": [] + "x-enum-name": "BrowserPermission" }, "x-example": "[\"geolocation\",\"notifications\"]", "default": [], @@ -5962,7 +5889,6 @@ "gif" ], "x-enum-name": "ImageFormat", - "x-enum-keys": [], "in": "query" } ] @@ -5992,7 +5918,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 774, "cookies": false, "type": "", "demo": "databases\/list-transactions.md", @@ -6059,7 +5984,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 770, "cookies": false, "type": "", "demo": "databases\/create-transaction.md", @@ -6096,8 +6020,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -6130,7 +6054,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 771, "cookies": false, "type": "", "demo": "databases\/get-transaction.md", @@ -6193,7 +6116,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 772, "cookies": false, "type": "", "demo": "databases\/update-transaction.md", @@ -6238,14 +6160,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -6272,7 +6194,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 773, "cookies": false, "type": "", "demo": "databases\/delete-transaction.md", @@ -6337,7 +6258,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 775, "cookies": false, "type": "", "demo": "databases\/create-operations.md", @@ -6382,8 +6302,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -6418,7 +6338,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 918, "cookies": false, "type": "", "demo": "databases\/list-documents.md", @@ -6532,7 +6451,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 715, "cookies": false, "type": "", "demo": "databases\/create-document.md", @@ -6626,14 +6544,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -6647,8 +6565,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -6689,7 +6607,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 716, "cookies": false, "type": "", "demo": "databases\/get-document.md", @@ -6792,7 +6709,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 719, "cookies": false, "type": "", "demo": "databases\/upsert-document.md", @@ -6893,8 +6809,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required attributes of the document to be created or updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -6941,7 +6857,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 717, "cookies": false, "type": "", "demo": "databases\/update-document.md", @@ -7006,8 +6921,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -7049,7 +6964,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 721, "cookies": false, "type": "", "demo": "databases\/delete-document.md", @@ -7149,7 +7063,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 726, "cookies": false, "type": "", "demo": "databases\/decrement-document-attribute.md", @@ -7221,8 +7134,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -7270,7 +7183,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 725, "cookies": false, "type": "", "demo": "databases\/increment-document-attribute.md", @@ -7342,8 +7254,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -7389,7 +7301,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 883, "cookies": false, "type": "", "demo": "documentsdb\/list-transactions.md", @@ -7456,7 +7367,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 879, "cookies": false, "type": "", "demo": "documentsdb\/create-transaction.md", @@ -7493,8 +7403,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -7527,7 +7437,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 880, "cookies": false, "type": "", "demo": "documentsdb\/get-transaction.md", @@ -7590,7 +7499,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 881, "cookies": false, "type": "", "demo": "documentsdb\/update-transaction.md", @@ -7635,14 +7543,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -7669,7 +7577,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 882, "cookies": false, "type": "", "demo": "documentsdb\/delete-transaction.md", @@ -7734,7 +7641,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 884, "cookies": false, "type": "", "demo": "documentsdb\/create-operations.md", @@ -7778,8 +7684,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -7814,7 +7720,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 921, "cookies": false, "type": "", "demo": "documentsdb\/list-documents.md", @@ -7924,7 +7829,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 868, "cookies": false, "type": "", "demo": "documentsdb\/create-document.md", @@ -8036,14 +7940,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -8056,8 +7960,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -8097,7 +8001,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 869, "cookies": false, "type": "", "demo": "documentsdb\/get-document.md", @@ -8196,7 +8099,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 872, "cookies": false, "type": "", "demo": "documentsdb\/upsert-document.md", @@ -8289,8 +8191,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -8335,7 +8237,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 870, "cookies": false, "type": "", "demo": "documentsdb\/update-document.md", @@ -8396,8 +8297,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -8437,7 +8338,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 874, "cookies": false, "type": "", "demo": "documentsdb\/delete-document.md", @@ -8532,7 +8432,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 878, "cookies": false, "type": "", "demo": "documentsdb\/decrement-document-attribute.md", @@ -8600,8 +8499,8 @@ "value": { "type": "number", "description": "Value to decrement the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -8647,7 +8546,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 877, "cookies": false, "type": "", "demo": "documentsdb\/increment-document-attribute.md", @@ -8715,8 +8613,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -8760,7 +8658,6 @@ "x-appwrite": { "method": "listExecutions", "group": "executions", - "weight": 441, "cookies": false, "type": "", "demo": "functions\/list-executions.md", @@ -8846,7 +8743,6 @@ "x-appwrite": { "method": "createExecution", "group": "executions", - "weight": 439, "cookies": false, "type": "", "demo": "functions\/create-execution.md", @@ -8893,26 +8789,26 @@ "body": { "type": "string", "description": "HTTP body of execution. Default value is empty string.", - "x-example": "<BODY>", - "default": "" + "default": "", + "x-example": "<BODY>" }, "async": { "type": "boolean", "description": "Execute code in the background. Default value is false.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "path": { "type": "string", "description": "HTTP path of execution. Path can include query params. Default value is \/", - "x-example": "<PATH>", - "default": "\/" + "default": "\/", + "x-example": "<PATH>" }, "method": { "type": "string", "description": "HTTP method of execution. Default value is POST.", - "x-example": "GET", "default": "POST", + "x-example": "GET", "enum": [ "GET", "POST", @@ -8922,14 +8818,13 @@ "OPTIONS", "HEAD" ], - "x-enum-name": "ExecutionMethod", - "x-enum-keys": [] + "x-enum-name": "ExecutionMethod" }, "headers": { "type": "object", "description": "HTTP headers of execution. Defaults to empty.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "scheduledAt": { "type": "string", @@ -8967,7 +8862,6 @@ "x-appwrite": { "method": "getExecution", "group": "executions", - "weight": 440, "cookies": false, "type": "", "demo": "functions\/get-execution.md", @@ -9042,7 +8936,6 @@ "x-appwrite": { "method": "query", "group": "graphql", - "weight": 116, "cookies": false, "type": "graphql", "demo": "graphql\/query.md", @@ -9079,8 +8972,8 @@ "query": { "type": "object", "description": "The query or queries to execute.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -9117,7 +9010,6 @@ "x-appwrite": { "method": "mutation", "group": "graphql", - "weight": 115, "cookies": false, "type": "graphql", "demo": "graphql\/mutation.md", @@ -9154,8 +9046,8 @@ "query": { "type": "object", "description": "The query or queries to execute.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -9190,7 +9082,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 49, "cookies": false, "type": "", "demo": "locale\/get.md", @@ -9243,7 +9134,6 @@ "x-appwrite": { "method": "listCodes", "group": null, - "weight": 50, "cookies": false, "type": "", "demo": "locale\/list-codes.md", @@ -9296,7 +9186,6 @@ "x-appwrite": { "method": "listContinents", "group": null, - "weight": 54, "cookies": false, "type": "", "demo": "locale\/list-continents.md", @@ -9349,7 +9238,6 @@ "x-appwrite": { "method": "listCountries", "group": null, - "weight": 51, "cookies": false, "type": "", "demo": "locale\/list-countries.md", @@ -9402,7 +9290,6 @@ "x-appwrite": { "method": "listCountriesEU", "group": null, - "weight": 52, "cookies": false, "type": "", "demo": "locale\/list-countries-eu.md", @@ -9455,7 +9342,6 @@ "x-appwrite": { "method": "listCountriesPhones", "group": null, - "weight": 53, "cookies": false, "type": "", "demo": "locale\/list-countries-phones.md", @@ -9508,7 +9394,6 @@ "x-appwrite": { "method": "listCurrencies", "group": null, - "weight": 55, "cookies": false, "type": "", "demo": "locale\/list-currencies.md", @@ -9561,7 +9446,6 @@ "x-appwrite": { "method": "listLanguages", "group": null, - "weight": 56, "cookies": false, "type": "", "demo": "locale\/list-languages.md", @@ -9616,7 +9500,6 @@ "x-appwrite": { "method": "createSubscriber", "group": "subscribers", - "weight": 149, "cookies": false, "type": "", "demo": "messaging\/create-subscriber.md", @@ -9699,7 +9582,6 @@ "x-appwrite": { "method": "deleteSubscriber", "group": "subscribers", - "weight": 153, "cookies": false, "type": "", "demo": "messaging\/delete-subscriber.md", @@ -9770,7 +9652,6 @@ "x-appwrite": { "method": "list", "group": "presences", - "weight": 419, "cookies": false, "type": "", "demo": "presences\/list.md", @@ -9856,7 +9737,6 @@ "x-appwrite": { "method": "get", "group": "presences", - "weight": 418, "cookies": false, "type": "", "demo": "presences\/get.md", @@ -9919,7 +9799,6 @@ "x-appwrite": { "method": "upsert", "group": "presences", - "weight": 416, "cookies": false, "type": "", "demo": "presences\/upsert.md", @@ -10015,8 +9894,8 @@ "metadata": { "type": "object", "description": "Presence metadata object.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" } }, "required": [ @@ -10051,7 +9930,6 @@ "x-appwrite": { "method": "update", "group": "presences", - "weight": 420, "cookies": false, "type": "", "demo": "presences\/update.md", @@ -10139,8 +10017,8 @@ "metadata": { "type": "object", "description": "Presence metadata object.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" }, "permissions": { "type": "array", @@ -10153,8 +10031,8 @@ "purge": { "type": "boolean", "description": "When true, purge cached responses used by list presences endpoint.", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -10181,7 +10059,6 @@ "x-appwrite": { "method": "delete", "group": "presences", - "weight": 421, "cookies": false, "type": "", "demo": "presences\/delete.md", @@ -10244,7 +10121,6 @@ "x-appwrite": { "method": "listFiles", "group": "files", - "weight": 555, "cookies": false, "type": "", "demo": "storage\/list-files.md", @@ -10337,7 +10213,6 @@ "x-appwrite": { "method": "createFile", "group": "files", - "weight": 1260, "cookies": false, "type": "upload", "demo": "storage\/create-file.md", @@ -10428,7 +10303,6 @@ "x-appwrite": { "method": "getFile", "group": "files", - "weight": 554, "cookies": false, "type": "", "demo": "storage\/get-file.md", @@ -10499,7 +10373,6 @@ "x-appwrite": { "method": "updateFile", "group": "files", - "weight": 556, "cookies": false, "type": "", "demo": "storage\/update-file.md", @@ -10588,7 +10461,6 @@ "x-appwrite": { "method": "deleteFile", "group": "files", - "weight": 557, "cookies": false, "type": "", "demo": "storage\/delete-file.md", @@ -10659,7 +10531,6 @@ "x-appwrite": { "method": "getFileDownload", "group": "files", - "weight": 559, "cookies": false, "type": "location", "demo": "storage\/get-file-download.md", @@ -10739,7 +10610,6 @@ "x-appwrite": { "method": "getFilePreview", "group": "files", - "weight": 558, "cookies": false, "type": "location", "demo": "storage\/get-file-preview.md", @@ -10821,7 +10691,6 @@ "bottom-right" ], "x-enum-name": "ImageGravity", - "x-enum-keys": [], "default": "center", "in": "query" }, @@ -10907,7 +10776,6 @@ "gif" ], "x-enum-name": "ImageFormat", - "x-enum-keys": [], "in": "query" }, { @@ -10946,7 +10814,6 @@ "x-appwrite": { "method": "getFileView", "group": "files", - "weight": 560, "cookies": false, "type": "location", "demo": "storage\/get-file-view.md", @@ -11026,7 +10893,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 849, "cookies": false, "type": "", "demo": "tablesdb\/list-transactions.md", @@ -11096,7 +10962,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 845, "cookies": false, "type": "", "demo": "tablesdb\/create-transaction.md", @@ -11136,8 +11001,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -11170,7 +11035,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 846, "cookies": false, "type": "", "demo": "tablesdb\/get-transaction.md", @@ -11236,7 +11100,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 847, "cookies": false, "type": "", "demo": "tablesdb\/update-transaction.md", @@ -11284,14 +11147,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -11318,7 +11181,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 848, "cookies": false, "type": "", "demo": "tablesdb\/delete-transaction.md", @@ -11386,7 +11248,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 850, "cookies": false, "type": "", "demo": "tablesdb\/create-operations.md", @@ -11434,8 +11295,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"tableId\": \"<TABLE_ID>\",\n\t \"rowId\": \"<ROW_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"tableId\": \"<TABLE_ID>\",\n\t \"rowId\": \"<ROW_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -11470,7 +11331,6 @@ "x-appwrite": { "method": "listRows", "group": "rows", - "weight": 919, "cookies": false, "type": "", "demo": "tablesdb\/list-rows.md", @@ -11583,7 +11443,6 @@ "x-appwrite": { "method": "createRow", "group": "rows", - "weight": 833, "cookies": false, "type": "", "demo": "tablesdb\/create-row.md", @@ -11672,14 +11531,14 @@ "rowId": { "type": "string", "description": "Row ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<ROW_ID>", - "default": "" + "default": "", + "x-example": "<ROW_ID>" }, "data": { "type": "object", "description": "Row data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -11693,8 +11552,8 @@ "rows": { "type": "array", "description": "Array of rows data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -11735,7 +11594,6 @@ "x-appwrite": { "method": "getRow", "group": "rows", - "weight": 834, "cookies": false, "type": "", "demo": "tablesdb\/get-row.md", @@ -11837,7 +11695,6 @@ "x-appwrite": { "method": "upsertRow", "group": "rows", - "weight": 837, "cookies": false, "type": "", "demo": "tablesdb\/upsert-row.md", @@ -11933,8 +11790,8 @@ "data": { "type": "object", "description": "Row data as JSON object. Include all required columns of the row to be created or updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -11981,7 +11838,6 @@ "x-appwrite": { "method": "updateRow", "group": "rows", - "weight": 835, "cookies": false, "type": "", "demo": "tablesdb\/update-row.md", @@ -12045,8 +11901,8 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only columns and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -12088,7 +11944,6 @@ "x-appwrite": { "method": "deleteRow", "group": "rows", - "weight": 839, "cookies": false, "type": "", "demo": "tablesdb\/delete-row.md", @@ -12187,7 +12042,6 @@ "x-appwrite": { "method": "decrementRowColumn", "group": "rows", - "weight": 844, "cookies": false, "type": "", "demo": "tablesdb\/decrement-row-column.md", @@ -12258,8 +12112,8 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -12307,7 +12161,6 @@ "x-appwrite": { "method": "incrementRowColumn", "group": "rows", - "weight": 843, "cookies": false, "type": "", "demo": "tablesdb\/increment-row-column.md", @@ -12378,8 +12231,8 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -12425,7 +12278,6 @@ "x-appwrite": { "method": "list", "group": "teams", - "weight": 531, "cookies": false, "type": "", "demo": "teams\/list.md", @@ -12510,7 +12362,6 @@ "x-appwrite": { "method": "create", "group": "teams", - "weight": 529, "cookies": false, "type": "", "demo": "teams\/create.md", @@ -12557,10 +12408,10 @@ "roles": { "type": "array", "description": "Array of strings. Use this param to set the roles in the team for the user who created it. The default role is **owner**. A role can be any string. Learn more about [roles and permissions](https:\/\/appwrite.io\/docs\/permissions). Maximum of 100 roles are allowed, each 32 characters long.", - "x-example": null, "default": [ "owner" ], + "x-example": null, "items": { "type": "string" } @@ -12599,7 +12450,6 @@ "x-appwrite": { "method": "get", "group": "teams", - "weight": 530, "cookies": false, "type": "", "demo": "teams\/get.md", @@ -12662,7 +12512,6 @@ "x-appwrite": { "method": "updateName", "group": "teams", - "weight": 533, "cookies": false, "type": "", "demo": "teams\/update-name.md", @@ -12737,7 +12586,6 @@ "x-appwrite": { "method": "delete", "group": "teams", - "weight": 532, "cookies": false, "type": "", "demo": "teams\/delete.md", @@ -12800,7 +12648,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 538, "cookies": false, "type": "", "demo": "teams\/list-memberships.md", @@ -12893,7 +12740,6 @@ "x-appwrite": { "method": "createMembership", "group": "memberships", - "weight": 536, "cookies": false, "type": "", "demo": "teams\/create-membership.md", @@ -12938,21 +12784,21 @@ "email": { "type": "string", "description": "Email of the new team member.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "userId": { "type": "string", "description": "ID of the user to be added to a team.", - "x-example": "<USER_ID>", - "default": "" + "default": "", + "x-example": "<USER_ID>" }, "phone": { "type": "string", "description": "Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "roles": { @@ -12966,15 +12812,15 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the invitation email. This parameter is not required when an API key is supplied. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "x-example": "https:\/\/example.com", "default": "", + "x-example": "https:\/\/example.com", "format": "url" }, "name": { "type": "string", "description": "Name of the new team member. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -13009,7 +12855,6 @@ "x-appwrite": { "method": "getMembership", "group": "memberships", - "weight": 537, "cookies": false, "type": "", "demo": "teams\/get-membership.md", @@ -13080,7 +12925,6 @@ "x-appwrite": { "method": "updateMembership", "group": "memberships", - "weight": 539, "cookies": false, "type": "", "demo": "teams\/update-membership.md", @@ -13166,7 +13010,6 @@ "x-appwrite": { "method": "deleteMembership", "group": "memberships", - "weight": 1261, "cookies": false, "type": "", "demo": "teams\/delete-membership.md", @@ -13239,7 +13082,6 @@ "x-appwrite": { "method": "updateMembershipStatus", "group": "memberships", - "weight": 541, "cookies": false, "type": "", "demo": "teams\/update-membership-status.md", @@ -13333,7 +13175,6 @@ "x-appwrite": { "method": "getPrefs", "group": "teams", - "weight": 534, "cookies": false, "type": "", "demo": "teams\/get-prefs.md", @@ -13396,7 +13237,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "teams", - "weight": 535, "cookies": false, "type": "", "demo": "teams\/update-prefs.md", @@ -13441,8 +13281,8 @@ "prefs": { "type": "object", "description": "Prefs key-value JSON object.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -13477,7 +13317,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 916, "cookies": false, "type": "", "demo": "vectorsdb\/list-transactions.md", @@ -13544,7 +13383,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 912, "cookies": false, "type": "", "demo": "vectorsdb\/create-transaction.md", @@ -13581,8 +13419,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -13615,7 +13453,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 913, "cookies": false, "type": "", "demo": "vectorsdb\/get-transaction.md", @@ -13678,7 +13515,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 914, "cookies": false, "type": "", "demo": "vectorsdb\/update-transaction.md", @@ -13723,14 +13559,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -13757,7 +13593,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 915, "cookies": false, "type": "", "demo": "vectorsdb\/delete-transaction.md", @@ -13822,7 +13657,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 917, "cookies": false, "type": "", "demo": "vectorsdb\/create-operations.md", @@ -13867,8 +13701,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -13903,7 +13737,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 906, "cookies": false, "type": "", "demo": "vectorsdb\/list-documents.md", @@ -14013,7 +13846,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 902, "cookies": false, "type": "", "demo": "vectorsdb\/create-document.md", @@ -14098,14 +13930,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }", - "default": [] + "default": [], + "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }" }, "permissions": { "type": "array", @@ -14118,8 +13950,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -14159,7 +13991,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 905, "cookies": false, "type": "", "demo": "vectorsdb\/get-document.md", @@ -14258,7 +14089,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 904, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-document.md", @@ -14351,8 +14181,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -14397,7 +14227,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 903, "cookies": false, "type": "", "demo": "vectorsdb\/update-document.md", @@ -14458,8 +14287,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -14499,7 +14328,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 907, "cookies": false, "type": "", "demo": "vectorsdb\/delete-document.md", diff --git a/specs/1.9.x/swagger2-1.9.x-console.json b/specs/1.9.x/swagger2-1.9.x-console.json index d8b6d3c1e..2ac64d5fd 100644 --- a/specs/1.9.x/swagger2-1.9.x-console.json +++ b/specs/1.9.x/swagger2-1.9.x-console.json @@ -17,9 +17,6 @@ }, "host": "cloud.appwrite.io", "x-host-docs": "<REGION>.cloud.appwrite.io", - "x-appwrite": { - "endpointDocs": "https:\/\/<REGION>.cloud.appwrite.io\/v1" - }, "basePath": "\/v1", "schemes": [ "https" @@ -145,7 +142,6 @@ "x-appwrite": { "method": "get", "group": "account", - "weight": 9, "cookies": false, "type": "", "demo": "account\/get.md", @@ -198,7 +194,6 @@ "x-appwrite": { "method": "create", "group": "account", - "weight": 8, "cookies": false, "type": "", "demo": "account\/create.md", @@ -251,8 +246,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -284,7 +279,6 @@ "x-appwrite": { "method": "delete", "group": "account", - "weight": 10, "cookies": false, "type": "", "demo": "account\/delete.md", @@ -333,7 +327,6 @@ "x-appwrite": { "method": "listBillingAddresses", "group": null, - "weight": 1148, "cookies": false, "type": "", "demo": "account\/list-billing-addresses.md", @@ -396,7 +389,6 @@ "x-appwrite": { "method": "createBillingAddress", "group": null, - "weight": 1146, "cookies": false, "type": "", "demo": "account\/create-billing-address.md", @@ -444,20 +436,20 @@ "addressLine2": { "type": "string", "description": "Address line 2", - "x-example": "<ADDRESS_LINE2>", - "default": "" + "default": "", + "x-example": "<ADDRESS_LINE2>" }, "state": { "type": "string", "description": "State or province", - "x-example": "<STATE>", - "default": "" + "default": "", + "x-example": "<STATE>" }, "postalCode": { "type": "string", "description": "Postal code", - "x-example": "<POSTAL_CODE>", - "default": "" + "default": "", + "x-example": "<POSTAL_CODE>" } }, "required": [ @@ -494,7 +486,6 @@ "x-appwrite": { "method": "getBillingAddress", "group": null, - "weight": 1147, "cookies": false, "type": "", "demo": "account\/get-billing-address.md", @@ -553,7 +544,6 @@ "x-appwrite": { "method": "updateBillingAddress", "group": null, - "weight": 1149, "cookies": false, "type": "", "demo": "account\/update-billing-address.md", @@ -609,20 +599,20 @@ "addressLine2": { "type": "string", "description": "Address line 2", - "x-example": "<ADDRESS_LINE2>", - "default": "" + "default": "", + "x-example": "<ADDRESS_LINE2>" }, "state": { "type": "string", "description": "State or province", - "x-example": "<STATE>", - "default": "" + "default": "", + "x-example": "<STATE>" }, "postalCode": { "type": "string", "description": "Postal code", - "x-example": "<POSTAL_CODE>", - "default": "" + "default": "", + "x-example": "<POSTAL_CODE>" } }, "required": [ @@ -656,7 +646,6 @@ "x-appwrite": { "method": "deleteBillingAddress", "group": null, - "weight": 1150, "cookies": false, "type": "", "demo": "account\/delete-billing-address.md", @@ -715,7 +704,6 @@ "x-appwrite": { "method": "getCoupon", "group": null, - "weight": 1152, "cookies": false, "type": "", "demo": "account\/get-coupon.md", @@ -776,7 +764,6 @@ "x-appwrite": { "method": "updateEmail", "group": "account", - "weight": 34, "cookies": false, "type": "", "demo": "account\/update-email.md", @@ -856,7 +843,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 47, "cookies": false, "type": "", "demo": "account\/list-identities.md", @@ -929,7 +915,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 48, "cookies": false, "type": "", "demo": "account\/delete-identity.md", @@ -992,7 +977,6 @@ "x-appwrite": { "method": "listInvoices", "group": null, - "weight": 1151, "cookies": false, "type": "", "demo": "account\/list-invoices.md", @@ -1057,7 +1041,6 @@ "x-appwrite": { "method": "createJWT", "group": "tokens", - "weight": 29, "cookies": false, "type": "", "demo": "account\/create-jwt.md", @@ -1094,8 +1077,8 @@ "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", - "x-example": 0, "default": 900, + "x-example": 0, "format": "int32" } } @@ -1128,7 +1111,6 @@ "x-appwrite": { "method": "listKeys", "group": "keys", - "weight": 1134, "cookies": false, "type": "", "demo": "account\/list-keys.md", @@ -1187,7 +1169,6 @@ "x-appwrite": { "method": "createKey", "group": "keys", - "weight": 1135, "cookies": false, "type": "", "demo": "account\/create-key.md", @@ -1232,8 +1213,7 @@ "teams.read", "teams.write" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "AccountKeyScopes" } }, "expire": { @@ -1277,7 +1257,6 @@ "x-appwrite": { "method": "getKey", "group": "keys", - "weight": 1138, "cookies": false, "type": "", "demo": "account\/get-key.md", @@ -1335,7 +1314,6 @@ "x-appwrite": { "method": "updateKey", "group": "keys", - "weight": 1137, "cookies": false, "type": "", "demo": "account\/update-key.md", @@ -1388,8 +1366,7 @@ "teams.read", "teams.write" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "AccountKeyScopes" } }, "expire": { @@ -1430,7 +1407,6 @@ "x-appwrite": { "method": "deleteKey", "group": "keys", - "weight": 1136, "cookies": false, "type": "", "demo": "account\/delete-key.md", @@ -1488,7 +1464,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 31, "cookies": false, "type": "", "demo": "account\/list-logs.md", @@ -1566,7 +1541,6 @@ "x-appwrite": { "method": "updateMFA", "group": "mfa", - "weight": 165, "cookies": false, "type": "", "demo": "account\/update-mfa.md", @@ -1640,7 +1614,6 @@ "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", - "weight": 167, "cookies": false, "type": "", "demo": "account\/create-mfa-authenticator.md", @@ -1734,7 +1707,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" } ] @@ -1764,7 +1736,6 @@ "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", - "weight": 168, "cookies": false, "type": "", "demo": "account\/update-mfa-authenticator.md", @@ -1862,7 +1833,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" }, { @@ -1904,7 +1874,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 169, "cookies": false, "type": "", "demo": "account\/delete-mfa-authenticator.md", @@ -1996,7 +1965,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" } ] @@ -2028,7 +1996,6 @@ "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", - "weight": 173, "cookies": false, "type": "", "demo": "account\/create-mfa-challenge.md", @@ -2128,8 +2095,7 @@ "totp", "recoverycode" ], - "x-enum-name": "AuthenticationFactor", - "x-enum-keys": [] + "x-enum-name": "AuthenticationFactor" } }, "required": [ @@ -2164,7 +2130,6 @@ "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", - "weight": 174, "cookies": false, "type": "", "demo": "account\/update-mfa-challenge.md", @@ -2302,7 +2267,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 166, "cookies": false, "type": "", "demo": "account\/list-mfa-factors.md", @@ -2403,7 +2367,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 172, "cookies": false, "type": "", "demo": "account\/get-mfa-recovery-codes.md", @@ -2504,7 +2467,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 170, "cookies": false, "type": "", "demo": "account\/create-mfa-recovery-codes.md", @@ -2605,7 +2567,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 171, "cookies": false, "type": "", "demo": "account\/update-mfa-recovery-codes.md", @@ -2708,7 +2669,6 @@ "x-appwrite": { "method": "updateName", "group": "account", - "weight": 32, "cookies": false, "type": "", "demo": "account\/update-name.md", @@ -2782,7 +2742,6 @@ "x-appwrite": { "method": "updatePassword", "group": "account", - "weight": 33, "cookies": false, "type": "", "demo": "account\/update-password.md", @@ -2824,8 +2783,8 @@ "oldPassword": { "type": "string", "description": "Current user password. Must be at least 8 chars.", - "x-example": "password", "default": "", + "x-example": "password", "format": "password" } }, @@ -2861,7 +2820,6 @@ "x-appwrite": { "method": "listPaymentMethods", "group": null, - "weight": 1141, "cookies": false, "type": "", "demo": "account\/list-payment-methods.md", @@ -2924,7 +2882,6 @@ "x-appwrite": { "method": "createPaymentMethod", "group": null, - "weight": 1139, "cookies": false, "type": "", "demo": "account\/create-payment-method.md", @@ -2973,7 +2930,6 @@ "x-appwrite": { "method": "getPaymentMethod", "group": null, - "weight": 1140, "cookies": false, "type": "", "demo": "account\/get-payment-method.md", @@ -3032,7 +2988,6 @@ "x-appwrite": { "method": "updatePaymentMethod", "group": null, - "weight": 1142, "cookies": false, "type": "", "demo": "account\/update-payment-method.md", @@ -3118,7 +3073,6 @@ "x-appwrite": { "method": "deletePaymentMethod", "group": null, - "weight": 1145, "cookies": false, "type": "", "demo": "account\/delete-payment-method.md", @@ -3179,7 +3133,6 @@ "x-appwrite": { "method": "updatePaymentMethodProvider", "group": null, - "weight": 1143, "cookies": false, "type": "", "demo": "account\/update-payment-method-provider.md", @@ -3269,7 +3222,6 @@ "x-appwrite": { "method": "updatePaymentMethodMandateOptions", "group": null, - "weight": 1144, "cookies": false, "type": "", "demo": "account\/update-payment-method-mandate-options.md", @@ -3330,7 +3282,6 @@ "x-appwrite": { "method": "updatePhone", "group": "account", - "weight": 35, "cookies": false, "type": "", "demo": "account\/update-phone.md", @@ -3410,7 +3361,6 @@ "x-appwrite": { "method": "getPrefs", "group": "account", - "weight": 30, "cookies": false, "type": "", "demo": "account\/get-prefs.md", @@ -3463,7 +3413,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "account", - "weight": 36, "cookies": false, "type": "", "demo": "account\/update-prefs.md", @@ -3500,8 +3449,8 @@ "prefs": { "type": "object", "description": "Prefs key-value JSON object.", - "x-example": "{\"language\":\"en\",\"timezone\":\"UTC\",\"darkTheme\":true}", - "default": {} + "default": {}, + "x-example": "{\"language\":\"en\",\"timezone\":\"UTC\",\"darkTheme\":true}" } }, "required": [ @@ -3538,7 +3487,6 @@ "x-appwrite": { "method": "createRecovery", "group": "recovery", - "weight": 38, "cookies": false, "type": "", "demo": "account\/create-recovery.md", @@ -3621,7 +3569,6 @@ "x-appwrite": { "method": "updateRecovery", "group": "recovery", - "weight": 39, "cookies": false, "type": "", "demo": "account\/update-recovery.md", @@ -3705,7 +3652,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 11, "cookies": false, "type": "", "demo": "account\/list-sessions.md", @@ -3753,7 +3699,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 12, "cookies": false, "type": "", "demo": "account\/delete-sessions.md", @@ -3808,7 +3753,6 @@ "x-appwrite": { "method": "createAnonymousSession", "group": "sessions", - "weight": 17, "cookies": false, "type": "", "demo": "account\/create-anonymous-session.md", @@ -3863,7 +3807,6 @@ "x-appwrite": { "method": "createEmailPasswordSession", "group": "sessions", - "weight": 16, "cookies": false, "type": "", "demo": "account\/create-email-password-session.md", @@ -3945,7 +3888,6 @@ "x-appwrite": { "method": "updateMagicURLSession", "group": "sessions", - "weight": 26, "cookies": false, "type": "", "demo": "account\/update-magic-url-session.md", @@ -4024,7 +3966,6 @@ "x-appwrite": { "method": "createOAuth2Session", "group": "sessions", - "weight": 19, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-session.md", @@ -4104,7 +4045,6 @@ "zoom" ], "x-enum-name": "OAuthProvider", - "x-enum-keys": [], "in": "path" }, { @@ -4168,7 +4108,6 @@ "x-appwrite": { "method": "updatePhoneSession", "group": "sessions", - "weight": 27, "cookies": false, "type": "", "demo": "account\/update-phone-session.md", @@ -4252,7 +4191,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 18, "cookies": false, "type": "", "demo": "account\/create-session.md", @@ -4330,7 +4268,6 @@ "x-appwrite": { "method": "getSession", "group": "sessions", - "weight": 13, "cookies": false, "type": "", "demo": "account\/get-session.md", @@ -4393,7 +4330,6 @@ "x-appwrite": { "method": "updateSession", "group": "sessions", - "weight": 15, "cookies": false, "type": "", "demo": "account\/update-session.md", @@ -4451,7 +4387,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 14, "cookies": false, "type": "", "demo": "account\/delete-session.md", @@ -4516,7 +4451,6 @@ "x-appwrite": { "method": "updateStatus", "group": "account", - "weight": 37, "cookies": false, "type": "", "demo": "account\/update-status.md", @@ -4571,7 +4505,6 @@ "x-appwrite": { "method": "createPushTarget", "group": "pushTargets", - "weight": 44, "cookies": false, "type": "", "demo": "account\/create-push-target.md", @@ -4581,8 +4514,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -4594,8 +4526,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -4618,8 +4549,8 @@ "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", - "x-example": "<PROVIDER_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ID>" } }, "required": [ @@ -4657,7 +4588,6 @@ "x-appwrite": { "method": "updatePushTarget", "group": "pushTargets", - "weight": 45, "cookies": false, "type": "", "demo": "account\/update-push-target.md", @@ -4667,8 +4597,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -4680,8 +4609,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -4732,7 +4660,6 @@ "x-appwrite": { "method": "deletePushTarget", "group": "pushTargets", - "weight": 46, "cookies": false, "type": "", "demo": "account\/delete-push-target.md", @@ -4742,8 +4669,7 @@ "scope": "targets.write", "platforms": [ "console", - "client", - "server" + "client" ], "packaging": false, "public": true, @@ -4755,8 +4681,7 @@ "security": [ { "Project": [], - "Session": [], - "JWT": [] + "Session": [] } ], "parameters": [ @@ -4797,7 +4722,6 @@ "x-appwrite": { "method": "createEmailToken", "group": "tokens", - "weight": 25, "cookies": false, "type": "", "demo": "account\/create-email-token.md", @@ -4848,8 +4772,8 @@ "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -4887,7 +4811,6 @@ "x-appwrite": { "method": "createMagicURLToken", "group": "tokens", - "weight": 24, "cookies": false, "type": "", "demo": "account\/create-magic-url-token.md", @@ -4938,15 +4861,15 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the magic URL login. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "x-example": "https:\/\/example.com", "default": "", + "x-example": "https:\/\/example.com", "format": "url" }, "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -4979,7 +4902,6 @@ "x-appwrite": { "method": "createOAuth2Token", "group": "tokens", - "weight": 23, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-token.md", @@ -5059,7 +4981,6 @@ "zoom" ], "x-enum-name": "OAuthProvider", - "x-enum-keys": [], "in": "path" }, { @@ -5123,7 +5044,6 @@ "x-appwrite": { "method": "createPhoneToken", "group": "tokens", - "weight": 28, "cookies": false, "type": "", "demo": "account\/create-phone-token.md", @@ -5207,7 +5127,6 @@ "x-appwrite": { "method": "createEmailVerification", "group": "verification", - "weight": 40, "cookies": false, "type": "", "demo": "account\/create-email-verification.md", @@ -5332,7 +5251,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "verification", - "weight": 41, "cookies": false, "type": "", "demo": "account\/update-email-verification.md", @@ -5468,7 +5386,6 @@ "x-appwrite": { "method": "createPhoneVerification", "group": "verification", - "weight": 42, "cookies": false, "type": "", "demo": "account\/create-phone-verification.md", @@ -5524,7 +5441,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "verification", - "weight": 43, "cookies": false, "type": "", "demo": "account\/update-phone-verification.md", @@ -5602,7 +5518,6 @@ "x-appwrite": { "method": "listEvents", "group": null, - "weight": 1258, "cookies": false, "type": "", "demo": "activities\/list-events.md", @@ -5663,7 +5578,6 @@ "x-appwrite": { "method": "getEvent", "group": "events", - "weight": 1259, "cookies": false, "type": "", "demo": "activities\/get-event.md", @@ -5724,7 +5638,6 @@ "x-appwrite": { "method": "getBrowser", "group": null, - "weight": 176, "cookies": false, "type": "location", "demo": "avatars\/get-browser.md", @@ -5851,7 +5764,6 @@ "x-appwrite": { "method": "getCreditCard", "group": null, - "weight": 175, "cookies": false, "type": "location", "demo": "avatars\/get-credit-card.md", @@ -5984,7 +5896,6 @@ "x-appwrite": { "method": "getFavicon", "group": null, - "weight": 179, "cookies": false, "type": "location", "demo": "avatars\/get-favicon.md", @@ -6049,7 +5960,6 @@ "x-appwrite": { "method": "getFlag", "group": null, - "weight": 177, "cookies": false, "type": "location", "demo": "avatars\/get-flag.md", @@ -6538,7 +6448,6 @@ "x-appwrite": { "method": "getImage", "group": null, - "weight": 178, "cookies": false, "type": "location", "demo": "avatars\/get-image.md", @@ -6623,7 +6532,6 @@ "x-appwrite": { "method": "getInitials", "group": null, - "weight": 181, "cookies": false, "type": "location", "demo": "avatars\/get-initials.md", @@ -6716,7 +6624,6 @@ "x-appwrite": { "method": "getQR", "group": null, - "weight": 180, "cookies": false, "type": "location", "demo": "avatars\/get-qr.md", @@ -6809,7 +6716,6 @@ "x-appwrite": { "method": "getScreenshot", "group": null, - "weight": 182, "cookies": false, "type": "location", "demo": "avatars\/get-screenshot.md", @@ -6896,8 +6802,7 @@ "light", "dark" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "BrowserTheme", "default": "light", "in": "query" }, @@ -7355,8 +7260,7 @@ "pacific\/wallis", "utc" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "Timezone", "in": "query" }, { @@ -7428,8 +7332,7 @@ "web-share", "xr-spatial-tracking" ], - "x-enum-name": "BrowserPermission", - "x-enum-keys": [] + "x-enum-name": "BrowserPermission" }, "x-example": "[\"geolocation\",\"notifications\"]", "default": [], @@ -7491,7 +7394,6 @@ "gif" ], "x-enum-name": "ImageFormat", - "x-enum-keys": [], "in": "query" } ] @@ -7521,7 +7423,6 @@ "x-appwrite": { "method": "listArchives", "group": null, - "weight": 1127, "cookies": false, "type": "", "demo": "backups\/list-archives.md", @@ -7586,7 +7487,6 @@ "x-appwrite": { "method": "createArchive", "group": null, - "weight": 1128, "cookies": false, "type": "", "demo": "backups\/create-archive.md", @@ -7632,8 +7532,7 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "resourceId": { @@ -7675,7 +7574,6 @@ "x-appwrite": { "method": "getArchive", "group": null, - "weight": 1126, "cookies": false, "type": "", "demo": "backups\/get-archive.md", @@ -7733,7 +7631,6 @@ "x-appwrite": { "method": "deleteArchive", "group": null, - "weight": 1129, "cookies": false, "type": "", "demo": "backups\/delete-archive.md", @@ -7794,7 +7691,6 @@ "x-appwrite": { "method": "listPolicies", "group": null, - "weight": 1122, "cookies": false, "type": "", "demo": "backups\/list-policies.md", @@ -7862,7 +7758,6 @@ "x-appwrite": { "method": "createPolicy", "group": null, - "weight": 1123, "cookies": false, "type": "", "demo": "backups\/create-policy.md", @@ -7905,8 +7800,8 @@ "name": { "type": "string", "description": "Policy name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "services": { "type": "array", @@ -7922,8 +7817,7 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "resourceId": { @@ -7935,8 +7829,8 @@ "enabled": { "type": "boolean", "description": "Is policy enabled? When set to 'disabled', no backups will be taken", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "retention": { "type": "integer", @@ -7985,7 +7879,6 @@ "x-appwrite": { "method": "getPolicy", "group": null, - "weight": 1121, "cookies": false, "type": "", "demo": "backups\/get-policy.md", @@ -8049,7 +7942,6 @@ "x-appwrite": { "method": "updatePolicy", "group": null, - "weight": 1124, "cookies": false, "type": "", "demo": "backups\/update-policy.md", @@ -8143,7 +8035,6 @@ "x-appwrite": { "method": "deletePolicy", "group": null, - "weight": 1125, "cookies": false, "type": "", "demo": "backups\/delete-policy.md", @@ -8209,7 +8100,6 @@ "x-appwrite": { "method": "createRestoration", "group": null, - "weight": 1132, "cookies": false, "type": "", "demo": "backups\/create-restoration.md", @@ -8260,21 +8150,20 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "newResourceId": { "type": "string", "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<NEW_RESOURCE_ID>", - "default": "" + "default": "", + "x-example": "<NEW_RESOURCE_ID>" }, "newResourceName": { "type": "string", "description": "Database name. Max length: 128 chars.", - "x-example": "<NEW_RESOURCE_NAME>", - "default": "" + "default": "", + "x-example": "<NEW_RESOURCE_NAME>" } }, "required": [ @@ -8310,7 +8199,6 @@ "x-appwrite": { "method": "listRestorations", "group": null, - "weight": 1131, "cookies": false, "type": "", "demo": "backups\/list-restorations.md", @@ -8375,7 +8263,6 @@ "x-appwrite": { "method": "getRestoration", "group": null, - "weight": 1130, "cookies": false, "type": "", "demo": "backups\/get-restoration.md", @@ -8423,7 +8310,7 @@ "tags": [ "compute" ], - "description": " List all dedicated databases. Results support pagination.", + "description": "List all dedicated databases. Results support pagination.", "responses": { "200": { "description": "Dedicated databases list", @@ -8436,7 +8323,6 @@ "x-appwrite": { "method": "listDatabases", "group": "databases", - "weight": 929, "cookies": false, "type": "", "demo": "compute\/list-databases.md", @@ -8485,7 +8371,7 @@ "tags": [ "compute" ], - "description": " Create a new dedicated database with the chosen engine and configuration. Status will be 'provisioning' until the database is ready.", + "description": "Create a new dedicated database with the chosen engine and configuration. Status will be 'provisioning' until the database is ready.", "responses": { "201": { "description": "DedicatedDatabase", @@ -8498,7 +8384,6 @@ "x-appwrite": { "method": "createDatabase", "group": "databases", - "weight": 927, "cookies": false, "type": "", "demo": "compute\/create-database.md", @@ -8540,167 +8425,104 @@ "engine": { "type": "string", "description": "Database engine: postgres, mysql, mariadb, or mongodb.", - "x-example": "postgres", "default": "postgres", - "enum": [ - "postgres", - "mysql", - "mariadb", - "mongodb" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "postgres" }, "version": { "type": "string", "description": "Database engine version. Defaults to latest for selected engine.", "x-example": "17", - "enum": [ - "17", - "18", - "8.0", - "8.4", - "10.11", - "11.4", - "7.0" - ], - "x-enum-name": null, - "x-enum-keys": [ - "Postgres 17", - "Postgres 18", - "MySQL 8.0", - "MySQL 8.4", - "MariaDB 10.11", - "MariaDB 11.4", - "MongoDB 7.0" - ], "x-nullable": true }, "region": { "type": "string", "description": "Region identifier. Use one of the enabled region codes (e.g., fra, nyc, syd).", - "x-example": "fra", "default": "fra", - "enum": [ - "fra", - "nyc", - "syd", - "sfo", - "sgp", - "tor" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "fra" }, "type": { "type": "string", "description": "Database type: shared (serverless) or dedicated (always-on).", - "x-example": "shared", "default": "shared", - "enum": [ - "shared", - "dedicated" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "shared" }, "specification": { "type": "string", "description": "Specification identifier.", - "x-example": "<SPECIFICATION>", - "default": "starter" + "default": "starter", + "x-example": "<SPECIFICATION>" }, "backend": { "type": "string", "description": "Database backend provider: prisma, or edge.", - "x-example": "prisma", "default": "edge", - "enum": [ - "prisma", - "edge" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "prisma" }, "cpu": { "type": "integer", "description": "CPU in millicores (125-16000).", - "x-example": 125, "default": 1000, + "x-example": 125, "format": "int32" }, "memory": { "type": "integer", "description": "Memory in MB to allocate (128-65536).", - "x-example": 128, "default": 1024, + "x-example": 128, "format": "int32" }, "storage": { "type": "integer", "description": "Storage in GB to allocate (1-16384).", - "x-example": 1, "default": 10, + "x-example": 1, "format": "int32" }, "storageClass": { "type": "string", "description": "Storage class: ssd, nvme, or hdd.", - "x-example": "ssd", "default": "ssd", - "enum": [ - "ssd", - "nvme", - "hdd" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "ssd" }, "storageMaxGb": { "type": "integer", "description": "Maximum storage limit in GB. 0 uses system default.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" }, "highAvailability": { "type": "boolean", "description": "Enable high availability.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "highAvailabilityReplicaCount": { "type": "integer", "description": "Number of high availability replicas (0-5).", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" }, "highAvailabilitySyncMode": { "type": "string", "description": "Replication sync mode. Allowed values: async, sync, quorum.", "x-example": "async", - "enum": [ - "async", - "sync", - "quorum" - ], - "x-enum-name": null, - "x-enum-keys": [], "x-nullable": true }, "networkMaxConnections": { "type": "integer", "description": "Maximum concurrent connections.", - "x-example": 10, "default": 100, + "x-example": 10, "format": "int32" }, "networkIdleTimeoutSeconds": { "type": "integer", "description": "Connection idle timeout in seconds.", - "x-example": 60, "default": 900, + "x-example": 60, "format": "int32" }, "networkIPAllowlist": { @@ -8715,73 +8537,73 @@ "idleTimeoutMinutes": { "type": "integer", "description": "Minutes of inactivity before container scales to zero.", - "x-example": 5, "default": 15, + "x-example": 5, "format": "int32" }, "backupEnabled": { "type": "boolean", "description": "Enable automatic backups.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "backupPitr": { "type": "boolean", "description": "Enable point-in-time recovery.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "backupCron": { "type": "string", "description": "Backup schedule in cron format.", - "x-example": null, - "default": "0 3 * * *" + "default": "0 3 * * *", + "x-example": null }, "backupRetentionDays": { "type": "integer", "description": "Number of days to retain backups.", - "x-example": 1, "default": 14, + "x-example": 1, "format": "int32" }, "pitrRetentionDays": { "type": "integer", "description": "Number of days to retain PITR data.", - "x-example": 1, "default": 7, + "x-example": 1, "format": "int32" }, "storageAutoscaling": { "type": "boolean", "description": "Enable automatic storage expansion when usage exceeds threshold.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "storageAutoscalingThresholdPercent": { "type": "integer", "description": "Storage usage percentage (50-95) that triggers automatic expansion.", - "x-example": 50, "default": 85, + "x-example": 50, "format": "int32" }, "storageAutoscalingMaxGb": { "type": "integer", "description": "Maximum storage size in GB for autoscaling. 0 means no limit.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" }, "metricsEnabled": { "type": "boolean", "description": "Enable metrics collection.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "poolerEnabled": { "type": "boolean", "description": "Enable connection pooler on provision.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -8804,7 +8626,7 @@ "tags": [ "compute" ], - "description": " Get a dedicated database by its unique ID. Returns the database configuration and current status.", + "description": "Get a dedicated database by its unique ID. Returns the database configuration and current status.", "responses": { "200": { "description": "DedicatedDatabase", @@ -8817,7 +8639,6 @@ "x-appwrite": { "method": "getDatabase", "group": "databases", - "weight": 928, "cookies": false, "type": "", "demo": "compute\/get-database.md", @@ -8862,7 +8683,7 @@ "tags": [ "compute" ], - "description": " Update a dedicated database configuration. All changes are applied with zero downtime. Resource changes (cpu, memory) are handled via rolling cutover. Storage expansion is done online. All other settings are applied in-place.", + "description": "Update a dedicated database configuration. All changes are applied with zero downtime. Resource changes (cpu, memory) are handled via rolling cutover. Storage expansion is done online. All other settings are applied in-place.", "responses": { "200": { "description": "DedicatedDatabase", @@ -8875,7 +8696,6 @@ "x-appwrite": { "method": "updateDatabase", "group": "databases", - "weight": 930, "cookies": false, "type": "", "demo": "compute\/update-database.md", @@ -8922,13 +8742,6 @@ "type": "string", "description": "Database status. Allowed values: ready, paused, inactive. Set to \"paused\" to pause, \"ready\" to resume, or \"inactive\" to spin down a shared database.", "x-example": "ready", - "enum": [ - "ready", - "paused", - "inactive" - ], - "x-enum-name": null, - "x-enum-keys": [], "x-nullable": true }, "specification": { @@ -8962,13 +8775,6 @@ "type": "string", "description": "Storage class. Allowed values: ssd, nvme, hdd.", "x-example": "ssd", - "enum": [ - "ssd", - "nvme", - "hdd" - ], - "x-enum-name": null, - "x-enum-keys": [], "x-nullable": true }, "highAvailability": { @@ -9104,15 +8910,7 @@ "x-example": null, "x-nullable": true, "items": { - "type": "string", - "enum": [ - "select", - "insert", - "update", - "delete" - ], - "x-enum-name": null, - "x-enum-keys": [] + "type": "string" } }, "sqlApiMaxRows": { @@ -9153,7 +8951,7 @@ "tags": [ "compute" ], - "description": " Delete a dedicated database. This action is irreversible. The database status will be set to 'deleting' and all resources will be cleaned up.", + "description": "Delete a dedicated database. This action is irreversible. The database status will be set to 'deleting' and all resources will be cleaned up.", "responses": { "204": { "description": "No content" @@ -9163,7 +8961,6 @@ "x-appwrite": { "method": "deleteDatabase", "group": "databases", - "weight": 931, "cookies": false, "type": "", "demo": "compute\/delete-database.md", @@ -9208,7 +9005,7 @@ "tags": [ "compute" ], - "description": " List all backups for a dedicated database. Results can be filtered by status and type.", + "description": "List all backups for a dedicated database. Results can be filtered by status and type.", "responses": { "200": { "description": "BackupList", @@ -9221,7 +9018,6 @@ "x-appwrite": { "method": "listDatabaseBackups", "group": "databases", - "weight": 959, "cookies": false, "type": "", "demo": "compute\/list-database-backups.md", @@ -9278,7 +9074,7 @@ "tags": [ "compute" ], - "description": " Create a manual backup of a dedicated database. The backup will be created asynchronously and its status can be checked via the get backup endpoint.", + "description": "Create a manual backup of a dedicated database. The backup will be created asynchronously and its status can be checked via the get backup endpoint.", "responses": { "202": { "description": "Backup", @@ -9291,7 +9087,6 @@ "x-appwrite": { "method": "createDatabaseBackup", "group": "databases", - "weight": 957, "cookies": false, "type": "", "demo": "compute\/create-database-backup.md", @@ -9331,14 +9126,8 @@ "type": { "type": "string", "description": "Backup type: full or incremental.", - "x-example": "full", "default": "full", - "enum": [ - "full", - "incremental" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "full" } } } @@ -9359,7 +9148,7 @@ "tags": [ "compute" ], - "description": " Configure off-cluster backup storage for a dedicated database. Supports S3, GCS, and Azure Blob Storage destinations. Backups will be stored to the configured destination in addition to on-cluster storage.", + "description": "Configure off-cluster backup storage for a dedicated database. Supports S3, GCS, and Azure Blob Storage destinations. Backups will be stored to the configured destination in addition to on-cluster storage.", "responses": { "200": { "description": "BackupStorageConfig", @@ -9372,7 +9161,6 @@ "x-appwrite": { "method": "updateDatabaseBackupStorage", "group": "databases", - "weight": 961, "cookies": false, "type": "", "demo": "compute\/update-database-backup-storage.md", @@ -9412,14 +9200,7 @@ "provider": { "type": "string", "description": "Storage provider for off-cluster backups. Allowed values: s3 (Amazon S3 or S3-compatible), gcs (Google Cloud Storage), azure (Azure Blob Storage).", - "x-example": "s3", - "enum": [ - "s3", - "gcs", - "azure" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "s3" }, "bucket": { "type": "string", @@ -9429,20 +9210,20 @@ "region": { "type": "string", "description": "Storage region.", - "x-example": "<REGION>", - "default": "" + "default": "", + "x-example": "<REGION>" }, "prefix": { "type": "string", "description": "Object key prefix for backups.", - "x-example": "<PREFIX>", - "default": "backups\/" + "default": "backups\/", + "x-example": "<PREFIX>" }, "endpoint": { "type": "string", "description": "Custom endpoint for S3-compatible storage (e.g. MinIO).", - "x-example": "<ENDPOINT>", - "default": "" + "default": "", + "x-example": "<ENDPOINT>" }, "accessKey": { "type": "string", @@ -9477,7 +9258,7 @@ "tags": [ "compute" ], - "description": " Get details of a specific database backup including its status, size, and timestamps.", + "description": "Get details of a specific database backup including its status, size, and timestamps.", "responses": { "200": { "description": "Backup", @@ -9490,7 +9271,6 @@ "x-appwrite": { "method": "getDatabaseBackup", "group": "databases", - "weight": 958, "cookies": false, "type": "", "demo": "compute\/get-database-backup.md", @@ -9543,7 +9323,7 @@ "tags": [ "compute" ], - "description": " Delete a database backup. This will permanently remove the backup from storage and cannot be undone.", + "description": "Delete a database backup. This will permanently remove the backup from storage and cannot be undone.", "responses": { "204": { "description": "No content" @@ -9553,7 +9333,6 @@ "x-appwrite": { "method": "deleteDatabaseBackup", "group": "databases", - "weight": 960, "cookies": false, "type": "", "demo": "compute\/delete-database-backup.md", @@ -9606,7 +9385,7 @@ "tags": [ "compute" ], - "description": " List all ephemeral branches for a dedicated database. Returns branch metadata including ID, name, namespace, and expiration time.", + "description": "List all ephemeral branches for a dedicated database. Returns branch metadata including ID, name, namespace, and expiration time.", "responses": { "200": { "description": "BranchList", @@ -9619,7 +9398,6 @@ "x-appwrite": { "method": "listDatabaseBranches", "group": "databases", - "weight": 949, "cookies": false, "type": "", "demo": "compute\/list-database-branches.md", @@ -9664,7 +9442,7 @@ "tags": [ "compute" ], - "description": " Create an ephemeral database branch from the primary via PVC snapshot. The branch is a full copy of the database at the current point in time, useful for testing schema migrations or running experiments without affecting production data. Branches expire after the configured TTL (default 24 hours). The branch is created asynchronously.", + "description": "Create an ephemeral database branch from the primary via PVC snapshot. The branch is a full copy of the database at the current point in time, useful for testing schema migrations or running experiments without affecting production data. Branches expire after the configured TTL (default 24 hours). The branch is created asynchronously.", "responses": { "202": { "description": "DedicatedDatabase", @@ -9677,7 +9455,6 @@ "x-appwrite": { "method": "createDatabaseBranch", "group": "databases", - "weight": 948, "cookies": false, "type": "", "demo": "compute\/create-database-branch.md", @@ -9717,14 +9494,14 @@ "branchId": { "type": "string", "description": "Branch ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<BRANCH_ID>", - "default": "" + "default": "", + "x-example": "<BRANCH_ID>" }, "ttl": { "type": "integer", "description": "Time-to-live in seconds before the branch expires. Min 300 (5 min), max 604800 (7 days). Default: 86400 (24h).", - "x-example": 300, "default": 86400, + "x-example": 300, "format": "int32" } } @@ -9746,7 +9523,7 @@ "tags": [ "compute" ], - "description": " Delete an ephemeral database branch. This removes the branch namespace, its PVC, and the associated VolumeSnapshot. The deletion runs asynchronously and is irreversible.", + "description": "Delete an ephemeral database branch. This removes the branch namespace, its PVC, and the associated VolumeSnapshot. The deletion runs asynchronously and is irreversible.", "responses": { "202": { "description": "DedicatedDatabase", @@ -9759,7 +9536,6 @@ "x-appwrite": { "method": "deleteDatabaseBranch", "group": "databases", - "weight": 950, "cookies": false, "type": "", "demo": "compute\/delete-database-branch.md", @@ -9812,7 +9588,7 @@ "tags": [ "compute" ], - "description": " List all database connection users\/roles for a dedicated database.", + "description": "List all database connection users\/roles for a dedicated database.", "responses": { "200": { "description": "Dedicated database connections list", @@ -9825,7 +9601,6 @@ "x-appwrite": { "method": "listDatabaseConnections", "group": "databases", - "weight": 940, "cookies": false, "type": "", "demo": "compute\/list-database-connections.md", @@ -9870,7 +9645,7 @@ "tags": [ "compute" ], - "description": " Create a new database connection user\/role. Returns the connection details including the generated credentials.", + "description": "Create a new database connection user\/role. Returns the connection details including the generated credentials.", "responses": { "201": { "description": "Connection", @@ -9883,7 +9658,6 @@ "x-appwrite": { "method": "createDatabaseConnection", "group": "databases", - "weight": 939, "cookies": false, "type": "", "demo": "compute\/create-database-connection.md", @@ -9928,8 +9702,8 @@ "role": { "type": "string", "description": "Connection role for the new user. Common values: readonly (read-only access), readwrite (full read and write access).", - "x-example": "<ROLE>", - "default": "readwrite" + "default": "readwrite", + "x-example": "<ROLE>" } }, "required": [ @@ -9953,7 +9727,7 @@ "tags": [ "compute" ], - "description": " Delete a database connection user\/role. The connection will be terminated immediately.", + "description": "Delete a database connection user\/role. The connection will be terminated immediately.", "responses": { "204": { "description": "No content" @@ -9963,7 +9737,6 @@ "x-appwrite": { "method": "deleteDatabaseConnection", "group": "databases", - "weight": 941, "cookies": false, "type": "", "demo": "compute\/delete-database-connection.md", @@ -10016,7 +9789,7 @@ "tags": [ "compute" ], - "description": " Get connection credentials for a dedicated database. Returns the hostname, port, username, password, database name, and full connection string.", + "description": "Get connection credentials for a dedicated database. Returns the hostname, port, username, password, database name, and full connection string.", "responses": { "200": { "description": "Credentials", @@ -10029,7 +9802,6 @@ "x-appwrite": { "method": "getDatabaseCredentials", "group": "databases", - "weight": 932, "cookies": false, "type": "", "demo": "compute\/get-database-credentials.md", @@ -10074,7 +9846,7 @@ "tags": [ "compute" ], - "description": " Rotate the primary credentials for a dedicated database. Generates a new password and updates the database. Previous credentials will stop working immediately.", + "description": "Rotate the primary credentials for a dedicated database. Generates a new password and updates the database. Previous credentials will stop working immediately.", "responses": { "200": { "description": "Credentials", @@ -10087,7 +9859,6 @@ "x-appwrite": { "method": "updateDatabaseCredentials", "group": "databases", - "weight": 933, "cookies": false, "type": "", "demo": "compute\/update-database-credentials.md", @@ -10147,7 +9918,6 @@ "x-appwrite": { "method": "createDatabaseExecution", "group": "databases", - "weight": 947, "cookies": false, "type": "", "demo": "compute\/create-database-execution.md", @@ -10192,8 +9962,8 @@ "bindings": { "type": "object", "description": "Optional bound parameters. Pass either a positional list or a name => value map matching the placeholder style used in the SQL.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true }, "timeoutSeconds": { @@ -10225,7 +9995,7 @@ "tags": [ "compute" ], - "description": " Run EXPLAIN on a query against a dedicated database. Available for SQL-compatible engines. Returns the query execution plan including scan types, estimated cost, and resource usage. Optionally run EXPLAIN ANALYZE to get actual execution statistics.", + "description": "Run EXPLAIN on a query against a dedicated database. Available for SQL-compatible engines. Returns the query execution plan including scan types, estimated cost, and resource usage. Optionally run EXPLAIN ANALYZE to get actual execution statistics.", "responses": { "200": { "description": "QueryExplanation", @@ -10238,7 +10008,6 @@ "x-appwrite": { "method": "createDatabaseQueryExplanation", "group": "databases", - "weight": 968, "cookies": false, "type": "", "demo": "compute\/create-database-query-explanation.md", @@ -10283,8 +10052,8 @@ "analyze": { "type": "boolean", "description": "Run EXPLAIN ANALYZE to get actual execution statistics. This executes the query.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -10306,7 +10075,7 @@ "tags": [ "compute" ], - "description": " List installed and available extensions for a PostgreSQL database.", + "description": "List installed and available extensions for a PostgreSQL database.", "responses": { "200": { "description": "Extensions", @@ -10319,7 +10088,6 @@ "x-appwrite": { "method": "listDatabaseExtensions", "group": "databases", - "weight": 943, "cookies": false, "type": "", "demo": "compute\/list-database-extensions.md", @@ -10364,7 +10132,7 @@ "tags": [ "compute" ], - "description": " Install a database extension. Only available for PostgreSQL databases. The install runs asynchronously; poll the extensions list endpoint for status.", + "description": "Install a database extension. Only available for PostgreSQL databases. The install runs asynchronously; poll the extensions list endpoint for status.", "responses": { "202": { "description": "DedicatedDatabase", @@ -10377,7 +10145,6 @@ "x-appwrite": { "method": "createDatabaseExtension", "group": "databases", - "weight": 942, "cookies": false, "type": "", "demo": "compute\/create-database-extension.md", @@ -10441,7 +10208,7 @@ "tags": [ "compute" ], - "description": " Uninstall a database extension from a PostgreSQL database. The uninstall runs asynchronously; poll the extensions list endpoint for status.", + "description": "Uninstall a database extension from a PostgreSQL database. The uninstall runs asynchronously; poll the extensions list endpoint for status.", "responses": { "202": { "description": "DedicatedDatabase", @@ -10454,7 +10221,6 @@ "x-appwrite": { "method": "deleteDatabaseExtension", "group": "databases", - "weight": 944, "cookies": false, "type": "", "demo": "compute\/delete-database-extension.md", @@ -10507,7 +10273,7 @@ "tags": [ "compute" ], - "description": " Get high availability status for a dedicated database. Returns replica statuses, replication lag, and sync mode.", + "description": "Get high availability status for a dedicated database. Returns replica statuses, replication lag, and sync mode.", "responses": { "200": { "description": "HAStatus", @@ -10520,7 +10286,6 @@ "x-appwrite": { "method": "getDatabaseHAStatus", "group": "databases", - "weight": 954, "cookies": false, "type": "", "demo": "compute\/get-database-ha-status.md", @@ -10567,7 +10332,7 @@ "tags": [ "compute" ], - "description": " Trigger a manual failover for a dedicated database with high availability enabled. Promotes a replica to primary. The failover runs asynchronously; poll the database document for status updates.", + "description": "Trigger a manual failover for a dedicated database with high availability enabled. Promotes a replica to primary. The failover runs asynchronously; poll the database document for status updates.", "responses": { "202": { "description": "DedicatedDatabase", @@ -10580,7 +10345,6 @@ "x-appwrite": { "method": "createDatabaseFailover", "group": "databases", - "weight": 955, "cookies": false, "type": "", "demo": "compute\/create-database-failover.md", @@ -10640,7 +10404,7 @@ "tags": [ "compute" ], - "description": " Get query-level performance insights for a dedicated database. Returns top queries by execution time, wait events, and aggregate query statistics.", + "description": "Get query-level performance insights for a dedicated database. Returns top queries by execution time, wait events, and aggregate query statistics.", "responses": { "200": { "description": "PerformanceInsights", @@ -10653,7 +10417,6 @@ "x-appwrite": { "method": "getDatabaseInsights", "group": "databases", - "weight": 953, "cookies": false, "type": "", "demo": "compute\/get-database-insights.md", @@ -10690,17 +10453,6 @@ "required": false, "type": "string", "x-example": "1h", - "enum": [ - "1h", - "24h", - "7d" - ], - "x-enum-name": null, - "x-enum-keys": [ - "One Hour", - "Twenty Four Hours", - "Seven Days" - ], "default": "1h", "in": "query" }, @@ -10727,7 +10479,7 @@ "tags": [ "compute" ], - "description": " List audit logs for a dedicated database. Returns DDL operations and security-relevant events.", + "description": "List audit logs for a dedicated database. Returns DDL operations and security-relevant events.", "responses": { "200": { "description": "Dedicated database audit logs list", @@ -10740,7 +10492,6 @@ "x-appwrite": { "method": "listDatabaseLogs", "group": "databases", - "weight": 952, "cookies": false, "type": "", "demo": "compute\/list-database-logs.md", @@ -10813,7 +10564,7 @@ "tags": [ "compute" ], - "description": " Update the maintenance window for a dedicated database. Maintenance operations like minor version upgrades will be performed during this window.", + "description": "Update the maintenance window for a dedicated database. Maintenance operations like minor version upgrades will be performed during this window.", "responses": { "200": { "description": "DedicatedDatabase", @@ -10826,7 +10577,6 @@ "x-appwrite": { "method": "updateDatabaseMaintenanceWindow", "group": "databases", - "weight": 938, "cookies": false, "type": "", "demo": "compute\/update-database-maintenance-window.md", @@ -10866,18 +10616,7 @@ "day": { "type": "string", "description": "Day of the week for the maintenance window. Allowed values: sun, mon, tue, wed, thu, fri, sat.", - "x-example": "sun", - "enum": [ - "sun", - "mon", - "tue", - "wed", - "thu", - "fri", - "sat" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "sun" }, "hourUtc": { "type": "integer", @@ -10906,7 +10645,7 @@ "tags": [ "compute" ], - "description": " Get detailed performance metrics for a dedicated database. Returns CPU, memory, storage, IOPS, QPS, and connection metrics.", + "description": "Get detailed performance metrics for a dedicated database. Returns CPU, memory, storage, IOPS, QPS, and connection metrics.", "responses": { "200": { "description": "DatabaseMetrics", @@ -10919,7 +10658,6 @@ "x-appwrite": { "method": "getDatabaseMetrics", "group": "databases", - "weight": 936, "cookies": false, "type": "", "demo": "compute\/get-database-metrics.md", @@ -10956,19 +10694,6 @@ "required": false, "type": "string", "x-example": "1h", - "enum": [ - "1h", - "24h", - "7d", - "30d" - ], - "x-enum-name": null, - "x-enum-keys": [ - "One Hour", - "Twenty Four Hours", - "Seven Days", - "Thirty Days" - ], "default": "24h", "in": "query" } @@ -10988,7 +10713,7 @@ "tags": [ "compute" ], - "description": " Migrate a database between shared and dedicated types. Shared to dedicated creates an always-on StatefulSet with external access. Dedicated to shared converts to a serverless pod that scales to zero when idle. Data is preserved during migration.", + "description": "Migrate a database between shared and dedicated types. Shared to dedicated creates an always-on StatefulSet with external access. Dedicated to shared converts to a serverless pod that scales to zero when idle. Data is preserved during migration.", "responses": { "200": { "description": "DedicatedDatabase", @@ -11001,7 +10726,6 @@ "x-appwrite": { "method": "createDatabaseMigration", "group": "databases", - "weight": 965, "cookies": false, "type": "", "demo": "compute\/create-database-migration.md", @@ -11041,13 +10765,7 @@ "targetType": { "type": "string", "description": "Target database type to migrate to. Allowed values: shared (serverless, scales to zero when idle), dedicated (always-on with persistent resources).", - "x-example": "shared", - "enum": [ - "shared", - "dedicated" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "shared" } }, "required": [ @@ -11069,7 +10787,7 @@ "tags": [ "compute" ], - "description": " Get available point-in-time recovery windows for a dedicated database. Returns the earliest and latest recovery points.", + "description": "Get available point-in-time recovery windows for a dedicated database. Returns the earliest and latest recovery points.", "responses": { "200": { "description": "PITRWindows", @@ -11082,7 +10800,6 @@ "x-appwrite": { "method": "getDatabasePITRWindows", "group": "databases", - "weight": 956, "cookies": false, "type": "", "demo": "compute\/get-database-pitr-windows.md", @@ -11127,7 +10844,7 @@ "tags": [ "compute" ], - "description": " Get the connection pooler configuration for a dedicated database. Returns pooler mode, max connections, and pool size settings.", + "description": "Get the connection pooler configuration for a dedicated database. Returns pooler mode, max connections, and pool size settings.", "responses": { "200": { "description": "PoolerConfig", @@ -11140,7 +10857,6 @@ "x-appwrite": { "method": "getDatabasePooler", "group": "databases", - "weight": 945, "cookies": false, "type": "", "demo": "compute\/get-database-pooler.md", @@ -11185,7 +10901,7 @@ "tags": [ "compute" ], - "description": " Update the connection pooler configuration for a dedicated database. Configure pool mode, max connections, and pool sizes.", + "description": "Update the connection pooler configuration for a dedicated database. Configure pool mode, max connections, and pool sizes.", "responses": { "200": { "description": "PoolerConfig", @@ -11198,7 +10914,6 @@ "x-appwrite": { "method": "updateDatabasePooler", "group": "databases", - "weight": 946, "cookies": false, "type": "", "demo": "compute\/update-database-pooler.md", @@ -11239,12 +10954,6 @@ "type": "string", "description": "Connection pool mode. Allowed values: transaction, session. Transaction mode returns connections to the pool after each transaction; session mode holds connections for the entire session lifetime.", "x-example": "transaction", - "enum": [ - "transaction", - "session" - ], - "x-enum-name": null, - "x-enum-keys": [], "x-nullable": true }, "maxConnections": { @@ -11308,7 +11017,7 @@ "tags": [ "compute" ], - "description": " List all restorations for a dedicated database. Results can be filtered by status and type.", + "description": "List all restorations for a dedicated database. Results can be filtered by status and type.", "responses": { "200": { "description": "Dedicated database restorations list", @@ -11321,7 +11030,6 @@ "x-appwrite": { "method": "listDatabaseRestorations", "group": "databases", - "weight": 964, "cookies": false, "type": "", "demo": "compute\/list-database-restorations.md", @@ -11358,14 +11066,6 @@ "required": false, "type": "string", "x-example": "pending", - "enum": [ - "pending", - "running", - "completed", - "failed" - ], - "x-enum-name": null, - "x-enum-keys": [], "in": "query" }, { @@ -11374,12 +11074,6 @@ "required": false, "type": "string", "x-example": "backup", - "enum": [ - "backup", - "pitr" - ], - "x-enum-name": null, - "x-enum-keys": [], "in": "query" }, { @@ -11416,7 +11110,7 @@ "tags": [ "compute" ], - "description": " Restore a database from a backup or to a specific point in time (PITR). For backup restoration, provide a backupId. For PITR, provide a targetTime. PITR requires the database to have PITR enabled and is only available for enterprise databases.", + "description": "Restore a database from a backup or to a specific point in time (PITR). For backup restoration, provide a backupId. For PITR, provide a targetTime. PITR requires the database to have PITR enabled and is only available for enterprise databases.", "responses": { "202": { "description": "Restoration", @@ -11429,7 +11123,6 @@ "x-appwrite": { "method": "createDatabaseRestoration", "group": "databases", - "weight": 962, "cookies": false, "type": "", "demo": "compute\/create-database-restoration.md", @@ -11469,14 +11162,8 @@ "type": { "type": "string", "description": "Restoration type. Allowed values: backup, pitr. Use \"backup\" to restore from a specific backup, or \"pitr\" for point-in-time recovery.", - "x-example": "backup", "default": "backup", - "enum": [ - "backup", - "pitr" - ], - "x-enum-name": null, - "x-enum-keys": [] + "x-example": "backup" }, "backupId": { "type": "string", @@ -11508,7 +11195,7 @@ "tags": [ "compute" ], - "description": " Get details of a specific database restoration including its status, type, and timestamps.", + "description": "Get details of a specific database restoration including its status, type, and timestamps.", "responses": { "200": { "description": "Restoration", @@ -11521,7 +11208,6 @@ "x-appwrite": { "method": "getDatabaseRestoration", "group": "databases", - "weight": 963, "cookies": false, "type": "", "demo": "compute\/get-database-restoration.md", @@ -11574,7 +11260,7 @@ "tags": [ "compute" ], - "description": " Get the current schema for a dedicated database. Returns collections, fields, data types, constraints, and indexes.", + "description": "Get the current schema for a dedicated database. Returns collections, fields, data types, constraints, and indexes.", "responses": { "200": { "description": "Schema", @@ -11587,7 +11273,6 @@ "x-appwrite": { "method": "getDatabaseSchema", "group": "databases", - "weight": 966, "cookies": false, "type": "", "demo": "compute\/get-database-schema.md", @@ -11634,7 +11319,7 @@ "tags": [ "compute" ], - "description": " Preview a schema change against a dedicated database. Returns the expected impact including affected collections, records, and a dry-run diff of the schema before and after the change.", + "description": "Preview a schema change against a dedicated database. Returns the expected impact including affected collections, records, and a dry-run diff of the schema before and after the change.", "responses": { "200": { "description": "SchemaPreview", @@ -11647,7 +11332,6 @@ "x-appwrite": { "method": "createDatabaseSchemaPreview", "group": "databases", - "weight": 967, "cookies": false, "type": "", "demo": "compute\/create-database-schema-preview.md", @@ -11709,7 +11393,7 @@ "tags": [ "compute" ], - "description": " List slow queries for a dedicated database. Returns queries that exceeded the specified threshold.", + "description": "List slow queries for a dedicated database. Returns queries that exceeded the specified threshold.", "responses": { "200": { "description": "Dedicated database slow queries list", @@ -11722,7 +11406,6 @@ "x-appwrite": { "method": "listDatabaseQueries", "group": "databases", - "weight": 951, "cookies": false, "type": "", "demo": "compute\/list-database-queries.md", @@ -11787,7 +11470,7 @@ "tags": [ "compute" ], - "description": " Get real-time health and status information for a dedicated database. Returns health status, readiness, uptime, connection info, replica status, and volume information.", + "description": "Get real-time health and status information for a dedicated database. Returns health status, readiness, uptime, connection info, replica status, and volume information.", "responses": { "200": { "description": "Status", @@ -11800,7 +11483,6 @@ "x-appwrite": { "method": "getDatabaseStatus", "group": "databases", - "weight": 934, "cookies": false, "type": "", "demo": "compute\/get-database-status.md", @@ -11847,7 +11529,7 @@ "tags": [ "compute" ], - "description": " Upgrade a dedicated database to a new engine version. Uses blue-green deployment for zero-downtime cutover.", + "description": "Upgrade a dedicated database to a new engine version. Uses blue-green deployment for zero-downtime cutover.", "responses": { "200": { "description": "DedicatedDatabase", @@ -11860,7 +11542,6 @@ "x-appwrite": { "method": "createDatabaseUpgrade", "group": "databases", - "weight": 937, "cookies": false, "type": "", "demo": "compute\/create-database-upgrade.md", @@ -11922,7 +11603,7 @@ "tags": [ "compute" ], - "description": " Get usage metrics for a dedicated database including CPU, memory, storage, connections, and query statistics.", + "description": "Get usage metrics for a dedicated database including CPU, memory, storage, connections, and query statistics.", "responses": { "200": { "description": "DedicatedDatabase", @@ -11935,7 +11616,6 @@ "x-appwrite": { "method": "getDatabaseUsage", "group": "databases", - "weight": 935, "cookies": false, "type": "", "demo": "compute\/get-database-usage.md", @@ -11972,17 +11652,6 @@ "required": false, "type": "string", "x-example": "24h", - "enum": [ - "24h", - "30d", - "90d" - ], - "x-enum-name": null, - "x-enum-keys": [ - "Twenty Four Hours", - "Thirty Days", - "Ninety Days" - ], "default": "30d", "in": "query" } @@ -12015,7 +11684,6 @@ "x-appwrite": { "method": "chat", "group": "console", - "weight": 511, "cookies": false, "type": "", "demo": "assistant\/chat.md", @@ -12083,7 +11751,6 @@ "x-appwrite": { "method": "getCampaign", "group": null, - "weight": 981, "cookies": false, "type": "", "demo": "console\/get-campaign.md", @@ -12142,7 +11809,6 @@ "x-appwrite": { "method": "getCoupon", "group": null, - "weight": 978, "cookies": false, "type": "", "demo": "console\/get-coupon.md", @@ -12201,7 +11867,6 @@ "x-appwrite": { "method": "listOAuth2Providers", "group": "console", - "weight": 508, "cookies": false, "type": "", "demo": "console\/list-o-auth-2-providers.md", @@ -12249,7 +11914,6 @@ "x-appwrite": { "method": "getPlans", "group": null, - "weight": 976, "cookies": false, "type": "", "demo": "console\/get-plans.md", @@ -12283,8 +11947,7 @@ "appwrite", "imagine" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "Platform", "default": "appwrite", "in": "query" } @@ -12315,7 +11978,6 @@ "x-appwrite": { "method": "getPlan", "group": null, - "weight": 977, "cookies": false, "type": "", "demo": "console\/get-plan.md", @@ -12374,7 +12036,6 @@ "x-appwrite": { "method": "getProgram", "group": null, - "weight": 979, "cookies": false, "type": "", "demo": "console\/get-program.md", @@ -12435,7 +12096,6 @@ "x-appwrite": { "method": "createProgramMembership", "group": null, - "weight": 980, "cookies": false, "type": "", "demo": "console\/create-program-membership.md", @@ -12494,7 +12154,6 @@ "x-appwrite": { "method": "listRegions", "group": null, - "weight": 975, "cookies": false, "type": "", "demo": "console\/list-regions.md", @@ -12538,7 +12197,6 @@ "x-appwrite": { "method": "getResource", "group": null, - "weight": 512, "cookies": false, "type": "", "demo": "console\/get-resource.md", @@ -12579,7 +12237,6 @@ "rules" ], "x-enum-name": "ConsoleResourceType", - "x-enum-keys": [], "in": "query" } ] @@ -12609,7 +12266,6 @@ "x-appwrite": { "method": "listOrganizationScopes", "group": "console", - "weight": 510, "cookies": false, "type": "", "demo": "console\/list-organization-scopes.md", @@ -12657,7 +12313,6 @@ "x-appwrite": { "method": "listProjectScopes", "group": "console", - "weight": 509, "cookies": false, "type": "", "demo": "console\/list-project-scopes.md", @@ -12707,7 +12362,6 @@ "x-appwrite": { "method": "createSource", "group": null, - "weight": 982, "cookies": false, "type": "", "demo": "console\/create-source.md", @@ -12798,7 +12452,6 @@ "x-appwrite": { "method": "suggestColumns", "group": null, - "weight": 983, "cookies": false, "type": "", "demo": "console\/suggest-columns.md", @@ -12893,7 +12546,6 @@ "x-appwrite": { "method": "suggestIndexes", "group": null, - "weight": 984, "cookies": false, "type": "", "demo": "console\/suggest-indexes.md", @@ -12980,7 +12632,6 @@ "x-appwrite": { "method": "suggestQueries", "group": null, - "weight": 985, "cookies": false, "type": "", "demo": "console\/suggest-queries.md", @@ -13169,7 +12820,13 @@ "transactions", "transaction_logs", "presence_logs", - "stats" + "stats", + "dedicated_databases", + "dedicated_database_configs", + "dedicated_database_runtimes", + "dedicated_database_operations", + "dedicated_database_backups", + "dedicated_database_restorations" ], "in": "query" }, @@ -13224,7 +12881,6 @@ "x-appwrite": { "method": "getEmailTemplate", "group": null, - "weight": 507, "cookies": false, "type": "", "demo": "console\/get-email-template.md", @@ -13263,7 +12919,6 @@ "otpSession" ], "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [], "in": "path" }, { @@ -13406,7 +13061,6 @@ "zu" ], "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [], "in": "query" } ] @@ -13436,7 +13090,6 @@ "x-appwrite": { "method": "variables", "group": "console", - "weight": 506, "cookies": false, "type": "", "demo": "console\/variables.md", @@ -13484,7 +13137,6 @@ "x-appwrite": { "method": "list", "group": "databases", - "weight": 704, "cookies": false, "type": "", "demo": "databases\/list.md", @@ -13600,7 +13252,6 @@ "x-appwrite": { "method": "create", "group": "databases", - "weight": 700, "cookies": false, "type": "", "demo": "databases\/create.md", @@ -13681,8 +13332,8 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -13718,7 +13369,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 774, "cookies": false, "type": "", "demo": "databases\/list-transactions.md", @@ -13786,7 +13436,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 770, "cookies": false, "type": "", "demo": "databases\/create-transaction.md", @@ -13824,8 +13473,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -13858,7 +13507,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 771, "cookies": false, "type": "", "demo": "databases\/get-transaction.md", @@ -13922,7 +13570,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 772, "cookies": false, "type": "", "demo": "databases\/update-transaction.md", @@ -13968,14 +13615,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -14002,7 +13649,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 773, "cookies": false, "type": "", "demo": "databases\/delete-transaction.md", @@ -14068,7 +13714,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 775, "cookies": false, "type": "", "demo": "databases\/create-operations.md", @@ -14114,8 +13759,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -14150,7 +13795,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 707, "cookies": false, "type": "", "demo": "databases\/list-usage.md", @@ -14252,7 +13896,6 @@ "x-appwrite": { "method": "get", "group": "databases", - "weight": 701, "cookies": false, "type": "", "demo": "databases\/get.md", @@ -14346,7 +13989,6 @@ "x-appwrite": { "method": "update", "group": "databases", - "weight": 702, "cookies": false, "type": "", "demo": "databases\/update.md", @@ -14429,8 +14071,8 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } } } @@ -14457,7 +14099,6 @@ "x-appwrite": { "method": "delete", "group": "databases", - "weight": 703, "cookies": false, "type": "", "demo": "databases\/delete.md", @@ -14550,7 +14191,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 712, "cookies": false, "type": "", "demo": "databases\/list-collections.md", @@ -14645,7 +14285,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 708, "cookies": false, "type": "", "demo": "databases\/create-collection.md", @@ -14711,20 +14350,20 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "attributes": { "type": "array", "description": "Array of attribute definitions to create. Each attribute should contain: key (string), type (string: string, integer, float, boolean, datetime), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -14732,8 +14371,8 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of attribute keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -14772,7 +14411,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 709, "cookies": false, "type": "", "demo": "databases\/get-collection.md", @@ -14845,7 +14483,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 710, "cookies": false, "type": "", "demo": "databases\/update-collection.md", @@ -14914,20 +14551,20 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this collection as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -14954,7 +14591,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 711, "cookies": false, "type": "", "demo": "databases\/delete-collection.md", @@ -15027,7 +14663,6 @@ "x-appwrite": { "method": "listAttributes", "group": "attributes", - "weight": 729, "cookies": false, "type": "", "demo": "databases\/list-attributes.md", @@ -15123,7 +14758,6 @@ "x-appwrite": { "method": "createBigIntAttribute", "group": "attributes", - "weight": 742, "cookies": false, "type": "", "demo": "databases\/create-big-int-attribute.md", @@ -15209,8 +14843,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -15248,7 +14882,6 @@ "x-appwrite": { "method": "updateBigIntAttribute", "group": "attributes", - "weight": 743, "cookies": false, "type": "", "demo": "databases\/update-big-int-attribute.md", @@ -15375,7 +15008,6 @@ "x-appwrite": { "method": "createBooleanAttribute", "group": "attributes", - "weight": 730, "cookies": false, "type": "", "demo": "databases\/create-boolean-attribute.md", @@ -15446,8 +15078,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -15485,7 +15117,6 @@ "x-appwrite": { "method": "updateBooleanAttribute", "group": "attributes", - "weight": 731, "cookies": false, "type": "", "demo": "databases\/update-boolean-attribute.md", @@ -15597,7 +15228,6 @@ "x-appwrite": { "method": "createDatetimeAttribute", "group": "attributes", - "weight": 732, "cookies": false, "type": "", "demo": "databases\/create-datetime-attribute.md", @@ -15669,8 +15299,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -15708,7 +15338,6 @@ "x-appwrite": { "method": "updateDatetimeAttribute", "group": "attributes", - "weight": 733, "cookies": false, "type": "", "demo": "databases\/update-datetime-attribute.md", @@ -15821,7 +15450,6 @@ "x-appwrite": { "method": "createEmailAttribute", "group": "attributes", - "weight": 734, "cookies": false, "type": "", "demo": "databases\/create-email-attribute.md", @@ -15893,8 +15521,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -15932,7 +15560,6 @@ "x-appwrite": { "method": "updateEmailAttribute", "group": "attributes", - "weight": 735, "cookies": false, "type": "", "demo": "databases\/update-email-attribute.md", @@ -16045,7 +15672,6 @@ "x-appwrite": { "method": "createEnumAttribute", "group": "attributes", - "weight": 736, "cookies": false, "type": "", "demo": "databases\/create-enum-attribute.md", @@ -16124,8 +15750,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -16164,7 +15790,6 @@ "x-appwrite": { "method": "updateEnumAttribute", "group": "attributes", - "weight": 737, "cookies": false, "type": "", "demo": "databases\/update-enum-attribute.md", @@ -16285,7 +15910,6 @@ "x-appwrite": { "method": "createFloatAttribute", "group": "attributes", - "weight": 738, "cookies": false, "type": "", "demo": "databases\/create-float-attribute.md", @@ -16371,8 +15995,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -16410,7 +16034,6 @@ "x-appwrite": { "method": "updateFloatAttribute", "group": "attributes", - "weight": 739, "cookies": false, "type": "", "demo": "databases\/update-float-attribute.md", @@ -16537,7 +16160,6 @@ "x-appwrite": { "method": "createIntegerAttribute", "group": "attributes", - "weight": 740, "cookies": false, "type": "", "demo": "databases\/create-integer-attribute.md", @@ -16623,8 +16245,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -16662,7 +16284,6 @@ "x-appwrite": { "method": "updateIntegerAttribute", "group": "attributes", - "weight": 741, "cookies": false, "type": "", "demo": "databases\/update-integer-attribute.md", @@ -16789,7 +16410,6 @@ "x-appwrite": { "method": "createIpAttribute", "group": "attributes", - "weight": 744, "cookies": false, "type": "", "demo": "databases\/create-ip-attribute.md", @@ -16860,8 +16480,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -16899,7 +16519,6 @@ "x-appwrite": { "method": "updateIpAttribute", "group": "attributes", - "weight": 745, "cookies": false, "type": "", "demo": "databases\/update-ip-attribute.md", @@ -17011,7 +16630,6 @@ "x-appwrite": { "method": "createLineAttribute", "group": "attributes", - "weight": 746, "cookies": false, "type": "", "demo": "databases\/create-line-attribute.md", @@ -17115,7 +16733,6 @@ "x-appwrite": { "method": "updateLineAttribute", "group": "attributes", - "weight": 747, "cookies": false, "type": "", "demo": "databases\/update-line-attribute.md", @@ -17226,7 +16843,6 @@ "x-appwrite": { "method": "createLongtextAttribute", "group": "attributes", - "weight": 764, "cookies": false, "type": "", "demo": "databases\/create-longtext-attribute.md", @@ -17293,14 +16909,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -17338,7 +16954,6 @@ "x-appwrite": { "method": "updateLongtextAttribute", "group": "attributes", - "weight": 765, "cookies": false, "type": "", "demo": "databases\/update-longtext-attribute.md", @@ -17446,7 +17061,6 @@ "x-appwrite": { "method": "createMediumtextAttribute", "group": "attributes", - "weight": 762, "cookies": false, "type": "", "demo": "databases\/create-mediumtext-attribute.md", @@ -17513,14 +17127,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -17558,7 +17172,6 @@ "x-appwrite": { "method": "updateMediumtextAttribute", "group": "attributes", - "weight": 763, "cookies": false, "type": "", "demo": "databases\/update-mediumtext-attribute.md", @@ -17666,7 +17279,6 @@ "x-appwrite": { "method": "createPointAttribute", "group": "attributes", - "weight": 748, "cookies": false, "type": "", "demo": "databases\/create-point-attribute.md", @@ -17770,7 +17382,6 @@ "x-appwrite": { "method": "updatePointAttribute", "group": "attributes", - "weight": 749, "cookies": false, "type": "", "demo": "databases\/update-point-attribute.md", @@ -17881,7 +17492,6 @@ "x-appwrite": { "method": "createPolygonAttribute", "group": "attributes", - "weight": 750, "cookies": false, "type": "", "demo": "databases\/create-polygon-attribute.md", @@ -17985,7 +17595,6 @@ "x-appwrite": { "method": "updatePolygonAttribute", "group": "attributes", - "weight": 751, "cookies": false, "type": "", "demo": "databases\/update-polygon-attribute.md", @@ -18096,7 +17705,6 @@ "x-appwrite": { "method": "createRelationshipAttribute", "group": "attributes", - "weight": 752, "cookies": false, "type": "", "demo": "databases\/create-relationship-attribute.md", @@ -18163,14 +17771,13 @@ "manyToMany", "oneToMany" ], - "x-enum-name": "RelationshipType", - "x-enum-keys": [] + "x-enum-name": "RelationshipType" }, "twoWay": { "type": "boolean", "description": "Is Two Way?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "key": { "type": "string", @@ -18187,15 +17794,14 @@ "onDelete": { "type": "string", "description": "Constraints option", - "x-example": "cascade", "default": "restrict", + "x-example": "cascade", "enum": [ "cascade", "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" } }, "required": [ @@ -18233,7 +17839,6 @@ "x-appwrite": { "method": "updateRelationshipAttribute", "group": "attributes", - "weight": 753, "cookies": false, "type": "", "demo": "databases\/update-relationship-attribute.md", @@ -18301,8 +17906,7 @@ "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" }, "newKey": { "type": "string", @@ -18342,7 +17946,6 @@ "x-appwrite": { "method": "createStringAttribute", "group": "attributes", - "weight": 754, "cookies": false, "type": "", "demo": "databases\/create-string-attribute.md", @@ -18419,14 +18022,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -18465,7 +18068,6 @@ "x-appwrite": { "method": "updateStringAttribute", "group": "attributes", - "weight": 755, "cookies": false, "type": "", "demo": "databases\/update-string-attribute.md", @@ -18584,7 +18186,6 @@ "x-appwrite": { "method": "createTextAttribute", "group": "attributes", - "weight": 760, "cookies": false, "type": "", "demo": "databases\/create-text-attribute.md", @@ -18651,14 +18252,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -18696,7 +18297,6 @@ "x-appwrite": { "method": "updateTextAttribute", "group": "attributes", - "weight": 761, "cookies": false, "type": "", "demo": "databases\/update-text-attribute.md", @@ -18804,7 +18404,6 @@ "x-appwrite": { "method": "createUrlAttribute", "group": "attributes", - "weight": 756, "cookies": false, "type": "", "demo": "databases\/create-url-attribute.md", @@ -18876,8 +18475,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -18915,7 +18514,6 @@ "x-appwrite": { "method": "updateUrlAttribute", "group": "attributes", - "weight": 757, "cookies": false, "type": "", "demo": "databases\/update-url-attribute.md", @@ -19028,7 +18626,6 @@ "x-appwrite": { "method": "createVarcharAttribute", "group": "attributes", - "weight": 758, "cookies": false, "type": "", "demo": "databases\/create-varchar-attribute.md", @@ -19101,14 +18698,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -19147,7 +18744,6 @@ "x-appwrite": { "method": "updateVarcharAttribute", "group": "attributes", - "weight": 759, "cookies": false, "type": "", "demo": "databases\/update-varchar-attribute.md", @@ -19342,7 +18938,6 @@ "x-appwrite": { "method": "getAttribute", "group": "attributes", - "weight": 727, "cookies": false, "type": "", "demo": "databases\/get-attribute.md", @@ -19417,7 +19012,6 @@ "x-appwrite": { "method": "deleteAttribute", "group": "attributes", - "weight": 728, "cookies": false, "type": "", "demo": "databases\/delete-attribute.md", @@ -19497,7 +19091,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 918, "cookies": false, "type": "", "demo": "databases\/list-documents.md", @@ -19612,7 +19205,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 715, "cookies": false, "type": "", "demo": "databases\/create-document.md", @@ -19739,14 +19331,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -19760,8 +19352,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -19802,7 +19394,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 720, "cookies": false, "type": "", "demo": "databases\/upsert-documents.md", @@ -19935,7 +19526,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 718, "cookies": false, "type": "", "demo": "databases\/update-documents.md", @@ -19990,14 +19580,14 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -20038,7 +19628,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 722, "cookies": false, "type": "", "demo": "databases\/delete-documents.md", @@ -20093,8 +19682,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -20135,7 +19724,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 716, "cookies": false, "type": "", "demo": "databases\/get-document.md", @@ -20239,7 +19827,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 719, "cookies": false, "type": "", "demo": "databases\/upsert-document.md", @@ -20341,8 +19928,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required attributes of the document to be created or updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -20389,7 +19976,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 717, "cookies": false, "type": "", "demo": "databases\/update-document.md", @@ -20455,8 +20041,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -20498,7 +20084,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 721, "cookies": false, "type": "", "demo": "databases\/delete-document.md", @@ -20597,7 +20182,6 @@ "x-appwrite": { "method": "listDocumentLogs", "group": "logs", - "weight": 724, "cookies": false, "type": "", "demo": "databases\/list-document-logs.md", @@ -20690,7 +20274,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 726, "cookies": false, "type": "", "demo": "databases\/decrement-document-attribute.md", @@ -20763,8 +20346,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -20812,7 +20395,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 725, "cookies": false, "type": "", "demo": "databases\/increment-document-attribute.md", @@ -20885,8 +20467,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -20932,7 +20514,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 769, "cookies": false, "type": "", "demo": "databases\/list-indexes.md", @@ -21026,7 +20607,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 766, "cookies": false, "type": "", "demo": "databases\/create-index.md", @@ -21093,8 +20673,7 @@ "unique", "spatial" ], - "x-enum-name": "DatabasesIndexType", - "x-enum-keys": [] + "x-enum-name": "DatabasesIndexType" }, "attributes": { "type": "array", @@ -21107,23 +20686,22 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "integer" } @@ -21163,7 +20741,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 767, "cookies": false, "type": "", "demo": "databases\/get-index.md", @@ -21238,7 +20815,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 768, "cookies": false, "type": "", "demo": "databases\/delete-index.md", @@ -21318,7 +20894,6 @@ "x-appwrite": { "method": "listCollectionLogs", "group": "collections", - "weight": 713, "cookies": false, "type": "", "demo": "databases\/list-collection-logs.md", @@ -21401,7 +20976,6 @@ "x-appwrite": { "method": "getCollectionUsage", "group": null, - "weight": 714, "cookies": false, "type": "", "demo": "databases\/get-collection-usage.md", @@ -21492,7 +21066,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 705, "cookies": false, "type": "", "demo": "databases\/list-logs.md", @@ -21597,7 +21170,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 706, "cookies": false, "type": "", "demo": "databases\/get-usage.md", @@ -21710,7 +21282,6 @@ "x-appwrite": { "method": "list", "group": "documentsdb", - "weight": 920, "cookies": false, "type": "", "demo": "documentsdb\/list.md", @@ -21784,7 +21355,6 @@ "x-appwrite": { "method": "create", "group": "documentsdb", - "weight": 922, "cookies": false, "type": "", "demo": "documentsdb\/create.md", @@ -21829,8 +21399,8 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -21866,7 +21436,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 883, "cookies": false, "type": "", "demo": "documentsdb\/list-transactions.md", @@ -21934,7 +21503,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 879, "cookies": false, "type": "", "demo": "documentsdb\/create-transaction.md", @@ -21972,8 +21540,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -22006,7 +21574,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 880, "cookies": false, "type": "", "demo": "documentsdb\/get-transaction.md", @@ -22070,7 +21637,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 881, "cookies": false, "type": "", "demo": "documentsdb\/update-transaction.md", @@ -22116,14 +21682,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -22150,7 +21716,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 882, "cookies": false, "type": "", "demo": "documentsdb\/delete-transaction.md", @@ -22214,7 +21779,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 857, "cookies": false, "type": "", "demo": "documentsdb\/list-usage.md", @@ -22308,7 +21872,6 @@ "x-appwrite": { "method": "get", "group": "documentsdb", - "weight": 852, "cookies": false, "type": "", "demo": "documentsdb\/get.md", @@ -22369,7 +21932,6 @@ "x-appwrite": { "method": "update", "group": "documentsdb", - "weight": 853, "cookies": false, "type": "", "demo": "documentsdb\/update.md", @@ -22417,8 +21979,8 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -22448,7 +22010,6 @@ "x-appwrite": { "method": "delete", "group": "documentsdb", - "weight": 923, "cookies": false, "type": "", "demo": "documentsdb\/delete.md", @@ -22509,7 +22070,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 862, "cookies": false, "type": "", "demo": "documentsdb\/list-collections.md", @@ -22600,7 +22160,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 858, "cookies": false, "type": "", "demo": "documentsdb\/create-collection.md", @@ -22662,20 +22221,20 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "attributes": { "type": "array", "description": "Array of attribute definitions to create. Each attribute should contain: key (string), type (string: string, integer, float, boolean, datetime, relationship), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -22683,8 +22242,8 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of attribute keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -22723,7 +22282,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 859, "cookies": false, "type": "", "demo": "documentsdb\/get-collection.md", @@ -22792,7 +22350,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 860, "cookies": false, "type": "", "demo": "documentsdb\/update-collection.md", @@ -22856,20 +22413,20 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this collection as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -22899,7 +22456,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 861, "cookies": false, "type": "", "demo": "documentsdb\/delete-collection.md", @@ -22968,7 +22524,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 921, "cookies": false, "type": "", "demo": "documentsdb\/list-documents.md", @@ -23079,7 +22634,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 868, "cookies": false, "type": "", "demo": "documentsdb\/create-document.md", @@ -23192,14 +22746,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -23212,8 +22766,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -23253,7 +22807,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 873, "cookies": false, "type": "", "demo": "documentsdb\/upsert-documents.md", @@ -23377,7 +22930,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 871, "cookies": false, "type": "", "demo": "documentsdb\/update-documents.md", @@ -23428,14 +22980,14 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23475,7 +23027,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 875, "cookies": false, "type": "", "demo": "documentsdb\/delete-documents.md", @@ -23526,8 +23077,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23567,7 +23118,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 869, "cookies": false, "type": "", "demo": "documentsdb\/get-document.md", @@ -23667,7 +23217,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 872, "cookies": false, "type": "", "demo": "documentsdb\/upsert-document.md", @@ -23761,8 +23310,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -23807,7 +23356,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 870, "cookies": false, "type": "", "demo": "documentsdb\/update-document.md", @@ -23869,8 +23417,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -23910,7 +23458,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 874, "cookies": false, "type": "", "demo": "documentsdb\/delete-document.md", @@ -24006,7 +23553,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 878, "cookies": false, "type": "", "demo": "documentsdb\/decrement-document-attribute.md", @@ -24075,8 +23621,8 @@ "value": { "type": "number", "description": "Value to decrement the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -24122,7 +23668,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 877, "cookies": false, "type": "", "demo": "documentsdb\/increment-document-attribute.md", @@ -24191,8 +23736,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -24236,7 +23781,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 867, "cookies": false, "type": "", "demo": "documentsdb\/list-indexes.md", @@ -24326,7 +23870,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 864, "cookies": false, "type": "", "demo": "documentsdb\/create-index.md", @@ -24388,8 +23931,7 @@ "fulltext", "unique" ], - "x-enum-name": "DocumentsDBIndexType", - "x-enum-keys": [] + "x-enum-name": "DocumentsDBIndexType" }, "attributes": { "type": "array", @@ -24402,23 +23944,22 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "integer" } @@ -24458,7 +23999,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 865, "cookies": false, "type": "", "demo": "documentsdb\/get-index.md", @@ -24529,7 +24069,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 866, "cookies": false, "type": "", "demo": "documentsdb\/delete-index.md", @@ -24605,7 +24144,6 @@ "x-appwrite": { "method": "getCollectionUsage", "group": null, - "weight": 863, "cookies": false, "type": "", "demo": "documentsdb\/get-collection-usage.md", @@ -24692,7 +24230,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 856, "cookies": false, "type": "", "demo": "documentsdb\/get-usage.md", @@ -24784,7 +24321,7 @@ "tags": [ "domains" ], - "description": " List all domains registered for this project. This endpoint supports pagination.", + "description": "List all domains registered for this project. This endpoint supports pagination.", "responses": { "200": { "description": "Domains list", @@ -24797,7 +24334,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 991, "cookies": false, "type": "", "demo": "domains\/list.md", @@ -24855,7 +24391,7 @@ "tags": [ "domains" ], - "description": " Create a new domain. Before creating a domain, you need to ensure that your DNS provider is properly configured. After creating the domain, you can use the verification endpoint to check if the domain is ready to be used.", + "description": "Create a new domain. Before creating a domain, you need to ensure that your DNS provider is properly configured. After creating the domain, you can use the verification endpoint to check if the domain is ready to be used.", "responses": { "201": { "description": "Domain", @@ -24868,7 +24404,6 @@ "x-appwrite": { "method": "create", "group": null, - "weight": 986, "cookies": false, "type": "", "demo": "domains\/create.md", @@ -24928,7 +24463,7 @@ "tags": [ "domains" ], - "description": " Get the registration price for a domain name.", + "description": "Get the registration price for a domain name.", "responses": { "200": { "description": "DomainPrice", @@ -24941,7 +24476,6 @@ "x-appwrite": { "method": "getPrice", "group": null, - "weight": 989, "cookies": false, "type": "", "demo": "domains\/get-price.md", @@ -24992,8 +24526,7 @@ "renewal", "trade" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "DomainRegistrationType", "default": "new", "in": "query" } @@ -25013,7 +24546,7 @@ "tags": [ "domains" ], - "description": " Initiate a domain purchase by providing registrant details and a payment method. Authorizes the payment and returns a `clientSecret`. If 3D Secure is required, use the `clientSecret` on the client to complete the authentication challenge. Once authentication is complete (or if none is needed), call the Update Purchase endpoint to capture the payment and finalize the purchase.", + "description": "Initiate a domain purchase by providing registrant details and a payment method. Authorizes the payment and returns a `clientSecret`. If 3D Secure is required, use the `clientSecret` on the client to complete the authentication challenge. Once authentication is complete (or if none is needed), call the Update Purchase endpoint to capture the payment and finalize the purchase.", "responses": { "201": { "description": "DomainPurchase", @@ -25026,7 +24559,6 @@ "x-appwrite": { "method": "createPurchase", "group": null, - "weight": 1036, "cookies": false, "type": "", "demo": "domains\/create-purchase.md", @@ -25095,27 +24627,27 @@ "addressLine3": { "type": "string", "description": "Additional address line for the registrant (line 3).", - "x-example": "<ADDRESS_LINE3>", - "default": "" + "default": "", + "x-example": "<ADDRESS_LINE3>" }, "companyName": { "type": "string", "description": "Company or organization name for the registrant.", - "x-example": "<COMPANY_NAME>", - "default": "" + "default": "", + "x-example": "<COMPANY_NAME>" }, "periodYears": { "type": "integer", "description": "Registration term in years (1-10).", - "x-example": 1, "default": 1, + "x-example": 1, "format": "int32" }, "autoRenewal": { "type": "boolean", "description": "Whether the domain should renew automatically after purchase.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "paymentMethodId": { "type": "string", @@ -25151,7 +24683,7 @@ "tags": [ "domains" ], - "description": " Finalize a domain purchase initiated with Create Purchase. Verifies that any required 3D Secure authentication is complete, registers the domain, captures the payment, and provisions default DNS records. Returns a 402 error if authentication is still pending.", + "description": "Finalize a domain purchase initiated with Create Purchase. Verifies that any required 3D Secure authentication is complete, registers the domain, captures the payment, and provisions default DNS records. Returns a 402 error if authentication is still pending.", "responses": { "200": { "description": "DomainPurchase", @@ -25164,7 +24696,6 @@ "x-appwrite": { "method": "updatePurchase", "group": null, - "weight": 1037, "cookies": false, "type": "", "demo": "domains\/update-purchase.md", @@ -25226,7 +24757,7 @@ "tags": [ "domains" ], - "description": " List domain suggestions.", + "description": "List domain suggestions.", "responses": { "200": { "description": "Domain suggestions list", @@ -25239,7 +24770,6 @@ "x-appwrite": { "method": "listSuggestions", "group": null, - "weight": 1035, "cookies": false, "type": "", "demo": "domains\/list-suggestions.md", @@ -25300,8 +24830,7 @@ "premium", "suggestion" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "DomainSuggestionType", "in": "query" }, { @@ -25336,7 +24865,7 @@ "tags": [ "domains" ], - "description": " Initiate a domain transfer-in by providing an authorization code, registrant details, and a payment method. Authorizes the payment and returns a `clientSecret`. If 3D Secure is required, use the `clientSecret` on the client to complete the authentication challenge. Once authentication is complete (or if none is needed), call the Update Transfer In endpoint to capture the payment and submit the transfer.", + "description": "Initiate a domain transfer-in by providing an authorization code, registrant details, and a payment method. Authorizes the payment and returns a `clientSecret`. If 3D Secure is required, use the `clientSecret` on the client to complete the authentication challenge. Once authentication is complete (or if none is needed), call the Update Transfer In endpoint to capture the payment and submit the transfer.", "responses": { "201": { "description": "DomainPurchase", @@ -25349,7 +24878,6 @@ "x-appwrite": { "method": "createTransferIn", "group": null, - "weight": 996, "cookies": false, "type": "", "demo": "domains\/create-transfer-in.md", @@ -25396,8 +24924,8 @@ "autoRenewal": { "type": "boolean", "description": "Whether the domain should renew automatically after transfer.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "paymentMethodId": { "type": "string", @@ -25429,7 +24957,7 @@ "tags": [ "domains" ], - "description": " Finalize a domain transfer-in initiated with Create Transfer In. Verifies that any required 3D Secure authentication is complete, submits the transfer with the authorization code, captures the payment, and sends a confirmation email. Returns a 402 error if authentication is still pending.", + "description": "Finalize a domain transfer-in initiated with Create Transfer In. Verifies that any required 3D Secure authentication is complete, submits the transfer with the authorization code, captures the payment, and sends a confirmation email. Returns a 402 error if authentication is still pending.", "responses": { "200": { "description": "DomainPurchase", @@ -25442,7 +24970,6 @@ "x-appwrite": { "method": "updateTransferIn", "group": null, - "weight": 997, "cookies": false, "type": "", "demo": "domains\/update-transfer-in.md", @@ -25506,7 +25033,7 @@ "tags": [ "domains" ], - "description": " Initiate a domain transfer-out by generating an authorization code for the specified domain. The returned `authCode` should be provided to the gaining provider to complete the transfer. If the domain has auto-renewal enabled, it will be automatically disabled as part of this operation.", + "description": "Initiate a domain transfer-out by generating an authorization code for the specified domain. The returned `authCode` should be provided to the gaining provider to complete the transfer. If the domain has auto-renewal enabled, it will be automatically disabled as part of this operation.", "responses": { "202": { "description": "domainTransferOut", @@ -25519,7 +25046,6 @@ "x-appwrite": { "method": "createTransferOut", "group": null, - "weight": 998, "cookies": false, "type": "", "demo": "domains\/create-transfer-out.md", @@ -25579,7 +25105,7 @@ "tags": [ "domains" ], - "description": " Get a domain by its unique ID.", + "description": "Get a domain by its unique ID.", "responses": { "200": { "description": "Domain", @@ -25592,7 +25118,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 988, "cookies": false, "type": "", "demo": "domains\/get.md", @@ -25647,7 +25172,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 987, "cookies": false, "type": "", "demo": "domains\/delete.md", @@ -25694,7 +25218,7 @@ "tags": [ "domains" ], - "description": " Enable or disable auto-renewal for a domain.", + "description": "Enable or disable auto-renewal for a domain.", "responses": { "200": { "description": "Domain", @@ -25707,7 +25231,6 @@ "x-appwrite": { "method": "updateAutoRenewal", "group": null, - "weight": 992, "cookies": false, "type": "", "demo": "domains\/update-auto-renewal.md", @@ -25771,7 +25294,7 @@ "tags": [ "domains" ], - "description": " Verify which NS records are used and update the domain accordingly. This will check the domain's\n nameservers and update the domain's status based on whether the nameservers match the expected\n Appwrite nameservers.", + "description": "Verify which NS records are used and update the domain accordingly. This will check the domain's\nnameservers and update the domain's status based on whether the nameservers match the expected\nAppwrite nameservers.", "responses": { "200": { "description": "Domain", @@ -25784,7 +25307,6 @@ "x-appwrite": { "method": "updateNameservers", "group": null, - "weight": 993, "cookies": false, "type": "", "demo": "domains\/update-nameservers.md", @@ -25829,7 +25351,7 @@ "tags": [ "domains" ], - "description": " List Google Workspace DNS records.", + "description": "List Google Workspace DNS records.", "responses": { "201": { "description": "DNS records list", @@ -25842,7 +25364,6 @@ "x-appwrite": { "method": "getPresetGoogleWorkspace", "group": null, - "weight": 1024, "cookies": false, "type": "", "demo": "domains\/get-preset-google-workspace.md", @@ -25887,7 +25408,7 @@ "tags": [ "domains" ], - "description": " Add Google Workspace DNS records to the domain. This will create the required MX records \n for Google Workspace email hosting.", + "description": "Add Google Workspace DNS records to the domain. This will create the required MX records \nfor Google Workspace email hosting.", "responses": { "201": { "description": "DNS records list", @@ -25900,7 +25421,6 @@ "x-appwrite": { "method": "createPresetGoogleWorkspace", "group": null, - "weight": 1023, "cookies": false, "type": "", "demo": "domains\/create-preset-google-workspace.md", @@ -25945,7 +25465,7 @@ "tags": [ "domains" ], - "description": " List iCloud DNS records.", + "description": "List iCloud DNS records.", "responses": { "201": { "description": "DNS records list", @@ -25958,7 +25478,6 @@ "x-appwrite": { "method": "getPresetICloud", "group": null, - "weight": 1034, "cookies": false, "type": "", "demo": "domains\/get-preset-i-cloud.md", @@ -26003,7 +25522,7 @@ "tags": [ "domains" ], - "description": " Add iCloud DNS records to the domain. This will create the required MX and SPF records\n for using iCloud email services with your domain.", + "description": "Add iCloud DNS records to the domain. This will create the required MX and SPF records\nfor using iCloud email services with your domain.", "responses": { "201": { "description": "DNS records list", @@ -26016,7 +25535,6 @@ "x-appwrite": { "method": "createPresetICloud", "group": null, - "weight": 1033, "cookies": false, "type": "", "demo": "domains\/create-preset-i-cloud.md", @@ -26061,7 +25579,7 @@ "tags": [ "domains" ], - "description": " List Mailgun DNS records.", + "description": "List Mailgun DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26074,7 +25592,6 @@ "x-appwrite": { "method": "getPresetMailgun", "group": null, - "weight": 1026, "cookies": false, "type": "", "demo": "domains\/get-preset-mailgun.md", @@ -26119,7 +25636,7 @@ "tags": [ "domains" ], - "description": " Add Mailgun DNS records to the domain. This endpoint will create the required DNS records \n for Mailgun in the specified domain.", + "description": "Add Mailgun DNS records to the domain. This endpoint will create the required DNS records \nfor Mailgun in the specified domain.", "responses": { "201": { "description": "DNS records list", @@ -26132,7 +25649,6 @@ "x-appwrite": { "method": "createPresetMailgun", "group": null, - "weight": 1025, "cookies": false, "type": "", "demo": "domains\/create-preset-mailgun.md", @@ -26177,7 +25693,7 @@ "tags": [ "domains" ], - "description": " List Outlook DNS records.", + "description": "List Outlook DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26190,7 +25706,6 @@ "x-appwrite": { "method": "getPresetOutlook", "group": null, - "weight": 1032, "cookies": false, "type": "", "demo": "domains\/get-preset-outlook.md", @@ -26235,7 +25750,7 @@ "tags": [ "domains" ], - "description": " Add Outlook DNS records to the domain. This will create the required MX records\n for setting up Outlook email hosting for your domain.", + "description": "Add Outlook DNS records to the domain. This will create the required MX records\nfor setting up Outlook email hosting for your domain.", "responses": { "201": { "description": "DNS records list", @@ -26248,7 +25763,6 @@ "x-appwrite": { "method": "createPresetOutlook", "group": null, - "weight": 1031, "cookies": false, "type": "", "demo": "domains\/create-preset-outlook.md", @@ -26293,7 +25807,7 @@ "tags": [ "domains" ], - "description": " List ProtonMail DNS records.", + "description": "List ProtonMail DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26306,7 +25820,6 @@ "x-appwrite": { "method": "getPresetProtonMail", "group": null, - "weight": 1030, "cookies": false, "type": "", "demo": "domains\/get-preset-proton-mail.md", @@ -26351,7 +25864,7 @@ "tags": [ "domains" ], - "description": " Add ProtonMail DNS records to the domain. This will create the required MX records\n for using ProtonMail with your custom domain.", + "description": "Add ProtonMail DNS records to the domain. This will create the required MX records\nfor using ProtonMail with your custom domain.", "responses": { "201": { "description": "DNS records list", @@ -26364,7 +25877,6 @@ "x-appwrite": { "method": "createPresetProtonMail", "group": null, - "weight": 1029, "cookies": false, "type": "", "demo": "domains\/create-preset-proton-mail.md", @@ -26409,7 +25921,7 @@ "tags": [ "domains" ], - "description": " List Zoho DNS records.", + "description": "List Zoho DNS records.", "responses": { "201": { "description": "DNS records list", @@ -26422,7 +25934,6 @@ "x-appwrite": { "method": "getPresetZoho", "group": null, - "weight": 1028, "cookies": false, "type": "", "demo": "domains\/get-preset-zoho.md", @@ -26467,7 +25978,7 @@ "tags": [ "domains" ], - "description": " Add Zoho Mail DNS records to the domain. This will create the required MX records\n for setting up Zoho Mail on your domain.", + "description": "Add Zoho Mail DNS records to the domain. This will create the required MX records\nfor setting up Zoho Mail on your domain.", "responses": { "201": { "description": "DNS records list", @@ -26480,7 +25991,6 @@ "x-appwrite": { "method": "createPresetZoho", "group": null, - "weight": 1027, "cookies": false, "type": "", "demo": "domains\/create-preset-zoho.md", @@ -26525,7 +26035,7 @@ "tags": [ "domains" ], - "description": " List DNS records for a given domain. You can use this endpoint to list all the DNS records\n associated with your domain.", + "description": "List DNS records for a given domain. You can use this endpoint to list all the DNS records\nassociated with your domain.", "responses": { "200": { "description": "DNS records list", @@ -26538,7 +26048,6 @@ "x-appwrite": { "method": "listRecords", "group": null, - "weight": 1022, "cookies": false, "type": "", "demo": "domains\/list-records.md", @@ -26610,7 +26119,6 @@ "x-appwrite": { "method": "createRecordA", "group": null, - "weight": 1000, "cookies": false, "type": "", "demo": "domains\/create-record-a.md", @@ -26666,8 +26174,8 @@ "comment": { "type": "string", "description": "A comment explaining what this record is for.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -26693,7 +26201,7 @@ "tags": [ "domains" ], - "description": " Update an existing A record for the given domain. This endpoint allows you to modify \n the properties of an A record including its name (subdomain), IPv4 address, TTL, \n and optional comment.", + "description": "Update an existing A record for the given domain. This endpoint allows you to modify \nthe properties of an A record including its name (subdomain), IPv4 address, TTL, \nand optional comment.", "responses": { "200": { "description": "DNSRecord", @@ -26706,7 +26214,6 @@ "x-appwrite": { "method": "updateRecordA", "group": null, - "weight": 1001, "cookies": false, "type": "", "demo": "domains\/update-record-a.md", @@ -26770,8 +26277,8 @@ "comment": { "type": "string", "description": "A comment explaining what this record is for.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -26797,7 +26304,7 @@ "tags": [ "domains" ], - "description": " Create a new AAAA record for the given domain. This endpoint allows you to add a new IPv6 DNS record \n to your domain. The record will be used to point a hostname to an IPv6 address.", + "description": "Create a new AAAA record for the given domain. This endpoint allows you to add a new IPv6 DNS record \nto your domain. The record will be used to point a hostname to an IPv6 address.", "responses": { "201": { "description": "DNSRecord", @@ -26810,7 +26317,6 @@ "x-appwrite": { "method": "createRecordAAAA", "group": null, - "weight": 1002, "cookies": false, "type": "", "demo": "domains\/create-record-aaaa.md", @@ -26866,8 +26372,8 @@ "comment": { "type": "string", "description": "A comment explaining what this record is for.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -26893,7 +26399,7 @@ "tags": [ "domains" ], - "description": " Update an existing AAAA record for the given domain. This endpoint allows you to modify\n the properties of an existing AAAA record, including its name (subdomain), IPv6 address,\n TTL, and optional comment.", + "description": "Update an existing AAAA record for the given domain. This endpoint allows you to modify\nthe properties of an existing AAAA record, including its name (subdomain), IPv6 address,\nTTL, and optional comment.", "responses": { "200": { "description": "DNSRecord", @@ -26906,7 +26412,6 @@ "x-appwrite": { "method": "updateRecordAAAA", "group": null, - "weight": 1003, "cookies": false, "type": "", "demo": "domains\/update-record-aaaa.md", @@ -26970,8 +26475,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -26997,7 +26502,7 @@ "tags": [ "domains" ], - "description": " Create a new ALIAS record for the given domain. This record type can be used to point your domain \n to another domain name that will serve as an alias. This is particularly useful when you want to \n map your domain to a target domain that may change its IP address.", + "description": "Create a new ALIAS record for the given domain. This record type can be used to point your domain \nto another domain name that will serve as an alias. This is particularly useful when you want to \nmap your domain to a target domain that may change its IP address.", "responses": { "201": { "description": "DNSRecord", @@ -27010,7 +26515,6 @@ "x-appwrite": { "method": "createRecordAlias", "group": null, - "weight": 1004, "cookies": false, "type": "", "demo": "domains\/create-record-alias.md", @@ -27066,8 +26570,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27093,7 +26597,7 @@ "tags": [ "domains" ], - "description": " Update an existing ALIAS record for the specified domain. This endpoint allows you to modify\n the properties of an existing ALIAS record including its name, target domain, TTL, and comment.\n \n The ALIAS record type is similar to a CNAME record but can be used at the zone apex (root domain).\n It provides a way to map one domain name to another.", + "description": "Update an existing ALIAS record for the specified domain. This endpoint allows you to modify\nthe properties of an existing ALIAS record including its name, target domain, TTL, and comment.\n \nThe ALIAS record type is similar to a CNAME record but can be used at the zone apex (root domain).\nIt provides a way to map one domain name to another.", "responses": { "200": { "description": "DNSRecord", @@ -27106,7 +26610,6 @@ "x-appwrite": { "method": "updateRecordAlias", "group": null, - "weight": 1005, "cookies": false, "type": "", "demo": "domains\/update-record-alias.md", @@ -27170,8 +26673,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27210,7 +26713,6 @@ "x-appwrite": { "method": "createRecordCAA", "group": null, - "weight": 1006, "cookies": false, "type": "", "demo": "domains\/create-record-caa.md", @@ -27266,8 +26768,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27293,7 +26795,7 @@ "tags": [ "domains" ], - "description": " Update an existing CAA record for the given domain. A CAA (Certification Authority Authorization) \n record is used to specify which certificate authorities (CAs) are authorized to issue certificates \n for a domain.", + "description": "Update an existing CAA record for the given domain. A CAA (Certification Authority Authorization) \nrecord is used to specify which certificate authorities (CAs) are authorized to issue certificates \nfor a domain.", "responses": { "200": { "description": "DNSRecord", @@ -27306,7 +26808,6 @@ "x-appwrite": { "method": "updateRecordCAA", "group": null, - "weight": 1007, "cookies": false, "type": "", "demo": "domains\/update-record-caa.md", @@ -27370,8 +26871,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27397,7 +26898,7 @@ "tags": [ "domains" ], - "description": " Create a new CNAME record for the given domain.\n \n A CNAME record maps a subdomain to another domain name, allowing you to create aliases \n for your domain. For example, you can create a CNAME record to point 'blog.example.com' \n to 'example.wordpress.com'.", + "description": "Create a new CNAME record for the given domain.\n \nA CNAME record maps a subdomain to another domain name, allowing you to create aliases \nfor your domain. For example, you can create a CNAME record to point 'blog.example.com' \nto 'example.wordpress.com'.", "responses": { "201": { "description": "DNSRecord", @@ -27410,7 +26911,6 @@ "x-appwrite": { "method": "createRecordCNAME", "group": null, - "weight": 1008, "cookies": false, "type": "", "demo": "domains\/create-record-cname.md", @@ -27466,8 +26966,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27493,7 +26993,7 @@ "tags": [ "domains" ], - "description": " Update an existing CNAME record for the given domain.", + "description": "Update an existing CNAME record for the given domain.", "responses": { "200": { "description": "DNSRecord", @@ -27506,7 +27006,6 @@ "x-appwrite": { "method": "updateRecordCNAME", "group": null, - "weight": 1009, "cookies": false, "type": "", "demo": "domains\/update-record-cname.md", @@ -27570,8 +27069,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27597,7 +27096,7 @@ "tags": [ "domains" ], - "description": " Create a new HTTPS record for the given domain. This record is used to configure HTTPS \n settings for your domain, enabling secure communication over SSL\/TLS.", + "description": "Create a new HTTPS record for the given domain. This record is used to configure HTTPS \nsettings for your domain, enabling secure communication over SSL\/TLS.", "responses": { "201": { "description": "DNSRecord", @@ -27610,7 +27109,6 @@ "x-appwrite": { "method": "createRecordHTTPS", "group": null, - "weight": 1010, "cookies": false, "type": "", "demo": "domains\/create-record-https.md", @@ -27666,8 +27164,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27706,7 +27204,6 @@ "x-appwrite": { "method": "updateRecordHTTPS", "group": null, - "weight": 1011, "cookies": false, "type": "", "demo": "domains\/update-record-https.md", @@ -27770,8 +27267,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27797,7 +27294,7 @@ "tags": [ "domains" ], - "description": " Create a new MX record for the given domain. MX records are used to define the mail servers responsible \n for accepting email messages for the domain. Multiple MX records can be created with different priorities.\n The priority parameter determines the order in which mail servers are used, with lower values indicating \n higher priority.", + "description": "Create a new MX record for the given domain. MX records are used to define the mail servers responsible \nfor accepting email messages for the domain. Multiple MX records can be created with different priorities.\nThe priority parameter determines the order in which mail servers are used, with lower values indicating \nhigher priority.", "responses": { "201": { "description": "DNSRecord", @@ -27810,7 +27307,6 @@ "x-appwrite": { "method": "createRecordMX", "group": null, - "weight": 1012, "cookies": false, "type": "", "demo": "domains\/create-record-mx.md", @@ -27872,8 +27368,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -27900,7 +27396,7 @@ "tags": [ "domains" ], - "description": " Update an existing MX record for the given domain.", + "description": "Update an existing MX record for the given domain.", "responses": { "200": { "description": "DNSRecord", @@ -27913,7 +27409,6 @@ "x-appwrite": { "method": "updateRecordMX", "group": null, - "weight": 1013, "cookies": false, "type": "", "demo": "domains\/update-record-mx.md", @@ -27983,8 +27478,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -28011,7 +27506,7 @@ "tags": [ "domains" ], - "description": " Create a new NS record for the given domain. NS records specify the nameservers that are used \n to resolve the domain name to IP addresses. Each domain can have multiple NS records.", + "description": "Create a new NS record for the given domain. NS records specify the nameservers that are used \nto resolve the domain name to IP addresses. Each domain can have multiple NS records.", "responses": { "201": { "description": "DNSRecord", @@ -28024,7 +27519,6 @@ "x-appwrite": { "method": "createRecordNS", "group": null, - "weight": 1014, "cookies": false, "type": "", "demo": "domains\/create-record-ns.md", @@ -28080,8 +27574,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -28107,7 +27601,7 @@ "tags": [ "domains" ], - "description": " Update an existing NS record for the given domain. This endpoint allows you to modify \n the properties of an NS (nameserver) record associated with your domain. You can update \n the record name (subdomain), target nameserver value, TTL, and add or modify comments \n for better record management.", + "description": "Update an existing NS record for the given domain. This endpoint allows you to modify \nthe properties of an NS (nameserver) record associated with your domain. You can update \nthe record name (subdomain), target nameserver value, TTL, and add or modify comments \nfor better record management.", "responses": { "200": { "description": "DNSRecord", @@ -28120,7 +27614,6 @@ "x-appwrite": { "method": "updateRecordNS", "group": null, - "weight": 1015, "cookies": false, "type": "", "demo": "domains\/update-record-ns.md", @@ -28184,8 +27677,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -28211,7 +27704,7 @@ "tags": [ "domains" ], - "description": " Create a new SRV record for the given domain. SRV records are used to define the location \n of servers for specific services. For example, they can be used to specify which server \n handles a specific service like SIP or XMPP for the domain.", + "description": "Create a new SRV record for the given domain. SRV records are used to define the location \nof servers for specific services. For example, they can be used to specify which server \nhandles a specific service like SIP or XMPP for the domain.", "responses": { "201": { "description": "DNSRecord", @@ -28224,7 +27717,6 @@ "x-appwrite": { "method": "createRecordSRV", "group": null, - "weight": 1016, "cookies": false, "type": "", "demo": "domains\/create-record-srv.md", @@ -28298,8 +27790,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -28328,7 +27820,7 @@ "tags": [ "domains" ], - "description": " Update an existing SRV record for the given domain.\n \n Required parameters:\n - domainId: Domain unique ID\n - recordId: DNS record unique ID\n - name: Record name (service name)\n - value: Target hostname for this SRV record\n - ttl: Time to live, in seconds\n - priority: Record priority\n - weight: Record weight\n - port: Port number for the service\n \n Optional parameters:\n - comment: A comment for this record", + "description": "Update an existing SRV record for the given domain.\n \nRequired parameters:\n- domainId: Domain unique ID\n- recordId: DNS record unique ID\n- name: Record name (service name)\n- value: Target hostname for this SRV record\n- ttl: Time to live, in seconds\n- priority: Record priority\n- weight: Record weight\n- port: Port number for the service\n \nOptional parameters:\n- comment: A comment for this record", "responses": { "200": { "description": "DNSRecord", @@ -28341,7 +27833,6 @@ "x-appwrite": { "method": "updateRecordSRV", "group": null, - "weight": 1017, "cookies": false, "type": "", "demo": "domains\/update-record-srv.md", @@ -28423,8 +27914,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -28453,7 +27944,7 @@ "tags": [ "domains" ], - "description": " Create a new TXT record for the given domain. TXT records can be used \n to provide additional information about your domain, such as domain \n verification records, SPF records, or DKIM records.", + "description": "Create a new TXT record for the given domain. TXT records can be used \nto provide additional information about your domain, such as domain \nverification records, SPF records, or DKIM records.", "responses": { "201": { "description": "DNSRecord", @@ -28466,7 +27957,6 @@ "x-appwrite": { "method": "createRecordTXT", "group": null, - "weight": 1018, "cookies": false, "type": "", "demo": "domains\/create-record-txt.md", @@ -28511,8 +28001,8 @@ "value": { "type": "string", "description": "TXT record value.", - "x-example": "<VALUE>", - "default": "" + "default": "", + "x-example": "<VALUE>" }, "ttl": { "type": "integer", @@ -28523,8 +28013,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -28549,7 +28039,7 @@ "tags": [ "domains" ], - "description": " Update an existing TXT record for the given domain.\n \n Update the TXT record details for a specific domain by providing the domain ID,\n record ID, and the new record configuration including name, value, TTL, and an optional comment.", + "description": "Update an existing TXT record for the given domain.\n \nUpdate the TXT record details for a specific domain by providing the domain ID,\nrecord ID, and the new record configuration including name, value, TTL, and an optional comment.", "responses": { "200": { "description": "DNSRecord", @@ -28562,7 +28052,6 @@ "x-appwrite": { "method": "updateRecordTXT", "group": null, - "weight": 1019, "cookies": false, "type": "", "demo": "domains\/update-record-txt.md", @@ -28626,8 +28115,8 @@ "comment": { "type": "string", "description": "A comment for this record.", - "x-example": "<COMMENT>", - "default": "" + "default": "", + "x-example": "<COMMENT>" } }, "required": [ @@ -28651,7 +28140,7 @@ "tags": [ "domains" ], - "description": " Get a single DNS record for a given domain by record ID.\n \n This endpoint allows you to retrieve a specific DNS record associated with a domain\n using its unique identifier. The record contains information about the DNS configuration\n such as type, value, and TTL settings.", + "description": "Get a single DNS record for a given domain by record ID.\n \nThis endpoint allows you to retrieve a specific DNS record associated with a domain\nusing its unique identifier. The record contains information about the DNS configuration\nsuch as type, value, and TTL settings.", "responses": { "200": { "description": "DNSRecord", @@ -28664,7 +28153,6 @@ "x-appwrite": { "method": "getRecord", "group": null, - "weight": 1021, "cookies": false, "type": "", "demo": "domains\/get-record.md", @@ -28717,7 +28205,7 @@ "tags": [ "domains" ], - "description": " Delete a DNS record for the given domain. This endpoint allows you to delete an existing DNS record \n from a specific domain.", + "description": "Delete a DNS record for the given domain. This endpoint allows you to delete an existing DNS record \nfrom a specific domain.", "responses": { "204": { "description": "No content" @@ -28727,7 +28215,6 @@ "x-appwrite": { "method": "deleteRecord", "group": null, - "weight": 1020, "cookies": false, "type": "", "demo": "domains\/delete-record.md", @@ -28782,7 +28269,7 @@ "tags": [ "domains" ], - "description": " Update the team ID for a specific domain. This endpoint requires admin access.\n \n Updating the team ID will transfer ownership and access control of the domain\n and all its DNS records to the new team.", + "description": "Update the team ID for a specific domain. This endpoint requires admin access.\n \nUpdating the team ID will transfer ownership and access control of the domain\nand all its DNS records to the new team.", "responses": { "200": { "description": "Domain", @@ -28795,7 +28282,6 @@ "x-appwrite": { "method": "updateTeam", "group": null, - "weight": 995, "cookies": false, "type": "", "demo": "domains\/update-team.md", @@ -28857,7 +28343,7 @@ "tags": [ "domains" ], - "description": " Retrieve the current transfer status for a domain. Returns the status, an optional reason, and a timestamp of the last status change.", + "description": "Retrieve the current transfer status for a domain. Returns the status, an optional reason, and a timestamp of the last status change.", "responses": { "200": { "description": "domainTransferStatus", @@ -28870,7 +28356,6 @@ "x-appwrite": { "method": "getTransferStatus", "group": null, - "weight": 999, "cookies": false, "type": "", "demo": "domains\/get-transfer-status.md", @@ -28915,7 +28400,7 @@ "tags": [ "domains" ], - "description": " Retrieve the DNS zone file for the given domain. This endpoint will return the DNS\n zone file in a standardized format that can be used to configure DNS servers.", + "description": "Retrieve the DNS zone file for the given domain. This endpoint will return the DNS\nzone file in a standardized format that can be used to configure DNS servers.", "responses": { "200": { "description": "Text", @@ -28928,7 +28413,6 @@ "x-appwrite": { "method": "getZone", "group": null, - "weight": 990, "cookies": false, "type": "", "demo": "domains\/get-zone.md", @@ -28986,7 +28470,6 @@ "x-appwrite": { "method": "updateZone", "group": null, - "weight": 994, "cookies": false, "type": "", "demo": "domains\/update-zone.md", @@ -29061,7 +28544,6 @@ "x-appwrite": { "method": "list", "group": "functions", - "weight": 425, "cookies": false, "type": "", "demo": "functions\/list.md", @@ -29143,7 +28625,6 @@ "x-appwrite": { "method": "create", "group": "functions", - "weight": 969, "cookies": false, "type": "", "demo": "functions\/create.md", @@ -29241,6 +28722,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -29280,16 +28762,16 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "execute": { "type": "array", "description": "An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", - "x-example": "[\"any\"]", "default": [], + "x-example": "[\"any\"]", "items": { "type": "string" } @@ -29297,8 +28779,8 @@ "events": { "type": "array", "description": "Events list. Maximum of 100 events are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -29306,45 +28788,45 @@ "schedule": { "type": "string", "description": "Schedule CRON syntax.", - "x-example": null, - "default": "" + "default": "", + "x-example": null }, "timeout": { "type": "integer", "description": "Function maximum execution time in seconds.", - "x-example": 1, "default": 15, + "x-example": 1, "format": "int32" }, "enabled": { "type": "boolean", "description": "Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, executions will exclude logs and errors, and will be slightly faster.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "entrypoint": { "type": "string", "description": "Entrypoint File. This path is relative to the \"providerRootDirectory\".", - "x-example": "<ENTRYPOINT>", - "default": "" + "default": "", + "x-example": "<ENTRYPOINT>" }, "commands": { "type": "string", "description": "Build Commands.", - "x-example": "<COMMANDS>", - "default": "" + "default": "", + "x-example": "<COMMANDS>" }, "scopes": { "type": "array", "description": "List of scopes allowed for API key auto-generated for every execution. Maximum of 100 scopes are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ @@ -29443,57 +28925,74 @@ "events.read", "usage.read" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", - "x-example": "<INSTALLATION_ID>", - "default": "" + "default": "", + "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the function.", - "x-example": "<PROVIDER_REPOSITORY_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the function.", - "x-example": "<PROVIDER_BRANCH>", - "default": "" + "default": "", + "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to function code in the linked repo.", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" + }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } }, "buildSpecification": { "type": "string", "description": "Build specification for the function deployments.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the function executions.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" } }, @@ -29531,7 +29030,6 @@ "x-appwrite": { "method": "listRuntimes", "group": "runtimes", - "weight": 427, "cookies": false, "type": "", "demo": "functions\/list-runtimes.md", @@ -29581,7 +29079,6 @@ "x-appwrite": { "method": "listSpecifications", "group": "runtimes", - "weight": 428, "cookies": false, "type": "", "demo": "functions\/list-specifications.md", @@ -29631,7 +29128,6 @@ "x-appwrite": { "method": "listTemplates", "group": "templates", - "weight": 451, "cookies": false, "type": "", "demo": "functions\/list-templates.md", @@ -29715,6 +29211,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -29754,10 +29251,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "default": [], "in": "query" @@ -29779,8 +29276,7 @@ "dev-tools", "auth" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionTemplateUseCase" }, "default": [], "in": "query" @@ -29841,7 +29337,6 @@ "x-appwrite": { "method": "getTemplate", "group": "templates", - "weight": 450, "cookies": false, "type": "", "demo": "functions\/get-template.md", @@ -29899,7 +29394,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 444, "cookies": false, "type": "", "demo": "functions\/list-usage.md", @@ -29969,7 +29463,6 @@ "x-appwrite": { "method": "get", "group": "functions", - "weight": 423, "cookies": false, "type": "", "demo": "functions\/get.md", @@ -30029,7 +29522,6 @@ "x-appwrite": { "method": "update", "group": "functions", - "weight": 970, "cookies": false, "type": "", "demo": "functions\/update.md", @@ -30130,6 +29622,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -30169,16 +29662,16 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "execute": { "type": "array", "description": "An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", - "x-example": "[\"any\"]", "default": [], + "x-example": "[\"any\"]", "items": { "type": "string" } @@ -30186,8 +29679,8 @@ "events": { "type": "array", "description": "Events list. Maximum of 100 events are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -30195,45 +29688,45 @@ "schedule": { "type": "string", "description": "Schedule CRON syntax.", - "x-example": null, - "default": "" + "default": "", + "x-example": null }, "timeout": { "type": "integer", "description": "Maximum execution time in seconds.", - "x-example": 1, "default": 15, + "x-example": 1, "format": "int32" }, "enabled": { "type": "boolean", "description": "Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, executions will exclude logs and errors, and will be slightly faster.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "entrypoint": { "type": "string", "description": "Entrypoint File. This path is relative to the \"providerRootDirectory\".", - "x-example": "<ENTRYPOINT>", - "default": "" + "default": "", + "x-example": "<ENTRYPOINT>" }, "commands": { "type": "string", "description": "Build Commands.", - "x-example": "<COMMANDS>", - "default": "" + "default": "", + "x-example": "<COMMANDS>" }, "scopes": { "type": "array", "description": "List of scopes allowed for API Key auto-generated for every execution. Maximum of 100 scopes are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ @@ -30332,15 +29825,14 @@ "events.read", "usage.read" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Controle System) deployment.", - "x-example": "<INSTALLATION_ID>", - "default": "" + "default": "", + "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", @@ -30351,38 +29843,56 @@ "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the function", - "x-example": "<PROVIDER_BRANCH>", - "default": "" + "default": "", + "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to function code in the linked repo.", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" + }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "x-example": null, + "x-nullable": true, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "x-example": null, + "x-nullable": true, + "items": { + "type": "string" + } }, "buildSpecification": { "type": "string", "description": "Build specification for the function deployments.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the function executions.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" } }, @@ -30413,7 +29923,6 @@ "x-appwrite": { "method": "delete", "group": "functions", - "weight": 426, "cookies": false, "type": "", "demo": "functions\/delete.md", @@ -30475,7 +29984,6 @@ "x-appwrite": { "method": "updateFunctionDeployment", "group": "functions", - "weight": 431, "cookies": false, "type": "", "demo": "functions\/update-function-deployment.md", @@ -30552,7 +30060,6 @@ "x-appwrite": { "method": "listDeployments", "group": "deployments", - "weight": 432, "cookies": false, "type": "", "demo": "functions\/list-deployments.md", @@ -30642,7 +30149,6 @@ "x-appwrite": { "method": "createDeployment", "group": "deployments", - "weight": 429, "cookies": false, "type": "upload", "demo": "functions\/create-deployment.md", @@ -30735,7 +30241,6 @@ "x-appwrite": { "method": "createDuplicateDeployment", "group": "deployments", - "weight": 437, "cookies": false, "type": "", "demo": "functions\/create-duplicate-deployment.md", @@ -30782,8 +30287,8 @@ "buildId": { "type": "string", "description": "Build unique ID.", - "x-example": "<BUILD_ID>", - "default": "" + "default": "", + "x-example": "<BUILD_ID>" } }, "required": [ @@ -30820,7 +30325,6 @@ "x-appwrite": { "method": "createTemplateDeployment", "group": "deployments", - "weight": 434, "cookies": false, "type": "", "demo": "functions\/create-template-deployment.md", @@ -30883,8 +30387,7 @@ "branch", "tag" ], - "x-enum-name": "TemplateReferenceType", - "x-enum-keys": [] + "x-enum-name": "TemplateReferenceType" }, "reference": { "type": "string", @@ -30894,8 +30397,8 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -30936,7 +30439,6 @@ "x-appwrite": { "method": "createVcsDeployment", "group": "deployments", - "weight": 435, "cookies": false, "type": "", "demo": "functions\/create-vcs-deployment.md", @@ -30983,8 +30485,7 @@ "branch", "commit" ], - "x-enum-name": "VCSReferenceType", - "x-enum-keys": [] + "x-enum-name": "VCSReferenceType" }, "reference": { "type": "string", @@ -30994,8 +30495,8 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -31031,7 +30532,6 @@ "x-appwrite": { "method": "getDeployment", "group": "deployments", - "weight": 430, "cookies": false, "type": "", "demo": "functions\/get-deployment.md", @@ -31094,7 +30594,6 @@ "x-appwrite": { "method": "deleteDeployment", "group": "deployments", - "weight": 433, "cookies": false, "type": "", "demo": "functions\/delete-deployment.md", @@ -31162,7 +30661,6 @@ "x-appwrite": { "method": "getDeploymentDownload", "group": "deployments", - "weight": 436, "cookies": false, "type": "location", "demo": "functions\/get-deployment-download.md", @@ -31215,7 +30713,6 @@ "output" ], "x-enum-name": "DeploymentDownloadType", - "x-enum-keys": [], "default": "source", "in": "query" } @@ -31248,7 +30745,6 @@ "x-appwrite": { "method": "updateDeploymentStatus", "group": "deployments", - "weight": 438, "cookies": false, "type": "", "demo": "functions\/update-deployment-status.md", @@ -31316,7 +30812,6 @@ "x-appwrite": { "method": "listExecutions", "group": "executions", - "weight": 441, "cookies": false, "type": "", "demo": "functions\/list-executions.md", @@ -31403,7 +30898,6 @@ "x-appwrite": { "method": "createExecution", "group": "executions", - "weight": 439, "cookies": false, "type": "", "demo": "functions\/create-execution.md", @@ -31451,26 +30945,26 @@ "body": { "type": "string", "description": "HTTP body of execution. Default value is empty string.", - "x-example": "<BODY>", - "default": "" + "default": "", + "x-example": "<BODY>" }, "async": { "type": "boolean", "description": "Execute code in the background. Default value is false.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "path": { "type": "string", "description": "HTTP path of execution. Path can include query params. Default value is \/", - "x-example": "<PATH>", - "default": "\/" + "default": "\/", + "x-example": "<PATH>" }, "method": { "type": "string", "description": "HTTP method of execution. Default value is POST.", - "x-example": "GET", "default": "POST", + "x-example": "GET", "enum": [ "GET", "POST", @@ -31480,14 +30974,13 @@ "OPTIONS", "HEAD" ], - "x-enum-name": "ExecutionMethod", - "x-enum-keys": [] + "x-enum-name": "ExecutionMethod" }, "headers": { "type": "object", "description": "HTTP headers of execution. Defaults to empty.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "scheduledAt": { "type": "string", @@ -31525,7 +31018,6 @@ "x-appwrite": { "method": "getExecution", "group": "executions", - "weight": 440, "cookies": false, "type": "", "demo": "functions\/get-execution.md", @@ -31594,7 +31086,6 @@ "x-appwrite": { "method": "deleteExecution", "group": "executions", - "weight": 442, "cookies": false, "type": "", "demo": "functions\/delete-execution.md", @@ -31665,7 +31156,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 443, "cookies": false, "type": "", "demo": "functions\/get-usage.md", @@ -31743,7 +31233,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 447, "cookies": false, "type": "", "demo": "functions\/list-variables.md", @@ -31824,7 +31313,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 971, "cookies": false, "type": "", "demo": "functions\/create-variable.md", @@ -31881,8 +31369,8 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only functions can read them during build and runtime.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -31919,7 +31407,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 446, "cookies": false, "type": "", "demo": "functions\/get-variable.md", @@ -31987,7 +31474,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 448, "cookies": false, "type": "", "demo": "functions\/update-variable.md", @@ -32077,7 +31563,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 449, "cookies": false, "type": "", "demo": "functions\/delete-variable.md", @@ -32147,7 +31632,6 @@ "x-appwrite": { "method": "query", "group": "graphql", - "weight": 116, "cookies": false, "type": "graphql", "demo": "graphql\/query.md", @@ -32185,8 +31669,8 @@ "query": { "type": "object", "description": "The query or queries to execute.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -32223,7 +31707,6 @@ "x-appwrite": { "method": "mutation", "group": "graphql", - "weight": 115, "cookies": false, "type": "graphql", "demo": "graphql\/mutation.md", @@ -32261,8 +31744,8 @@ "query": { "type": "object", "description": "The query or queries to execute.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -32297,7 +31780,6 @@ "x-appwrite": { "method": "get", "group": "health", - "weight": 452, "cookies": false, "type": "", "demo": "health\/get.md", @@ -32348,7 +31830,6 @@ "x-appwrite": { "method": "getAntivirus", "group": "health", - "weight": 461, "cookies": false, "type": "", "demo": "health\/get-antivirus.md", @@ -32399,7 +31880,6 @@ "x-appwrite": { "method": "getCache", "group": "health", - "weight": 455, "cookies": false, "type": "", "demo": "health\/get-cache.md", @@ -32450,7 +31930,6 @@ "x-appwrite": { "method": "getCertificate", "group": "health", - "weight": 458, "cookies": false, "type": "", "demo": "health\/get-certificate.md", @@ -32510,7 +31989,6 @@ "x-appwrite": { "method": "getConsolePausing", "group": null, - "weight": 1115, "cookies": false, "type": "", "demo": "health\/get-console-pausing.md", @@ -32581,7 +32059,6 @@ "x-appwrite": { "method": "getDB", "group": "health", - "weight": 454, "cookies": false, "type": "", "demo": "health\/get-db.md", @@ -32632,7 +32109,6 @@ "x-appwrite": { "method": "getPubSub", "group": "health", - "weight": 456, "cookies": false, "type": "", "demo": "health\/get-pub-sub.md", @@ -32683,7 +32159,6 @@ "x-appwrite": { "method": "getQueueAudits", "group": "queue", - "weight": 462, "cookies": false, "type": "", "demo": "health\/get-queue-audits.md", @@ -32745,7 +32220,6 @@ "x-appwrite": { "method": "getQueueBillingProjectAggregation", "group": null, - "weight": 1111, "cookies": false, "type": "", "demo": "health\/get-queue-billing-project-aggregation.md", @@ -32807,7 +32281,6 @@ "x-appwrite": { "method": "getQueueBillingTeamAggregation", "group": null, - "weight": 1110, "cookies": false, "type": "", "demo": "health\/get-queue-billing-team-aggregation.md", @@ -32869,7 +32342,6 @@ "x-appwrite": { "method": "getQueueBuilds", "group": "queue", - "weight": 466, "cookies": false, "type": "", "demo": "health\/get-queue-builds.md", @@ -32931,7 +32403,6 @@ "x-appwrite": { "method": "getQueuePriorityBuilds", "group": null, - "weight": 1112, "cookies": false, "type": "", "demo": "health\/get-queue-priority-builds.md", @@ -32993,7 +32464,6 @@ "x-appwrite": { "method": "getQueueCertificates", "group": "queue", - "weight": 465, "cookies": false, "type": "", "demo": "health\/get-queue-certificates.md", @@ -33055,7 +32525,6 @@ "x-appwrite": { "method": "getQueueDatabases", "group": "queue", - "weight": 467, "cookies": false, "type": "", "demo": "health\/get-queue-databases.md", @@ -33126,7 +32595,6 @@ "x-appwrite": { "method": "getQueueDeletes", "group": "queue", - "weight": 468, "cookies": false, "type": "", "demo": "health\/get-queue-deletes.md", @@ -33188,7 +32656,6 @@ "x-appwrite": { "method": "getFailedJobs", "group": "queue", - "weight": 475, "cookies": false, "type": "", "demo": "health\/get-failed-jobs.md", @@ -33235,8 +32702,7 @@ "v1-messaging", "v1-migrations" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "HealthQueueName", "in": "path" }, { @@ -33275,7 +32741,6 @@ "x-appwrite": { "method": "getQueueFunctions", "group": "queue", - "weight": 472, "cookies": false, "type": "", "demo": "health\/get-queue-functions.md", @@ -33337,7 +32802,6 @@ "x-appwrite": { "method": "getQueueLogs", "group": "queue", - "weight": 464, "cookies": false, "type": "", "demo": "health\/get-queue-logs.md", @@ -33399,7 +32863,6 @@ "x-appwrite": { "method": "getQueueMails", "group": "queue", - "weight": 469, "cookies": false, "type": "", "demo": "health\/get-queue-mails.md", @@ -33461,7 +32924,6 @@ "x-appwrite": { "method": "getQueueMessaging", "group": "queue", - "weight": 470, "cookies": false, "type": "", "demo": "health\/get-queue-messaging.md", @@ -33523,7 +32985,6 @@ "x-appwrite": { "method": "getQueueMigrations", "group": "queue", - "weight": 471, "cookies": false, "type": "", "demo": "health\/get-queue-migrations.md", @@ -33585,7 +33046,6 @@ "x-appwrite": { "method": "getQueueRegionManager", "group": null, - "weight": 1113, "cookies": false, "type": "", "demo": "health\/get-queue-region-manager.md", @@ -33647,7 +33107,6 @@ "x-appwrite": { "method": "getQueueStatsResources", "group": "queue", - "weight": 473, "cookies": false, "type": "", "demo": "health\/get-queue-stats-resources.md", @@ -33709,7 +33168,6 @@ "x-appwrite": { "method": "getQueueUsage", "group": "queue", - "weight": 474, "cookies": false, "type": "", "demo": "health\/get-queue-usage.md", @@ -33771,7 +33229,6 @@ "x-appwrite": { "method": "getQueueThreats", "group": null, - "weight": 1114, "cookies": false, "type": "", "demo": "health\/get-queue-threats.md", @@ -33833,7 +33290,6 @@ "x-appwrite": { "method": "getQueueWebhooks", "group": "queue", - "weight": 463, "cookies": false, "type": "", "demo": "health\/get-queue-webhooks.md", @@ -33895,7 +33351,6 @@ "x-appwrite": { "method": "getStorage", "group": "storage", - "weight": 460, "cookies": false, "type": "", "demo": "health\/get-storage.md", @@ -33946,7 +33401,6 @@ "x-appwrite": { "method": "getStorageLocal", "group": "storage", - "weight": 459, "cookies": false, "type": "", "demo": "health\/get-storage-local.md", @@ -33997,7 +33451,6 @@ "x-appwrite": { "method": "getTime", "group": "health", - "weight": 457, "cookies": false, "type": "", "demo": "health\/get-time.md", @@ -34048,7 +33501,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 49, "cookies": false, "type": "", "demo": "locale\/get.md", @@ -34102,7 +33554,6 @@ "x-appwrite": { "method": "listCodes", "group": null, - "weight": 50, "cookies": false, "type": "", "demo": "locale\/list-codes.md", @@ -34156,7 +33607,6 @@ "x-appwrite": { "method": "listContinents", "group": null, - "weight": 54, "cookies": false, "type": "", "demo": "locale\/list-continents.md", @@ -34210,7 +33660,6 @@ "x-appwrite": { "method": "listCountries", "group": null, - "weight": 51, "cookies": false, "type": "", "demo": "locale\/list-countries.md", @@ -34264,7 +33713,6 @@ "x-appwrite": { "method": "listCountriesEU", "group": null, - "weight": 52, "cookies": false, "type": "", "demo": "locale\/list-countries-eu.md", @@ -34318,7 +33766,6 @@ "x-appwrite": { "method": "listCountriesPhones", "group": null, - "weight": 53, "cookies": false, "type": "", "demo": "locale\/list-countries-phones.md", @@ -34372,7 +33819,6 @@ "x-appwrite": { "method": "listCurrencies", "group": null, - "weight": 55, "cookies": false, "type": "", "demo": "locale\/list-currencies.md", @@ -34426,7 +33872,6 @@ "x-appwrite": { "method": "listLanguages", "group": null, - "weight": 56, "cookies": false, "type": "", "demo": "locale\/list-languages.md", @@ -34482,7 +33927,6 @@ "x-appwrite": { "method": "createBlock", "group": null, - "weight": 1048, "cookies": false, "type": "", "demo": "manager\/create-block.md", @@ -34523,26 +33967,25 @@ "subscribers", "messages" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "BlockResourceType" }, "resourceId": { "type": "string", "description": "Optional resource ID (if omitted, all resources of this type will be blocked)", - "x-example": "<RESOURCE_ID>", - "default": "" + "default": "", + "x-example": "<RESOURCE_ID>" }, "reason": { "type": "string", "description": "Optional reason why the resource is blocked", - "x-example": "<REASON>", - "default": "" + "default": "", + "x-example": "<REASON>" }, "expiredAt": { "type": "string", "description": "Optional expiration date for the block", - "x-example": "2020-10-15T06:38:00.000+00:00", "default": "", + "x-example": "2020-10-15T06:38:00.000+00:00", "format": "datetime" } }, @@ -34579,7 +34022,6 @@ "x-appwrite": { "method": "deleteBlock", "group": null, - "weight": 1050, "cookies": false, "type": "", "demo": "manager\/delete-block.md", @@ -34620,14 +34062,13 @@ "subscribers", "messages" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "BlockResourceType" }, "resourceId": { "type": "string", "description": "Optional resource ID (if omitted, all blocks of this type will be removed)", - "x-example": "<RESOURCE_ID>", - "default": "" + "default": "", + "x-example": "<RESOURCE_ID>" } }, "required": [ @@ -34663,7 +34104,6 @@ "x-appwrite": { "method": "listBlocks", "group": null, - "weight": 1049, "cookies": false, "type": "", "demo": "manager\/list-blocks.md", @@ -34715,7 +34155,6 @@ "x-appwrite": { "method": "updateUserStatus", "group": "users", - "weight": 1051, "cookies": false, "type": "", "demo": "manager\/update-user-status.md", @@ -34739,14 +34178,14 @@ "userId": { "type": "string", "description": "User ID.", - "x-example": "<USER_ID>", - "default": "" + "default": "", + "x-example": "<USER_ID>" }, "email": { "type": "string", "description": "User email address.", - "x-example": "<EMAIL>", - "default": "" + "default": "", + "x-example": "<EMAIL>" }, "status": { "type": "boolean", @@ -34756,8 +34195,8 @@ "reason": { "type": "string", "description": "Optional reason when blocking a user. Accepted for parity with the CLI task but not persisted.", - "x-example": "<REASON>", - "default": "" + "default": "", + "x-example": "<REASON>" } }, "required": [ @@ -34792,7 +34231,6 @@ "x-appwrite": { "method": "listMessages", "group": "messages", - "weight": 157, "cookies": false, "type": "", "demo": "messaging\/list-messages.md", @@ -34877,7 +34315,6 @@ "x-appwrite": { "method": "createEmail", "group": "messages", - "weight": 154, "cookies": false, "type": "", "demo": "messaging\/create-email.md", @@ -34927,8 +34364,8 @@ "topics": { "type": "array", "description": "List of Topic IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -34936,8 +34373,8 @@ "users": { "type": "array", "description": "List of User IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -34945,8 +34382,8 @@ "targets": { "type": "array", "description": "List of Targets IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -34954,8 +34391,8 @@ "cc": { "type": "array", "description": "Array of target IDs to be added as CC.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -34963,8 +34400,8 @@ "bcc": { "type": "array", "description": "Array of target IDs to be added as BCC.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -34972,8 +34409,8 @@ "attachments": { "type": "array", "description": "Array of compound ID strings of bucket IDs and file IDs to be attached to the email. They should be formatted as <BUCKET_ID>:<FILE_ID>.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -34981,14 +34418,14 @@ "draft": { "type": "boolean", "description": "Is message a draft", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "html": { "type": "boolean", "description": "Is content of type HTML", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "scheduledAt": { "type": "string", @@ -35034,7 +34471,6 @@ "x-appwrite": { "method": "updateEmail", "group": "messages", - "weight": 161, "cookies": false, "type": "", "demo": "messaging\/update-email.md", @@ -35191,7 +34627,6 @@ "x-appwrite": { "method": "createPush", "group": "messages", - "weight": 156, "cookies": false, "type": "", "demo": "messaging\/create-push.md", @@ -35231,20 +34666,20 @@ "title": { "type": "string", "description": "Title for push notification.", - "x-example": "<TITLE>", - "default": "" + "default": "", + "x-example": "<TITLE>" }, "body": { "type": "string", "description": "Body for push notification.", - "x-example": "<BODY>", - "default": "" + "default": "", + "x-example": "<BODY>" }, "topics": { "type": "array", "description": "List of Topic IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -35252,8 +34687,8 @@ "users": { "type": "array", "description": "List of User IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -35261,8 +34696,8 @@ "targets": { "type": "array", "description": "List of Targets IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -35270,58 +34705,58 @@ "data": { "type": "object", "description": "Additional key-value pair data for push notification.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true }, "action": { "type": "string", "description": "Action for push notification.", - "x-example": "<ACTION>", - "default": "" + "default": "", + "x-example": "<ACTION>" }, "image": { "type": "string", "description": "Image for push notification. Must be a compound bucket ID to file ID of a jpeg, png, or bmp image in Appwrite Storage. It should be formatted as <BUCKET_ID>:<FILE_ID>.", - "x-example": "<ID1:ID2>", - "default": "" + "default": "", + "x-example": "<ID1:ID2>" }, "icon": { "type": "string", "description": "Icon for push notification. Available only for Android and Web Platform.", - "x-example": "<ICON>", - "default": "" + "default": "", + "x-example": "<ICON>" }, "sound": { "type": "string", "description": "Sound for push notification. Available only for Android and iOS Platform.", - "x-example": "<SOUND>", - "default": "" + "default": "", + "x-example": "<SOUND>" }, "color": { "type": "string", "description": "Color for push notification. Available only for Android Platform.", - "x-example": "<COLOR>", - "default": "" + "default": "", + "x-example": "<COLOR>" }, "tag": { "type": "string", "description": "Tag for push notification. Available only for Android Platform.", - "x-example": "<TAG>", - "default": "" + "default": "", + "x-example": "<TAG>" }, "badge": { "type": "integer", "description": "Badge for push notification. Available only for iOS Platform.", - "x-example": null, "default": -1, + "x-example": null, "format": "int32" }, "draft": { "type": "boolean", "description": "Is message a draft", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "scheduledAt": { "type": "string", @@ -35333,26 +34768,25 @@ "contentAvailable": { "type": "boolean", "description": "If set to true, the notification will be delivered in the background. Available only for iOS Platform.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "critical": { "type": "boolean", "description": "If set to true, the notification will be marked as critical. This requires the app to have the critical notification entitlement. Available only for iOS Platform.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "priority": { "type": "string", "description": "Set the notification priority. \"normal\" will consider device state and may not deliver notifications immediately. \"high\" will always attempt to immediately deliver the notification.", - "x-example": "normal", "default": "high", + "x-example": "normal", "enum": [ "normal", "high" ], - "x-enum-name": "MessagePriority", - "x-enum-keys": [] + "x-enum-name": "MessagePriority" } }, "required": [ @@ -35389,7 +34823,6 @@ "x-appwrite": { "method": "updatePush", "group": "messages", - "weight": 163, "cookies": false, "type": "", "demo": "messaging\/update-push.md", @@ -35471,8 +34904,8 @@ "data": { "type": "object", "description": "Additional Data for push notification.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true }, "action": { @@ -35552,7 +34985,6 @@ "high" ], "x-enum-name": "MessagePriority", - "x-enum-keys": [], "x-nullable": true } } @@ -35587,7 +35019,6 @@ "x-appwrite": { "method": "createSms", "group": "messages", - "weight": 155, "cookies": false, "type": "", "demo": "messaging\/create-sms.md", @@ -35702,8 +35133,8 @@ "topics": { "type": "array", "description": "List of Topic IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -35711,8 +35142,8 @@ "users": { "type": "array", "description": "List of User IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -35720,8 +35151,8 @@ "targets": { "type": "array", "description": "List of Targets IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -35729,8 +35160,8 @@ "draft": { "type": "boolean", "description": "Is message a draft", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "scheduledAt": { "type": "string", @@ -35775,7 +35206,6 @@ "x-appwrite": { "method": "updateSms", "group": "messages", - "weight": 162, "cookies": false, "type": "", "demo": "messaging\/update-sms.md", @@ -35959,7 +35389,6 @@ "x-appwrite": { "method": "getMessage", "group": "messages", - "weight": 160, "cookies": false, "type": "", "demo": "messaging\/get-message.md", @@ -36015,7 +35444,6 @@ "x-appwrite": { "method": "delete", "group": "messages", - "weight": 164, "cookies": false, "type": "", "demo": "messaging\/delete.md", @@ -36076,7 +35504,6 @@ "x-appwrite": { "method": "listMessageLogs", "group": "logs", - "weight": 158, "cookies": false, "type": "", "demo": "messaging\/list-message-logs.md", @@ -36158,7 +35585,6 @@ "x-appwrite": { "method": "listTargets", "group": "messages", - "weight": 159, "cookies": false, "type": "", "demo": "messaging\/list-targets.md", @@ -36240,7 +35666,6 @@ "x-appwrite": { "method": "listProviders", "group": "providers", - "weight": 128, "cookies": false, "type": "", "demo": "messaging\/list-providers.md", @@ -36325,7 +35750,6 @@ "x-appwrite": { "method": "createApnsProvider", "group": "providers", - "weight": 127, "cookies": false, "type": "", "demo": "messaging\/create-apns-provider.md", @@ -36442,32 +35866,32 @@ "authKey": { "type": "string", "description": "APNS authentication key.", - "x-example": "<AUTH_KEY>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY>" }, "authKeyId": { "type": "string", "description": "APNS authentication key ID.", - "x-example": "<AUTH_KEY_ID>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY_ID>" }, "teamId": { "type": "string", "description": "APNS team ID.", - "x-example": "<TEAM_ID>", - "default": "" + "default": "", + "x-example": "<TEAM_ID>" }, "bundleId": { "type": "string", "description": "APNS bundle ID.", - "x-example": "<BUNDLE_ID>", - "default": "" + "default": "", + "x-example": "<BUNDLE_ID>" }, "sandbox": { "type": "boolean", "description": "Use APNS sandbox environment.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", @@ -36511,7 +35935,6 @@ "x-appwrite": { "method": "updateApnsProvider", "group": "providers", - "weight": 141, "cookies": false, "type": "", "demo": "messaging\/update-apns-provider.md", @@ -36624,8 +36047,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -36636,26 +36059,26 @@ "authKey": { "type": "string", "description": "APNS authentication key.", - "x-example": "<AUTH_KEY>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY>" }, "authKeyId": { "type": "string", "description": "APNS authentication key ID.", - "x-example": "<AUTH_KEY_ID>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY_ID>" }, "teamId": { "type": "string", "description": "APNS team ID.", - "x-example": "<TEAM_ID>", - "default": "" + "default": "", + "x-example": "<TEAM_ID>" }, "bundleId": { "type": "string", "description": "APNS bundle ID.", - "x-example": "<BUNDLE_ID>", - "default": "" + "default": "", + "x-example": "<BUNDLE_ID>" }, "sandbox": { "type": "boolean", @@ -36695,7 +36118,6 @@ "x-appwrite": { "method": "createFcmProvider", "group": "providers", - "weight": 126, "cookies": false, "type": "", "demo": "messaging\/create-fcm-provider.md", @@ -36804,8 +36226,8 @@ "serviceAccountJSON": { "type": "object", "description": "FCM service account JSON.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true }, "enabled": { @@ -36850,7 +36272,6 @@ "x-appwrite": { "method": "updateFcmProvider", "group": "providers", - "weight": 140, "cookies": false, "type": "", "demo": "messaging\/update-fcm-provider.md", @@ -36955,8 +36376,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -36967,8 +36388,8 @@ "serviceAccountJSON": { "type": "object", "description": "FCM service account JSON.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true } } @@ -37003,7 +36424,6 @@ "x-appwrite": { "method": "createMailgunProvider", "group": "providers", - "weight": 117, "cookies": false, "type": "", "demo": "messaging\/create-mailgun-provider.md", @@ -37048,14 +36468,14 @@ "apiKey": { "type": "string", "description": "Mailgun API Key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "domain": { "type": "string", "description": "Mailgun Domain.", - "x-example": "<DOMAIN>", - "default": "" + "default": "", + "x-example": "<DOMAIN>" }, "isEuRegion": { "type": "boolean", @@ -37066,27 +36486,27 @@ "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name. Reply to name must have reply to email as well.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email. Reply to email must have reply to name as well.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "enabled": { @@ -37131,7 +36551,6 @@ "x-appwrite": { "method": "updateMailgunProvider", "group": "providers", - "weight": 131, "cookies": false, "type": "", "demo": "messaging\/update-mailgun-provider.md", @@ -37174,20 +36593,20 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "apiKey": { "type": "string", "description": "Mailgun API Key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "domain": { "type": "string", "description": "Mailgun Domain.", - "x-example": "<DOMAIN>", - "default": "" + "default": "", + "x-example": "<DOMAIN>" }, "isEuRegion": { "type": "boolean", @@ -37204,27 +36623,27 @@ "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", - "x-example": "<REPLY_TO_EMAIL>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_EMAIL>" } } } @@ -37258,7 +36677,6 @@ "x-appwrite": { "method": "createMsg91Provider", "group": "providers", - "weight": 121, "cookies": false, "type": "", "demo": "messaging\/create-msg-91-provider.md", @@ -37303,20 +36721,20 @@ "templateId": { "type": "string", "description": "Msg91 template ID", - "x-example": "<TEMPLATE_ID>", - "default": "" + "default": "", + "x-example": "<TEMPLATE_ID>" }, "senderId": { "type": "string", "description": "Msg91 sender ID.", - "x-example": "<SENDER_ID>", - "default": "" + "default": "", + "x-example": "<SENDER_ID>" }, "authKey": { "type": "string", "description": "Msg91 auth key.", - "x-example": "<AUTH_KEY>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY>" }, "enabled": { "type": "boolean", @@ -37360,7 +36778,6 @@ "x-appwrite": { "method": "updateMsg91Provider", "group": "providers", - "weight": 135, "cookies": false, "type": "", "demo": "messaging\/update-msg-91-provider.md", @@ -37403,8 +36820,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -37415,20 +36832,20 @@ "templateId": { "type": "string", "description": "Msg91 template ID.", - "x-example": "<TEMPLATE_ID>", - "default": "" + "default": "", + "x-example": "<TEMPLATE_ID>" }, "senderId": { "type": "string", "description": "Msg91 sender ID.", - "x-example": "<SENDER_ID>", - "default": "" + "default": "", + "x-example": "<SENDER_ID>" }, "authKey": { "type": "string", "description": "Msg91 auth key.", - "x-example": "<AUTH_KEY>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY>" } } } @@ -37462,7 +36879,6 @@ "x-appwrite": { "method": "createResendProvider", "group": "providers", - "weight": 119, "cookies": false, "type": "", "demo": "messaging\/create-resend-provider.md", @@ -37507,33 +36923,33 @@ "apiKey": { "type": "string", "description": "Resend API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "enabled": { @@ -37578,7 +36994,6 @@ "x-appwrite": { "method": "updateResendProvider", "group": "providers", - "weight": 133, "cookies": false, "type": "", "demo": "messaging\/update-resend-provider.md", @@ -37621,8 +37036,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -37633,33 +37048,33 @@ "apiKey": { "type": "string", "description": "Resend API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", - "x-example": "<REPLY_TO_EMAIL>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_EMAIL>" } } } @@ -37693,7 +37108,6 @@ "x-appwrite": { "method": "createSendgridProvider", "group": "providers", - "weight": 118, "cookies": false, "type": "", "demo": "messaging\/create-sendgrid-provider.md", @@ -37738,33 +37152,33 @@ "apiKey": { "type": "string", "description": "Sendgrid API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "enabled": { @@ -37809,7 +37223,6 @@ "x-appwrite": { "method": "updateSendgridProvider", "group": "providers", - "weight": 132, "cookies": false, "type": "", "demo": "messaging\/update-sendgrid-provider.md", @@ -37852,8 +37265,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -37864,33 +37277,33 @@ "apiKey": { "type": "string", "description": "Sendgrid API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", - "x-example": "<REPLY_TO_EMAIL>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_EMAIL>" } } } @@ -37924,7 +37337,6 @@ "x-appwrite": { "method": "createSmtpProvider", "group": "providers", - "weight": 120, "cookies": false, "type": "", "demo": "messaging\/create-smtp-provider.md", @@ -38060,21 +37472,21 @@ "port": { "type": "integer", "description": "The default SMTP server port.", - "x-example": 1, "default": 587, + "x-example": 1, "format": "int32" }, "username": { "type": "string", "description": "Authentication username.", - "x-example": "<USERNAME>", - "default": "" + "default": "", + "x-example": "<USERNAME>" }, "password": { "type": "string", "description": "Authentication password.", - "x-example": "<PASSWORD>", - "default": "" + "default": "", + "x-example": "<PASSWORD>" }, "encryption": { "type": "string", @@ -38085,45 +37497,44 @@ "ssl", "tls" ], - "x-enum-name": "SmtpEncryption", - "x-enum-keys": [] + "x-enum-name": "SmtpEncryption" }, "autoTLS": { "type": "boolean", "description": "Enable SMTP AutoTLS feature.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "mailer": { "type": "string", "description": "The value to use for the X-Mailer header.", - "x-example": "<MAILER>", - "default": "" + "default": "", + "x-example": "<MAILER>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "enabled": { @@ -38169,7 +37580,6 @@ "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", - "weight": 134, "cookies": false, "type": "", "demo": "messaging\/update-smtp-provider.md", @@ -38294,14 +37704,14 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "host": { "type": "string", "description": "SMTP hosts. Either a single hostname or multiple semicolon-delimited hostnames. You can also specify a different port for each host such as `smtp1.example.com:25;smtp2.example.com`. You can also specify encryption type, for example: `tls:\/\/smtp1.example.com:587;ssl:\/\/smtp2.example.com:465\"`. Hosts will be tried in order.", - "x-example": "<HOST>", - "default": "" + "default": "", + "x-example": "<HOST>" }, "port": { "type": "integer", @@ -38313,14 +37723,14 @@ "username": { "type": "string", "description": "Authentication username.", - "x-example": "<USERNAME>", - "default": "" + "default": "", + "x-example": "<USERNAME>" }, "password": { "type": "string", "description": "Authentication password.", - "x-example": "<PASSWORD>", - "default": "" + "default": "", + "x-example": "<PASSWORD>" }, "encryption": { "type": "string", @@ -38331,8 +37741,7 @@ "ssl", "tls" ], - "x-enum-name": "SmtpEncryption", - "x-enum-keys": [] + "x-enum-name": "SmtpEncryption" }, "autoTLS": { "type": "boolean", @@ -38343,33 +37752,33 @@ "mailer": { "type": "string", "description": "The value to use for the X-Mailer header.", - "x-example": "<MAILER>", - "default": "" + "default": "", + "x-example": "<MAILER>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", - "x-example": "<REPLY_TO_EMAIL>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_EMAIL>" }, "enabled": { "type": "boolean", @@ -38409,7 +37818,6 @@ "x-appwrite": { "method": "createTelesignProvider", "group": "providers", - "weight": 122, "cookies": false, "type": "", "demo": "messaging\/create-telesign-provider.md", @@ -38454,21 +37862,21 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "customerId": { "type": "string", "description": "Telesign customer ID.", - "x-example": "<CUSTOMER_ID>", - "default": "" + "default": "", + "x-example": "<CUSTOMER_ID>" }, "apiKey": { "type": "string", "description": "Telesign API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "enabled": { "type": "boolean", @@ -38512,7 +37920,6 @@ "x-appwrite": { "method": "updateTelesignProvider", "group": "providers", - "weight": 136, "cookies": false, "type": "", "demo": "messaging\/update-telesign-provider.md", @@ -38555,8 +37962,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -38567,20 +37974,20 @@ "customerId": { "type": "string", "description": "Telesign customer ID.", - "x-example": "<CUSTOMER_ID>", - "default": "" + "default": "", + "x-example": "<CUSTOMER_ID>" }, "apiKey": { "type": "string", "description": "Telesign API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "from": { "type": "string", "description": "Sender number.", - "x-example": "<FROM>", - "default": "" + "default": "", + "x-example": "<FROM>" } } } @@ -38614,7 +38021,6 @@ "x-appwrite": { "method": "createTextmagicProvider", "group": "providers", - "weight": 123, "cookies": false, "type": "", "demo": "messaging\/create-textmagic-provider.md", @@ -38659,21 +38065,21 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "username": { "type": "string", "description": "Textmagic username.", - "x-example": "<USERNAME>", - "default": "" + "default": "", + "x-example": "<USERNAME>" }, "apiKey": { "type": "string", "description": "Textmagic apiKey.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "enabled": { "type": "boolean", @@ -38717,7 +38123,6 @@ "x-appwrite": { "method": "updateTextmagicProvider", "group": "providers", - "weight": 137, "cookies": false, "type": "", "demo": "messaging\/update-textmagic-provider.md", @@ -38760,8 +38165,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -38772,20 +38177,20 @@ "username": { "type": "string", "description": "Textmagic username.", - "x-example": "<USERNAME>", - "default": "" + "default": "", + "x-example": "<USERNAME>" }, "apiKey": { "type": "string", "description": "Textmagic apiKey.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "from": { "type": "string", "description": "Sender number.", - "x-example": "<FROM>", - "default": "" + "default": "", + "x-example": "<FROM>" } } } @@ -38819,7 +38224,6 @@ "x-appwrite": { "method": "createTwilioProvider", "group": "providers", - "weight": 124, "cookies": false, "type": "", "demo": "messaging\/create-twilio-provider.md", @@ -38864,21 +38268,21 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "accountSid": { "type": "string", "description": "Twilio account secret ID.", - "x-example": "<ACCOUNT_SID>", - "default": "" + "default": "", + "x-example": "<ACCOUNT_SID>" }, "authToken": { "type": "string", "description": "Twilio authentication token.", - "x-example": "<AUTH_TOKEN>", - "default": "" + "default": "", + "x-example": "<AUTH_TOKEN>" }, "enabled": { "type": "boolean", @@ -38922,7 +38326,6 @@ "x-appwrite": { "method": "updateTwilioProvider", "group": "providers", - "weight": 138, "cookies": false, "type": "", "demo": "messaging\/update-twilio-provider.md", @@ -38965,8 +38368,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -38977,20 +38380,20 @@ "accountSid": { "type": "string", "description": "Twilio account secret ID.", - "x-example": "<ACCOUNT_SID>", - "default": "" + "default": "", + "x-example": "<ACCOUNT_SID>" }, "authToken": { "type": "string", "description": "Twilio authentication token.", - "x-example": "<AUTH_TOKEN>", - "default": "" + "default": "", + "x-example": "<AUTH_TOKEN>" }, "from": { "type": "string", "description": "Sender number.", - "x-example": "<FROM>", - "default": "" + "default": "", + "x-example": "<FROM>" } } } @@ -39024,7 +38427,6 @@ "x-appwrite": { "method": "createVonageProvider", "group": "providers", - "weight": 125, "cookies": false, "type": "", "demo": "messaging\/create-vonage-provider.md", @@ -39069,21 +38471,21 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "apiKey": { "type": "string", "description": "Vonage API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "apiSecret": { "type": "string", "description": "Vonage API secret.", - "x-example": "<API_SECRET>", - "default": "" + "default": "", + "x-example": "<API_SECRET>" }, "enabled": { "type": "boolean", @@ -39127,7 +38529,6 @@ "x-appwrite": { "method": "updateVonageProvider", "group": "providers", - "weight": 139, "cookies": false, "type": "", "demo": "messaging\/update-vonage-provider.md", @@ -39170,8 +38571,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -39182,20 +38583,20 @@ "apiKey": { "type": "string", "description": "Vonage API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "apiSecret": { "type": "string", "description": "Vonage API secret.", - "x-example": "<API_SECRET>", - "default": "" + "default": "", + "x-example": "<API_SECRET>" }, "from": { "type": "string", "description": "Sender number.", - "x-example": "<FROM>", - "default": "" + "default": "", + "x-example": "<FROM>" } } } @@ -39227,7 +38628,6 @@ "x-appwrite": { "method": "getProvider", "group": "providers", - "weight": 130, "cookies": false, "type": "", "demo": "messaging\/get-provider.md", @@ -39283,7 +38683,6 @@ "x-appwrite": { "method": "deleteProvider", "group": "providers", - "weight": 142, "cookies": false, "type": "", "demo": "messaging\/delete-provider.md", @@ -39344,7 +38743,6 @@ "x-appwrite": { "method": "listProviderLogs", "group": "providers", - "weight": 129, "cookies": false, "type": "", "demo": "messaging\/list-provider-logs.md", @@ -39426,7 +38824,6 @@ "x-appwrite": { "method": "listSubscriberLogs", "group": "subscribers", - "weight": 151, "cookies": false, "type": "", "demo": "messaging\/list-subscriber-logs.md", @@ -39508,7 +38905,6 @@ "x-appwrite": { "method": "listTopics", "group": "topics", - "weight": 144, "cookies": false, "type": "", "demo": "messaging\/list-topics.md", @@ -39591,7 +38987,6 @@ "x-appwrite": { "method": "createTopic", "group": "topics", - "weight": 143, "cookies": false, "type": "", "demo": "messaging\/create-topic.md", @@ -39636,10 +39031,10 @@ "subscribe": { "type": "array", "description": "An array of role strings with subscribe permission. By default all users are granted with any subscribe permission. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", - "x-example": "[\"any\"]", "default": [ "users" ], + "x-example": "[\"any\"]", "items": { "type": "string" } @@ -39678,7 +39073,6 @@ "x-appwrite": { "method": "getTopic", "group": "topics", - "weight": 146, "cookies": false, "type": "", "demo": "messaging\/get-topic.md", @@ -39739,7 +39133,6 @@ "x-appwrite": { "method": "updateTopic", "group": "topics", - "weight": 147, "cookies": false, "type": "", "demo": "messaging\/update-topic.md", @@ -39819,7 +39212,6 @@ "x-appwrite": { "method": "deleteTopic", "group": "topics", - "weight": 148, "cookies": false, "type": "", "demo": "messaging\/delete-topic.md", @@ -39880,7 +39272,6 @@ "x-appwrite": { "method": "listTopicLogs", "group": "topics", - "weight": 145, "cookies": false, "type": "", "demo": "messaging\/list-topic-logs.md", @@ -39962,7 +39353,6 @@ "x-appwrite": { "method": "listSubscribers", "group": "subscribers", - "weight": 150, "cookies": false, "type": "", "demo": "messaging\/list-subscribers.md", @@ -40053,7 +39443,6 @@ "x-appwrite": { "method": "createSubscriber", "group": "subscribers", - "weight": 149, "cookies": false, "type": "", "demo": "messaging\/create-subscriber.md", @@ -40140,7 +39529,6 @@ "x-appwrite": { "method": "getSubscriber", "group": "subscribers", - "weight": 152, "cookies": false, "type": "", "demo": "messaging\/get-subscriber.md", @@ -40204,7 +39592,6 @@ "x-appwrite": { "method": "deleteSubscriber", "group": "subscribers", - "weight": 153, "cookies": false, "type": "", "demo": "messaging\/delete-subscriber.md", @@ -40276,7 +39663,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 583, "cookies": false, "type": "", "demo": "migrations\/list.md", @@ -40359,7 +39745,6 @@ "x-appwrite": { "method": "createAppwriteMigration", "group": null, - "weight": 587, "cookies": false, "type": "", "demo": "migrations\/create-appwrite-migration.md", @@ -40424,8 +39809,7 @@ "platform", "backup-policy" ], - "x-enum-name": "AppwriteMigrationResource", - "x-enum-keys": [] + "x-enum-name": "AppwriteMigrationResource" } }, "endpoint": { @@ -40447,15 +39831,14 @@ "onDuplicate": { "type": "string", "description": "Behavior when a row with an existing $id is encountered. \"fail\" (default): abort on first conflict. \"skip\": silently ignore. \"overwrite\": replace existing row.", - "x-example": "fail", "default": "fail", + "x-example": "fail", "enum": [ "fail", "skip", "overwrite" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "MigrationOnDuplicate" } }, "required": [ @@ -40493,7 +39876,6 @@ "x-appwrite": { "method": "getAppwriteReport", "group": null, - "weight": 1133, "cookies": false, "type": "", "demo": "migrations\/get-appwrite-report.md", @@ -40554,8 +39936,7 @@ "platform", "backup-policy" ], - "x-enum-name": "AppwriteMigrationResource", - "x-enum-keys": [] + "x-enum-name": "AppwriteMigrationResource" }, "in": "query" }, @@ -40613,7 +39994,6 @@ "x-appwrite": { "method": "createCSVExport", "group": null, - "weight": 596, "cookies": false, "type": "", "demo": "migrations\/create-csv-export.md", @@ -40656,8 +40036,8 @@ "columns": { "type": "array", "description": "List of attributes to export. If empty, all attributes will be exported. You can use the `*` wildcard to export all attributes from the collection.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -40665,8 +40045,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK to filter documents to export. [Learn more about queries](https:\/\/appwrite.io\/docs\/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -40674,32 +40054,32 @@ "delimiter": { "type": "string", "description": "The character that separates each column value. Default is comma.", - "x-example": "<DELIMITER>", - "default": "," + "default": ",", + "x-example": "<DELIMITER>" }, "enclosure": { "type": "string", "description": "The character that encloses each column value. Default is double quotes.", - "x-example": "<ENCLOSURE>", - "default": "\"" + "default": "\"", + "x-example": "<ENCLOSURE>" }, "escape": { "type": "string", "description": "The escape character for the enclosure character. Default is double quotes.", - "x-example": "<ESCAPE>", - "default": "\"" + "default": "\"", + "x-example": "<ESCAPE>" }, "header": { "type": "boolean", "description": "Whether to include the header row with column names. Default is true.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "notify": { "type": "boolean", "description": "Set to true to receive an email when the export is complete. Default is true.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -40737,7 +40117,6 @@ "x-appwrite": { "method": "createCSVImport", "group": null, - "weight": 595, "cookies": false, "type": "", "demo": "migrations\/create-csv-import.md", @@ -40785,21 +40164,20 @@ "internalFile": { "type": "boolean", "description": "Is the file stored in an internal bucket?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "onDuplicate": { "type": "string", "description": "Behavior when a row with an existing $id is encountered. \"fail\" (default): abort on first conflict. \"skip\": silently ignore. \"overwrite\": replace existing row.", - "x-example": "fail", "default": "fail", + "x-example": "fail", "enum": [ "fail", "skip", "overwrite" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "MigrationOnDuplicate" } }, "required": [ @@ -40838,7 +40216,6 @@ "x-appwrite": { "method": "createFirebaseMigration", "group": null, - "weight": 589, "cookies": false, "type": "", "demo": "migrations\/create-firebase-migration.md", @@ -40886,8 +40263,7 @@ "bucket", "file" ], - "x-enum-name": "FirebaseMigrationResource", - "x-enum-keys": [] + "x-enum-name": "FirebaseMigrationResource" } }, "serviceAccount": { @@ -40929,7 +40305,6 @@ "x-appwrite": { "method": "getFirebaseReport", "group": null, - "weight": 590, "cookies": false, "type": "", "demo": "migrations\/get-firebase-report.md", @@ -40973,8 +40348,7 @@ "bucket", "file" ], - "x-enum-name": "FirebaseMigrationResource", - "x-enum-keys": [] + "x-enum-name": "FirebaseMigrationResource" }, "in": "query" }, @@ -41015,7 +40389,6 @@ "x-appwrite": { "method": "createJSONExport", "group": null, - "weight": 598, "cookies": false, "type": "", "demo": "migrations\/create-json-export.md", @@ -41058,8 +40431,8 @@ "columns": { "type": "array", "description": "List of attributes to export. If empty, all attributes will be exported. You can use the `*` wildcard to export all attributes from the collection.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -41067,8 +40440,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK to filter documents to export. [Learn more about queries](https:\/\/appwrite.io\/docs\/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -41076,8 +40449,8 @@ "notify": { "type": "boolean", "description": "Set to true to receive an email when the export is complete. Default is true.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -41115,7 +40488,6 @@ "x-appwrite": { "method": "createJSONImport", "group": null, - "weight": 597, "cookies": false, "type": "", "demo": "migrations\/create-json-import.md", @@ -41163,21 +40535,20 @@ "internalFile": { "type": "boolean", "description": "Is the file stored in an internal bucket?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "onDuplicate": { "type": "string", "description": "Behavior when a row with an existing $id is encountered. \"fail\" (default): abort on first conflict. \"skip\": silently ignore. \"overwrite\": replace existing row.", - "x-example": "fail", "default": "fail", + "x-example": "fail", "enum": [ "fail", "skip", "overwrite" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "MigrationOnDuplicate" } }, "required": [ @@ -41216,7 +40587,6 @@ "x-appwrite": { "method": "createNHostMigration", "group": null, - "weight": 593, "cookies": false, "type": "", "demo": "migrations\/create-n-host-migration.md", @@ -41265,8 +40635,7 @@ "bucket", "file" ], - "x-enum-name": "NHostMigrationResource", - "x-enum-keys": [] + "x-enum-name": "NHostMigrationResource" } }, "subdomain": { @@ -41302,8 +40671,8 @@ "port": { "type": "integer", "description": "Source's Database Port", - "x-example": null, "default": 5432, + "x-example": null, "format": "int32" } }, @@ -41345,7 +40714,6 @@ "x-appwrite": { "method": "getNHostReport", "group": null, - "weight": 594, "cookies": false, "type": "", "demo": "migrations\/get-n-host-report.md", @@ -41390,8 +40758,7 @@ "bucket", "file" ], - "x-enum-name": "NHostMigrationResource", - "x-enum-keys": [] + "x-enum-name": "NHostMigrationResource" }, "in": "query" }, @@ -41481,7 +40848,6 @@ "x-appwrite": { "method": "createSupabaseMigration", "group": null, - "weight": 591, "cookies": false, "type": "", "demo": "migrations\/create-supabase-migration.md", @@ -41530,8 +40896,7 @@ "bucket", "file" ], - "x-enum-name": "SupabaseMigrationResource", - "x-enum-keys": [] + "x-enum-name": "SupabaseMigrationResource" } }, "endpoint": { @@ -41563,8 +40928,8 @@ "port": { "type": "integer", "description": "Source's Database Port", - "x-example": null, "default": 5432, + "x-example": null, "format": "int32" } }, @@ -41605,7 +40970,6 @@ "x-appwrite": { "method": "getSupabaseReport", "group": null, - "weight": 592, "cookies": false, "type": "", "demo": "migrations\/get-supabase-report.md", @@ -41650,8 +41014,7 @@ "bucket", "file" ], - "x-enum-name": "SupabaseMigrationResource", - "x-enum-keys": [] + "x-enum-name": "SupabaseMigrationResource" }, "in": "query" }, @@ -41732,7 +41095,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 584, "cookies": false, "type": "", "demo": "migrations\/get.md", @@ -41791,7 +41153,6 @@ "x-appwrite": { "method": "retry", "group": null, - "weight": 585, "cookies": false, "type": "", "demo": "migrations\/retry.md", @@ -41845,7 +41206,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 586, "cookies": false, "type": "", "demo": "migrations\/delete.md", @@ -41880,6 +41240,755 @@ ] } }, + "\/organization\/keys": { + "get": { + "summary": "List organization keys", + "operationId": "organizationListKeys", + "consumes": [], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Get a list of all API keys from the current organization.", + "responses": { + "200": { + "description": "API Keys List", + "schema": { + "$ref": "#\/definitions\/keyList" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "listKeys", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/list-keys.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "queries", + "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: expire, accessedAt, name, scopes", + "required": false, + "type": "array", + "collectionFormat": "multi", + "items": { + "type": "string" + }, + "default": [], + "in": "query" + }, + { + "name": "total", + "description": "When set to false, the total count returned will be 0 and will not be calculated.", + "required": false, + "type": "boolean", + "x-example": false, + "default": true, + "in": "query" + } + ] + }, + "post": { + "summary": "Create organization key", + "operationId": "organizationCreateKey", + "consumes": [ + "application\/json" + ], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Create a new organization API key.", + "responses": { + "201": { + "description": "Key", + "schema": { + "$ref": "#\/definitions\/key" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "createKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/create-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "payload", + "in": "body", + "schema": { + "type": "object", + "properties": { + "keyId": { + "type": "string", + "description": "Key ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "x-example": "<KEY_ID>" + }, + "name": { + "type": "string", + "description": "Key name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "scopes": { + "type": "array", + "description": "Key scopes list. Maximum of 100 scopes are allowed.", + "x-example": null, + "items": { + "type": "string", + "enum": [ + "projects.read", + "projects.write", + "devKeys.read", + "devKeys.write", + "organization.keys.read", + "organization.keys.write", + "domains.read", + "domains.write", + "keys.read", + "keys.write" + ], + "x-enum-name": "OrganizationKeyScopes" + } + }, + "expire": { + "type": "string", + "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", + "x-example": "2020-10-15T06:38:00.000+00:00", + "format": "datetime", + "x-nullable": true + } + }, + "required": [ + "keyId", + "name", + "scopes" + ] + } + } + ] + } + }, + "\/organization\/keys\/{keyId}": { + "get": { + "summary": "Get organization key", + "operationId": "organizationGetKey", + "consumes": [], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Get a key by its unique ID. This endpoint returns details about a specific API key in your organization including its scopes.", + "responses": { + "200": { + "description": "Key", + "schema": { + "$ref": "#\/definitions\/key" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/get-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "type": "string", + "x-example": "<KEY_ID>", + "in": "path" + } + ] + }, + "put": { + "summary": "Update organization key", + "operationId": "organizationUpdateKey", + "consumes": [ + "application\/json" + ], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Update a key by its unique ID. Use this endpoint to update the name, scopes, or expiration time of an API key.", + "responses": { + "200": { + "description": "Key", + "schema": { + "$ref": "#\/definitions\/key" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "updateKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/update-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "type": "string", + "x-example": "<KEY_ID>", + "in": "path" + }, + { + "name": "payload", + "in": "body", + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Key name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "scopes": { + "type": "array", + "description": "Key scopes list. Maximum of 100 scopes are allowed.", + "x-example": null, + "items": { + "type": "string", + "enum": [ + "projects.read", + "projects.write", + "devKeys.read", + "devKeys.write", + "organization.keys.read", + "organization.keys.write", + "domains.read", + "domains.write", + "keys.read", + "keys.write" + ], + "x-enum-name": "OrganizationKeyScopes" + } + }, + "expire": { + "type": "string", + "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", + "x-example": "2020-10-15T06:38:00.000+00:00", + "format": "datetime", + "x-nullable": true + } + }, + "required": [ + "name", + "scopes" + ] + } + } + ] + }, + "delete": { + "summary": "Delete organization key", + "operationId": "organizationDeleteKey", + "consumes": [ + "application\/json" + ], + "produces": [], + "tags": [ + "organization" + ], + "description": "Delete a key by its unique ID. Once deleted, the key can no longer be used to authenticate API calls.", + "responses": { + "204": { + "description": "No content" + } + }, + "deprecated": false, + "x-appwrite": { + "method": "deleteKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/delete-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "type": "string", + "x-example": "<KEY_ID>", + "in": "path" + } + ] + } + }, + "\/organization\/projects": { + "get": { + "summary": "List organization projects", + "operationId": "organizationListProjects", + "consumes": [], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Get a list of all projects. You can use the query params to filter your results.", + "responses": { + "200": { + "description": "Projects List", + "schema": { + "$ref": "#\/definitions\/projectList" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "listProjects", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/list-projects.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "queries", + "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, teamId, labels, search", + "required": false, + "type": "array", + "collectionFormat": "multi", + "items": { + "type": "string" + }, + "default": [], + "in": "query" + }, + { + "name": "search", + "description": "Search term to filter your list results. Max length: 256 chars.", + "required": false, + "type": "string", + "x-example": "<SEARCH>", + "default": "", + "in": "query" + }, + { + "name": "total", + "description": "When set to false, the total count returned will be 0 and will not be calculated.", + "required": false, + "type": "boolean", + "x-example": false, + "default": true, + "in": "query" + } + ] + }, + "post": { + "summary": "Create organization project", + "operationId": "organizationCreateProject", + "consumes": [ + "application\/json" + ], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Create a new project.", + "responses": { + "201": { + "description": "Project", + "schema": { + "$ref": "#\/definitions\/project" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "createProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/create-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "payload", + "in": "body", + "schema": { + "type": "object", + "properties": { + "projectId": { + "type": "string", + "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, and hyphen. Can't start with a special char. Max length is 36 chars.", + "x-example": null + }, + "name": { + "type": "string", + "description": "Project name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "region": { + "type": "string", + "description": "Project Region.", + "x-example": "fra", + "enum": [ + "fra", + "nyc", + "syd", + "sfo", + "sgp", + "tor" + ], + "x-enum-name": "Region" + } + }, + "required": [ + "projectId", + "name" + ] + } + } + ] + } + }, + "\/organization\/projects\/{projectId}": { + "get": { + "summary": "Get organization project", + "operationId": "organizationGetProject", + "consumes": [], + "produces": [], + "tags": [ + "organization" + ], + "description": "Get a project.", + "responses": { + "200": { + "description": "Project", + "schema": { + "$ref": "#\/definitions\/project" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/get-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "projectId", + "description": "Project unique ID.", + "required": true, + "type": "string", + "x-example": "<PROJECT_ID>", + "in": "path" + } + ] + }, + "patch": { + "summary": "Update organization project", + "operationId": "organizationUpdateProject", + "consumes": [ + "application\/json" + ], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Update a project by its unique ID.", + "responses": { + "200": { + "description": "Project", + "schema": { + "$ref": "#\/definitions\/project" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "updateProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/update-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "projectId", + "description": "Project unique ID.", + "required": true, + "type": "string", + "x-example": "<PROJECT_ID>", + "in": "path" + }, + { + "name": "payload", + "in": "body", + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Project name. Max length: 128 chars.", + "x-example": "<NAME>" + } + }, + "required": [ + "name" + ] + } + } + ] + }, + "delete": { + "summary": "Delete organization project", + "operationId": "organizationDeleteProject", + "consumes": [ + "application\/json" + ], + "produces": [], + "tags": [ + "organization" + ], + "description": "Delete a project by its unique ID.", + "responses": { + "204": { + "description": "No content" + } + }, + "deprecated": false, + "x-appwrite": { + "method": "deleteProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/delete-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "projectId", + "description": "Project unique ID.", + "required": true, + "type": "string", + "x-example": "<PROJECT_ID>", + "in": "path" + } + ] + } + }, "\/organizations": { "get": { "summary": "List Orgnizations", @@ -41904,7 +42013,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 1061, "cookies": false, "type": "", "demo": "organizations\/list.md", @@ -41983,7 +42091,6 @@ "x-appwrite": { "method": "create", "group": null, - "weight": 1060, "cookies": false, "type": "", "demo": "organizations\/create.md", @@ -42037,15 +42144,15 @@ "billingAddressId": { "type": "string", "description": "Unique ID of billing address", - "x-example": "<BILLING_ADDRESS_ID>", "default": "", + "x-example": "<BILLING_ADDRESS_ID>", "x-nullable": true }, "invites": { "type": "array", "description": "Additional member invites", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -42072,14 +42179,13 @@ "platform": { "type": "string", "description": "Platform type", - "x-example": "appwrite", "default": "appwrite", + "x-example": "appwrite", "enum": [ "appwrite", "imagine" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Platform" } }, "required": [ @@ -42118,7 +42224,6 @@ "x-appwrite": { "method": "estimationCreateOrganization", "group": null, - "weight": 1095, "cookies": false, "type": "", "demo": "organizations\/estimation-create-organization.md", @@ -42162,8 +42267,8 @@ "invites": { "type": "array", "description": "Additional member invites", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -42177,14 +42282,13 @@ "platform": { "type": "string", "description": "Platform type", - "x-example": "appwrite", "default": "appwrite", + "x-example": "appwrite", "enum": [ "appwrite", "imagine" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Platform" } }, "required": [ @@ -42218,7 +42322,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 1062, "cookies": false, "type": "", "demo": "organizations\/delete.md", @@ -42277,7 +42380,6 @@ "x-appwrite": { "method": "listAddons", "group": null, - "weight": 1103, "cookies": false, "type": "", "demo": "organizations\/list-addons.md", @@ -42338,7 +42440,6 @@ "x-appwrite": { "method": "createBaaAddon", "group": null, - "weight": 1106, "cookies": false, "type": "", "demo": "organizations\/create-baa-addon.md", @@ -42397,7 +42498,6 @@ "x-appwrite": { "method": "getAddon", "group": null, - "weight": 1104, "cookies": false, "type": "", "demo": "organizations\/get-addon.md", @@ -42461,7 +42561,6 @@ "x-appwrite": { "method": "deleteAddon", "group": null, - "weight": 1107, "cookies": false, "type": "", "demo": "organizations\/delete-addon.md", @@ -42530,7 +42629,6 @@ "x-appwrite": { "method": "confirmAddonPayment", "group": null, - "weight": 1108, "cookies": false, "type": "", "demo": "organizations\/confirm-addon-payment.md", @@ -42597,7 +42695,6 @@ "x-appwrite": { "method": "getAddonPrice", "group": null, - "weight": 1105, "cookies": false, "type": "", "demo": "organizations\/get-addon-price.md", @@ -42636,10 +42733,10 @@ "type": "string", "x-example": "baa", "enum": [ - "baa" + "baa", + "backup_recovery" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "OrganizationAddon", "in": "path" } ] @@ -42669,7 +42766,6 @@ "x-appwrite": { "method": "listAggregations", "group": null, - "weight": 1077, "cookies": false, "type": "", "demo": "organizations\/list-aggregations.md", @@ -42740,7 +42836,6 @@ "x-appwrite": { "method": "getAggregation", "group": null, - "weight": 1078, "cookies": false, "type": "", "demo": "organizations\/get-aggregation.md", @@ -42828,7 +42923,6 @@ "x-appwrite": { "method": "setBillingAddress", "group": null, - "weight": 1070, "cookies": false, "type": "", "demo": "organizations\/set-billing-address.md", @@ -42901,7 +42995,6 @@ "x-appwrite": { "method": "deleteBillingAddress", "group": null, - "weight": 1071, "cookies": false, "type": "", "demo": "organizations\/delete-billing-address.md", @@ -42960,7 +43053,6 @@ "x-appwrite": { "method": "getBillingAddress", "group": null, - "weight": 1069, "cookies": false, "type": "", "demo": "organizations\/get-billing-address.md", @@ -43029,7 +43121,6 @@ "x-appwrite": { "method": "setBillingEmail", "group": null, - "weight": 1089, "cookies": false, "type": "", "demo": "organizations\/set-billing-email.md", @@ -43108,7 +43199,6 @@ "x-appwrite": { "method": "updateBudget", "group": null, - "weight": 1066, "cookies": false, "type": "", "demo": "organizations\/update-budget.md", @@ -43156,10 +43246,10 @@ "alerts": { "type": "array", "description": "Budget alert limit percentage", - "x-example": null, "default": [ 75 ], + "x-example": null, "items": { "type": "integer" } @@ -43197,7 +43287,6 @@ "x-appwrite": { "method": "listCredits", "group": null, - "weight": 1081, "cookies": false, "type": "", "demo": "organizations\/list-credits.md", @@ -43268,7 +43357,6 @@ "x-appwrite": { "method": "addCredit", "group": null, - "weight": 1082, "cookies": false, "type": "", "demo": "organizations\/add-credit.md", @@ -43344,7 +43432,6 @@ "x-appwrite": { "method": "getAvailableCredits", "group": null, - "weight": 1080, "cookies": false, "type": "", "demo": "organizations\/get-available-credits.md", @@ -43403,7 +43490,6 @@ "x-appwrite": { "method": "getCredit", "group": null, - "weight": 1079, "cookies": false, "type": "", "demo": "organizations\/get-credit.md", @@ -43472,7 +43558,6 @@ "x-appwrite": { "method": "estimationDeleteOrganization", "group": null, - "weight": 1096, "cookies": false, "type": "", "demo": "organizations\/estimation-delete-organization.md", @@ -43533,7 +43618,6 @@ "x-appwrite": { "method": "estimationUpdatePlan", "group": null, - "weight": 1093, "cookies": false, "type": "", "demo": "organizations\/estimation-update-plan.md", @@ -43579,8 +43663,8 @@ "invites": { "type": "array", "description": "Additional member invites", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -43626,7 +43710,6 @@ "x-appwrite": { "method": "createDowngradeFeedback", "group": null, - "weight": 1097, "cookies": false, "type": "", "demo": "organizations\/create-downgrade-feedback.md", @@ -43720,7 +43803,6 @@ "x-appwrite": { "method": "listInvoices", "group": null, - "weight": 1084, "cookies": false, "type": "", "demo": "organizations\/list-invoices.md", @@ -43791,7 +43873,6 @@ "x-appwrite": { "method": "getInvoice", "group": null, - "weight": 1083, "cookies": false, "type": "", "demo": "organizations\/get-invoice.md", @@ -43834,299 +43915,10 @@ ] } }, - "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/download": { - "get": { - "summary": "Download invoice in PDF", - "operationId": "organizationsGetInvoiceDownload", - "consumes": [], - "produces": [ - "application\/json" - ], - "tags": [ - "organizations" - ], - "description": "Download invoice in PDF", - "responses": { - "200": { - "description": "paymentMethod", - "schema": { - "$ref": "#\/definitions\/paymentMethod" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "getInvoiceDownload", - "group": null, - "weight": 1087, - "cookies": false, - "type": "", - "demo": "organizations\/get-invoice-download.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "billing.read", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/get-invoice-download.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization ID", - "required": true, - "type": "string", - "x-example": "<ORGANIZATION_ID>", - "in": "path" - }, - { - "name": "invoiceId", - "description": "Invoice unique ID", - "required": true, - "type": "string", - "x-example": "<INVOICE_ID>", - "in": "path" - } - ] - } - }, - "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/payments": { - "post": { - "summary": "Initiate payment for failed invoice to pay live from console", - "operationId": "organizationsCreateInvoicePayment", - "consumes": [ - "application\/json" - ], - "produces": [ - "application\/json" - ], - "tags": [ - "organizations" - ], - "description": "Initiate payment for failed invoice to pay live from console", - "responses": { - "200": { - "description": "Invoice", - "schema": { - "$ref": "#\/definitions\/invoice" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "createInvoicePayment", - "group": null, - "weight": 1088, - "cookies": false, - "type": "", - "demo": "organizations\/create-invoice-payment.md", - "rate-limit": 10, - "rate-time": 86400, - "rate-key": "url:{url},ip:{ip}", - "scope": "billing.write", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/create-invoice-payment.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization ID", - "required": true, - "type": "string", - "x-example": "<ORGANIZATION_ID>", - "in": "path" - }, - { - "name": "invoiceId", - "description": "Invoice unique ID", - "required": true, - "type": "string", - "x-example": "<INVOICE_ID>", - "in": "path" - }, - { - "name": "payload", - "in": "body", - "schema": { - "type": "object", - "properties": { - "paymentMethodId": { - "type": "string", - "description": "Payment method ID", - "x-example": "<PAYMENT_METHOD_ID>" - } - }, - "required": [ - "paymentMethodId" - ] - } - } - ] - } - }, - "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/status": { - "patch": { - "summary": "Validate the payment for an invoice and update status", - "operationId": "organizationsValidateInvoice", - "consumes": [ - "application\/json" - ], - "produces": [ - "application\/json" - ], - "tags": [ - "organizations" - ], - "description": "Validates the payment linked with the invoice and updates the invoice status if the payment status is changed.", - "responses": { - "200": { - "description": "Invoice", - "schema": { - "$ref": "#\/definitions\/invoice" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "validateInvoice", - "group": null, - "weight": 1085, - "cookies": false, - "type": "", - "demo": "organizations\/validate-invoice.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "billing.write", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/update-invoice-status.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization ID", - "required": true, - "type": "string", - "x-example": "<ORGANIZATION_ID>", - "in": "path" - }, - { - "name": "invoiceId", - "description": "Invoice unique ID", - "required": true, - "type": "string", - "x-example": "<INVOICE_ID>", - "in": "path" - } - ] - } - }, - "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/view": { - "get": { - "summary": "View invoice in PDF", - "operationId": "organizationsGetInvoiceView", - "consumes": [], - "produces": [ - "application\/json" - ], - "tags": [ - "organizations" - ], - "description": "View invoice in PDF", - "responses": { - "200": { - "description": "paymentMethod", - "schema": { - "$ref": "#\/definitions\/paymentMethod" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "getInvoiceView", - "group": null, - "weight": 1086, - "cookies": false, - "type": "", - "demo": "organizations\/get-invoice-view.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "billing.read", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/get-invoice-view.md", - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization ID", - "required": true, - "type": "string", - "x-example": "<ORGANIZATION_ID>", - "in": "path" - }, - { - "name": "invoiceId", - "description": "Invoice unique ID", - "required": true, - "type": "string", - "x-example": "<INVOICE_ID>", - "in": "path" - } - ] - } - }, - "\/organizations\/{organizationId}\/keys": { + "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/download": { "get": { - "summary": "List organization keys", - "operationId": "organizationsListKeys", + "summary": "Download invoice in PDF", + "operationId": "organizationsGetInvoiceDownload", "consumes": [], "produces": [ "application\/json" @@ -44134,32 +43926,32 @@ "tags": [ "organizations" ], - "description": "Get a list of all API keys from the current organization. ", + "description": "Download invoice in PDF", "responses": { "200": { - "description": "API Keys List", + "description": "paymentMethod", "schema": { - "$ref": "#\/definitions\/keyList" + "$ref": "#\/definitions\/paymentMethod" } } }, "deprecated": false, "x-appwrite": { - "method": "listKeys", - "group": "keys", - "weight": 1100, + "method": "getInvoiceDownload", + "group": null, "cookies": false, "type": "", - "demo": "organizations\/list-keys.md", + "demo": "organizations\/get-invoice-download.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "teams.read", + "scope": "billing.read", "platforms": [ "console" ], "packaging": false, "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/get-invoice-download.md", "auth": { "Project": [] } @@ -44172,26 +43964,27 @@ "parameters": [ { "name": "organizationId", - "description": "Organization Unique ID", + "description": "Organization ID", "required": true, "type": "string", "x-example": "<ORGANIZATION_ID>", "in": "path" }, { - "name": "total", - "description": "When set to false, the total count returned will be 0 and will not be calculated.", - "required": false, - "type": "boolean", - "x-example": false, - "default": true, - "in": "query" + "name": "invoiceId", + "description": "Invoice unique ID", + "required": true, + "type": "string", + "x-example": "<INVOICE_ID>", + "in": "path" } ] - }, + } + }, + "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/payments": { "post": { - "summary": "Create organization key", - "operationId": "organizationsCreateKey", + "summary": "Initiate payment for failed invoice to pay live from console", + "operationId": "organizationsCreateInvoicePayment", "consumes": [ "application\/json" ], @@ -44201,32 +43994,32 @@ "tags": [ "organizations" ], - "description": "Create a new organization API key.", + "description": "Initiate payment for failed invoice to pay live from console", "responses": { - "201": { - "description": "Key", + "200": { + "description": "Invoice", "schema": { - "$ref": "#\/definitions\/key" + "$ref": "#\/definitions\/invoice" } } }, "deprecated": false, "x-appwrite": { - "method": "createKey", - "group": "keys", - "weight": 1098, + "method": "createInvoicePayment", + "group": null, "cookies": false, "type": "", - "demo": "organizations\/create-key.md", - "rate-limit": 0, - "rate-time": 3600, + "demo": "organizations\/create-invoice-payment.md", + "rate-limit": 10, + "rate-time": 86400, "rate-key": "url:{url},ip:{ip}", - "scope": "teams.write", + "scope": "billing.write", "platforms": [ "console" ], "packaging": false, "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/create-invoice-payment.md", "auth": { "Project": [] } @@ -44239,128 +44032,44 @@ "parameters": [ { "name": "organizationId", - "description": "Organization Unique ID", + "description": "Organization ID", "required": true, "type": "string", "x-example": "<ORGANIZATION_ID>", "in": "path" }, + { + "name": "invoiceId", + "description": "Invoice unique ID", + "required": true, + "type": "string", + "x-example": "<INVOICE_ID>", + "in": "path" + }, { "name": "payload", "in": "body", "schema": { "type": "object", "properties": { - "name": { - "type": "string", - "description": "Key name. Max length: 128 chars.", - "x-example": "<NAME>" - }, - "scopes": { - "type": "array", - "description": "Key scopes list. Maximum of 100 scopes are allowed.", - "x-example": null, - "items": { - "type": "string", - "enum": [ - "projects.read", - "projects.write", - "devKeys.read", - "devKeys.write", - "domains.read", - "domains.write", - "keys.read", - "keys.write" - ], - "x-enum-name": null, - "x-enum-keys": [] - } - }, - "expire": { + "paymentMethodId": { "type": "string", - "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", - "x-example": "2020-10-15T06:38:00.000+00:00", - "format": "datetime", - "x-nullable": true + "description": "Payment method ID", + "x-example": "<PAYMENT_METHOD_ID>" } }, "required": [ - "name", - "scopes" + "paymentMethodId" ] } } ] } }, - "\/organizations\/{organizationId}\/keys\/{keyId}": { - "get": { - "summary": "Get organization key", - "operationId": "organizationsGetKey", - "consumes": [], - "produces": [ - "application\/json" - ], - "tags": [ - "organizations" - ], - "description": "Get a key by its unique ID. This endpoint returns details about a specific API key in your organization including it's scopes.", - "responses": { - "200": { - "description": "Key", - "schema": { - "$ref": "#\/definitions\/key" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "getKey", - "group": "keys", - "weight": 1102, - "cookies": false, - "type": "", - "demo": "organizations\/get-key.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "teams.read", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "organizationId", - "description": "Organization Unique ID", - "required": true, - "type": "string", - "x-example": "<ORGANIZATION_ID>", - "in": "path" - }, - { - "name": "keyId", - "description": "Key unique ID.", - "required": true, - "type": "string", - "x-example": "<KEY_ID>", - "in": "path" - } - ] - }, - "put": { - "summary": "Update organization key", - "operationId": "organizationsUpdateKey", + "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/status": { + "patch": { + "summary": "Validate the payment for an invoice and update status", + "operationId": "organizationsValidateInvoice", "consumes": [ "application\/json" ], @@ -44370,32 +44079,32 @@ "tags": [ "organizations" ], - "description": "Update a key by its unique ID. Use this endpoint to update the name, scopes, or expiration time of an API key.", + "description": "Validates the payment linked with the invoice and updates the invoice status if the payment status is changed.", "responses": { "200": { - "description": "Key", + "description": "Invoice", "schema": { - "$ref": "#\/definitions\/key" + "$ref": "#\/definitions\/invoice" } } }, "deprecated": false, "x-appwrite": { - "method": "updateKey", - "group": "keys", - "weight": 1099, + "method": "validateInvoice", + "group": null, "cookies": false, "type": "", - "demo": "organizations\/update-key.md", + "demo": "organizations\/validate-invoice.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "teams.write", + "scope": "billing.write", "platforms": [ "console" ], "packaging": false, "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/update-invoice-status.md", "auth": { "Project": [] } @@ -44408,102 +44117,60 @@ "parameters": [ { "name": "organizationId", - "description": "Organization Unique ID", + "description": "Organization ID", "required": true, "type": "string", "x-example": "<ORGANIZATION_ID>", "in": "path" }, { - "name": "keyId", - "description": "Key unique ID.", + "name": "invoiceId", + "description": "Invoice unique ID", "required": true, "type": "string", - "x-example": "<KEY_ID>", + "x-example": "<INVOICE_ID>", "in": "path" - }, - { - "name": "payload", - "in": "body", - "schema": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Key name. Max length: 128 chars.", - "x-example": "<NAME>" - }, - "scopes": { - "type": "array", - "description": "Key scopes list. Maximum of 100 scopes are allowed.", - "x-example": null, - "items": { - "type": "string", - "enum": [ - "projects.read", - "projects.write", - "devKeys.read", - "devKeys.write", - "domains.read", - "domains.write", - "keys.read", - "keys.write" - ], - "x-enum-name": null, - "x-enum-keys": [] - } - }, - "expire": { - "type": "string", - "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", - "x-example": "2020-10-15T06:38:00.000+00:00", - "format": "datetime", - "x-nullable": true - } - }, - "required": [ - "name", - "scopes" - ] - } } ] - }, - "delete": { - "summary": "Delete organization key", - "operationId": "organizationsDeleteKey", - "consumes": [ - "application\/json" - ], + } + }, + "\/organizations\/{organizationId}\/invoices\/{invoiceId}\/view": { + "get": { + "summary": "View invoice in PDF", + "operationId": "organizationsGetInvoiceView", + "consumes": [], "produces": [ "application\/json" ], "tags": [ "organizations" ], - "description": "Delete a key by its unique ID. Once deleted, the key can no longer be used to authenticate API calls.", + "description": "View invoice in PDF", "responses": { - "204": { - "description": "No content" + "200": { + "description": "paymentMethod", + "schema": { + "$ref": "#\/definitions\/paymentMethod" + } } }, "deprecated": false, "x-appwrite": { - "method": "deleteKey", - "group": "keys", - "weight": 1101, + "method": "getInvoiceView", + "group": null, "cookies": false, "type": "", - "demo": "organizations\/delete-key.md", + "demo": "organizations\/get-invoice-view.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "teams.write", + "scope": "billing.read", "platforms": [ "console" ], "packaging": false, "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/organizations\/get-invoice-view.md", "auth": { "Project": [] } @@ -44516,18 +44183,18 @@ "parameters": [ { "name": "organizationId", - "description": "Organization Unique ID", + "description": "Organization ID", "required": true, "type": "string", "x-example": "<ORGANIZATION_ID>", "in": "path" }, { - "name": "keyId", - "description": "Key unique ID.", + "name": "invoiceId", + "description": "Invoice unique ID", "required": true, "type": "string", - "x-example": "<KEY_ID>", + "x-example": "<INVOICE_ID>", "in": "path" } ] @@ -44559,7 +44226,6 @@ "x-appwrite": { "method": "setDefaultPaymentMethod", "group": null, - "weight": 1073, "cookies": false, "type": "", "demo": "organizations\/set-default-payment-method.md", @@ -44635,7 +44301,6 @@ "x-appwrite": { "method": "deleteDefaultPaymentMethod", "group": null, - "weight": 1075, "cookies": false, "type": "", "demo": "organizations\/delete-default-payment-method.md", @@ -44696,7 +44361,6 @@ "x-appwrite": { "method": "setBackupPaymentMethod", "group": null, - "weight": 1074, "cookies": false, "type": "", "demo": "organizations\/set-backup-payment-method.md", @@ -44772,7 +44436,6 @@ "x-appwrite": { "method": "deleteBackupPaymentMethod", "group": null, - "weight": 1076, "cookies": false, "type": "", "demo": "organizations\/delete-backup-payment-method.md", @@ -44831,7 +44494,6 @@ "x-appwrite": { "method": "getPaymentMethod", "group": null, - "weight": 1072, "cookies": false, "type": "", "demo": "organizations\/get-payment-method.md", @@ -44898,7 +44560,6 @@ "x-appwrite": { "method": "getPlan", "group": null, - "weight": 1063, "cookies": false, "type": "", "demo": "organizations\/get-plan.md", @@ -44957,7 +44618,6 @@ "x-appwrite": { "method": "updatePlan", "group": null, - "weight": 1064, "cookies": false, "type": "", "demo": "organizations\/update-plan.md", @@ -45009,14 +44669,14 @@ "billingAddressId": { "type": "string", "description": "Unique ID of billing address", - "x-example": "<BILLING_ADDRESS_ID>", - "default": "" + "default": "", + "x-example": "<BILLING_ADDRESS_ID>" }, "invites": { "type": "array", "description": "Additional member invites", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -45075,7 +44735,6 @@ "x-appwrite": { "method": "cancelDowngrade", "group": null, - "weight": 1065, "cookies": false, "type": "", "demo": "organizations\/cancel-downgrade.md", @@ -45136,7 +44795,6 @@ "x-appwrite": { "method": "createPlanEstimation", "group": null, - "weight": 1094, "cookies": false, "type": "", "demo": "organizations\/create-plan-estimation.md", @@ -45182,8 +44840,8 @@ "invites": { "type": "array", "description": "Additional member invites", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -45227,7 +44885,6 @@ "x-appwrite": { "method": "listRegions", "group": null, - "weight": 1092, "cookies": false, "type": "", "demo": "organizations\/list-regions.md", @@ -45286,7 +44943,6 @@ "x-appwrite": { "method": "getScopes", "group": null, - "weight": 1091, "cookies": false, "type": "", "demo": "organizations\/get-scopes.md", @@ -45356,7 +45012,6 @@ "x-appwrite": { "method": "setBillingTaxId", "group": null, - "weight": 1067, "cookies": false, "type": "", "demo": "organizations\/set-billing-tax-id.md", @@ -45433,7 +45088,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 1068, "cookies": false, "type": "", "demo": "organizations\/get-usage.md", @@ -45512,7 +45166,6 @@ "x-appwrite": { "method": "validatePayment", "group": null, - "weight": 1090, "cookies": false, "type": "", "demo": "organizations\/validate-payment.md", @@ -45553,8 +45206,8 @@ "invites": { "type": "array", "description": "Additional member invites", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -45589,7 +45242,6 @@ "x-appwrite": { "method": "list", "group": "presences", - "weight": 419, "cookies": false, "type": "", "demo": "presences\/list.md", @@ -45676,7 +45328,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 417, "cookies": false, "type": "", "demo": "presences\/get-usage.md", @@ -45712,7 +45363,11 @@ "90d" ], "x-enum-name": "UsageRange", - "x-enum-keys": [], + "x-enum-keys": [ + "Twenty Four Hours", + "Thirty Days", + "Ninety Days" + ], "default": "30d", "in": "query" } @@ -45743,7 +45398,6 @@ "x-appwrite": { "method": "get", "group": "presences", - "weight": 418, "cookies": false, "type": "", "demo": "presences\/get.md", @@ -45807,7 +45461,6 @@ "x-appwrite": { "method": "upsert", "group": "presences", - "weight": 416, "cookies": false, "type": "", "demo": "presences\/upsert.md", @@ -45905,8 +45558,8 @@ "metadata": { "type": "object", "description": "Presence metadata object.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" } }, "required": [ @@ -45941,7 +45594,6 @@ "x-appwrite": { "method": "update", "group": "presences", - "weight": 420, "cookies": false, "type": "", "demo": "presences\/update.md", @@ -46031,8 +45683,8 @@ "metadata": { "type": "object", "description": "Presence metadata object.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" }, "permissions": { "type": "array", @@ -46045,8 +45697,8 @@ "purge": { "type": "boolean", "description": "When true, purge cached responses used by list presences endpoint.", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -46073,7 +45725,6 @@ "x-appwrite": { "method": "delete", "group": "presences", - "weight": 421, "cookies": false, "type": "", "demo": "presences\/delete.md", @@ -46135,7 +45786,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 1161, "cookies": false, "type": "", "demo": "project\/get.md", @@ -46180,7 +45830,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 1160, "cookies": false, "type": "", "demo": "project\/delete.md", @@ -46232,7 +45881,6 @@ "x-appwrite": { "method": "updateAuthMethod", "group": null, - "weight": 1210, "cookies": false, "type": "", "demo": "project\/update-auth-method.md", @@ -46273,7 +45921,6 @@ "phone" ], "x-enum-name": "ProjectAuthMethodId", - "x-enum-keys": [], "in": "path" }, { @@ -46320,7 +45967,6 @@ "x-appwrite": { "method": "listKeys", "group": "keys", - "weight": 1177, "cookies": false, "type": "", "demo": "project\/list-keys.md", @@ -46393,7 +46039,6 @@ "x-appwrite": { "method": "createKey", "group": "keys", - "weight": 1175, "cookies": false, "type": "", "demo": "project\/create-key.md", @@ -46536,8 +46181,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "expire": { @@ -46584,7 +46228,6 @@ "x-appwrite": { "method": "createEphemeralKey", "group": "keys", - "weight": 1176, "cookies": false, "type": "", "demo": "project\/create-ephemeral-key.md", @@ -46717,8 +46360,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "duration": { @@ -46761,7 +46403,6 @@ "x-appwrite": { "method": "getKey", "group": "keys", - "weight": 1178, "cookies": false, "type": "", "demo": "project\/get-key.md", @@ -46821,7 +46462,6 @@ "x-appwrite": { "method": "updateKey", "group": "keys", - "weight": 1180, "cookies": false, "type": "", "demo": "project\/update-key.md", @@ -46967,8 +46607,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "expire": { @@ -47007,7 +46646,6 @@ "x-appwrite": { "method": "deleteKey", "group": "keys", - "weight": 1179, "cookies": false, "type": "", "demo": "project\/delete-key.md", @@ -47069,7 +46707,6 @@ "x-appwrite": { "method": "updateLabels", "group": null, - "weight": 1162, "cookies": false, "type": "", "demo": "project\/update-labels.md", @@ -47141,7 +46778,6 @@ "x-appwrite": { "method": "listMockPhones", "group": "mocks", - "weight": 1195, "cookies": false, "type": "", "demo": "project\/list-mock-phones.md", @@ -47214,7 +46850,6 @@ "x-appwrite": { "method": "createMockPhone", "group": "mocks", - "weight": 1194, "cookies": false, "type": "", "demo": "project\/create-mock-phone.md", @@ -47290,7 +46925,6 @@ "x-appwrite": { "method": "getMockPhone", "group": "mocks", - "weight": 1196, "cookies": false, "type": "", "demo": "project\/get-mock-phone.md", @@ -47351,7 +46985,6 @@ "x-appwrite": { "method": "updateMockPhone", "group": "mocks", - "weight": 1197, "cookies": false, "type": "", "demo": "project\/update-mock-phone.md", @@ -47424,7 +47057,6 @@ "x-appwrite": { "method": "deleteMockPhone", "group": "mocks", - "weight": 1198, "cookies": false, "type": "", "demo": "project\/delete-mock-phone.md", @@ -47485,7 +47117,6 @@ "x-appwrite": { "method": "listOAuth2Providers", "group": "oauth2", - "weight": 1211, "cookies": false, "type": "", "demo": "project\/list-o-auth-2-providers.md", @@ -47560,7 +47191,6 @@ "x-appwrite": { "method": "updateOAuth2Amazon", "group": "oauth2", - "weight": 1238, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-amazon.md", @@ -47641,7 +47271,6 @@ "x-appwrite": { "method": "updateOAuth2Apple", "group": "oauth2", - "weight": 1253, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-apple.md", @@ -47734,7 +47363,6 @@ "x-appwrite": { "method": "updateOAuth2Auth0", "group": "oauth2", - "weight": 1247, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-auth-0.md", @@ -47821,7 +47449,6 @@ "x-appwrite": { "method": "updateOAuth2Authentik", "group": "oauth2", - "weight": 1246, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-authentik.md", @@ -47908,7 +47535,6 @@ "x-appwrite": { "method": "updateOAuth2Autodesk", "group": "oauth2", - "weight": 1221, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-autodesk.md", @@ -47989,7 +47615,6 @@ "x-appwrite": { "method": "updateOAuth2Bitbucket", "group": "oauth2", - "weight": 1218, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-bitbucket.md", @@ -48070,7 +47695,6 @@ "x-appwrite": { "method": "updateOAuth2Bitly", "group": "oauth2", - "weight": 1219, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-bitly.md", @@ -48151,7 +47775,6 @@ "x-appwrite": { "method": "updateOAuth2Box", "group": "oauth2", - "weight": 1220, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-box.md", @@ -48232,7 +47855,6 @@ "x-appwrite": { "method": "updateOAuth2Dailymotion", "group": "oauth2", - "weight": 1217, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-dailymotion.md", @@ -48313,7 +47935,6 @@ "x-appwrite": { "method": "updateOAuth2Discord", "group": "oauth2", - "weight": 1214, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-discord.md", @@ -48394,7 +48015,6 @@ "x-appwrite": { "method": "updateOAuth2Disqus", "group": "oauth2", - "weight": 1237, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-disqus.md", @@ -48475,7 +48095,6 @@ "x-appwrite": { "method": "updateOAuth2Dropbox", "group": "oauth2", - "weight": 1216, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-dropbox.md", @@ -48556,7 +48175,6 @@ "x-appwrite": { "method": "updateOAuth2Etsy", "group": "oauth2", - "weight": 1239, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-etsy.md", @@ -48637,7 +48255,6 @@ "x-appwrite": { "method": "updateOAuth2Facebook", "group": "oauth2", - "weight": 1240, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-facebook.md", @@ -48718,7 +48335,6 @@ "x-appwrite": { "method": "updateOAuth2Figma", "group": "oauth2", - "weight": 1215, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-figma.md", @@ -48799,7 +48415,6 @@ "x-appwrite": { "method": "updateOAuth2FusionAuth", "group": "oauth2", - "weight": 1248, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-fusion-auth.md", @@ -48886,7 +48501,6 @@ "x-appwrite": { "method": "updateOAuth2GitHub", "group": "oauth2", - "weight": 1213, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-git-hub.md", @@ -48967,7 +48581,6 @@ "x-appwrite": { "method": "updateOAuth2Gitlab", "group": "oauth2", - "weight": 1245, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-gitlab.md", @@ -49055,7 +48668,6 @@ "x-appwrite": { "method": "updateOAuth2Google", "group": "oauth2", - "weight": 1222, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-google.md", @@ -49110,8 +48722,7 @@ "consent", "select_account" ], - "x-enum-name": "ProjectOAuth2GooglePrompt", - "x-enum-keys": [] + "x-enum-name": "ProjectOAuth2GooglePrompt" } }, "enabled": { @@ -49152,7 +48763,6 @@ "x-appwrite": { "method": "updateOAuth2Keycloak", "group": "oauth2", - "weight": 1249, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-keycloak.md", @@ -49245,7 +48855,6 @@ "x-appwrite": { "method": "updateOAuth2Kick", "group": "oauth2", - "weight": 1252, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-kick.md", @@ -49326,7 +48935,6 @@ "x-appwrite": { "method": "updateOAuth2Linkedin", "group": "oauth2", - "weight": 1236, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-linkedin.md", @@ -49407,7 +49015,6 @@ "x-appwrite": { "method": "updateOAuth2Microsoft", "group": "oauth2", - "weight": 1254, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-microsoft.md", @@ -49494,7 +49101,6 @@ "x-appwrite": { "method": "updateOAuth2Notion", "group": "oauth2", - "weight": 1233, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-notion.md", @@ -49575,7 +49181,6 @@ "x-appwrite": { "method": "updateOAuth2Oidc", "group": "oauth2", - "weight": 1250, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-oidc.md", @@ -49684,7 +49289,6 @@ "x-appwrite": { "method": "updateOAuth2Okta", "group": "oauth2", - "weight": 1251, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-okta.md", @@ -49777,7 +49381,6 @@ "x-appwrite": { "method": "updateOAuth2Paypal", "group": "oauth2", - "weight": 1243, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-paypal.md", @@ -49858,7 +49461,6 @@ "x-appwrite": { "method": "updateOAuth2PaypalSandbox", "group": "oauth2", - "weight": 1244, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-paypal-sandbox.md", @@ -49939,7 +49541,6 @@ "x-appwrite": { "method": "updateOAuth2Podio", "group": "oauth2", - "weight": 1232, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-podio.md", @@ -50020,7 +49621,6 @@ "x-appwrite": { "method": "updateOAuth2Salesforce", "group": "oauth2", - "weight": 1234, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-salesforce.md", @@ -50101,7 +49701,6 @@ "x-appwrite": { "method": "updateOAuth2Slack", "group": "oauth2", - "weight": 1231, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-slack.md", @@ -50182,7 +49781,6 @@ "x-appwrite": { "method": "updateOAuth2Spotify", "group": "oauth2", - "weight": 1230, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-spotify.md", @@ -50263,7 +49861,6 @@ "x-appwrite": { "method": "updateOAuth2Stripe", "group": "oauth2", - "weight": 1229, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-stripe.md", @@ -50344,7 +49941,6 @@ "x-appwrite": { "method": "updateOAuth2Tradeshift", "group": "oauth2", - "weight": 1241, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-tradeshift.md", @@ -50425,7 +50021,6 @@ "x-appwrite": { "method": "updateOAuth2TradeshiftSandbox", "group": "oauth2", - "weight": 1242, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-tradeshift-sandbox.md", @@ -50506,7 +50101,6 @@ "x-appwrite": { "method": "updateOAuth2Twitch", "group": "oauth2", - "weight": 1228, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-twitch.md", @@ -50587,7 +50181,6 @@ "x-appwrite": { "method": "updateOAuth2WordPress", "group": "oauth2", - "weight": 1227, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-word-press.md", @@ -50668,7 +50261,6 @@ "x-appwrite": { "method": "updateOAuth2X", "group": "oauth2", - "weight": 1226, "cookies": false, "type": "", "demo": "project\/update-o-auth-2x.md", @@ -50749,7 +50341,6 @@ "x-appwrite": { "method": "updateOAuth2Yahoo", "group": "oauth2", - "weight": 1235, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-yahoo.md", @@ -50830,7 +50421,6 @@ "x-appwrite": { "method": "updateOAuth2Yandex", "group": "oauth2", - "weight": 1225, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-yandex.md", @@ -50911,7 +50501,6 @@ "x-appwrite": { "method": "updateOAuth2Zoho", "group": "oauth2", - "weight": 1224, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-zoho.md", @@ -50992,7 +50581,6 @@ "x-appwrite": { "method": "updateOAuth2Zoom", "group": "oauth2", - "weight": 1223, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-zoom.md", @@ -51239,7 +50827,6 @@ "x-appwrite": { "method": "getOAuth2Provider", "group": "oauth2", - "weight": 1212, "cookies": false, "type": "", "demo": "project\/get-o-auth-2-provider.md", @@ -51313,12 +50900,9 @@ "yammer", "yandex", "zoho", - "zoom", - "githubImagine", - "googleImagine" + "zoom" ], "x-enum-name": "ProjectOAuthProviderId", - "x-enum-keys": [], "in": "path" } ] @@ -51348,7 +50932,6 @@ "x-appwrite": { "method": "listPlatforms", "group": "platforms", - "weight": 1181, "cookies": false, "type": "", "demo": "project\/list-platforms.md", @@ -51423,7 +51006,6 @@ "x-appwrite": { "method": "createAndroidPlatform", "group": "platforms", - "weight": 1185, "cookies": false, "type": "", "demo": "project\/create-android-platform.md", @@ -51506,7 +51088,6 @@ "x-appwrite": { "method": "updateAndroidPlatform", "group": "platforms", - "weight": 1190, "cookies": false, "type": "", "demo": "project\/update-android-platform.md", @@ -51591,7 +51172,6 @@ "x-appwrite": { "method": "createApplePlatform", "group": "platforms", - "weight": 1184, "cookies": false, "type": "", "demo": "project\/create-apple-platform.md", @@ -51674,7 +51254,6 @@ "x-appwrite": { "method": "updateApplePlatform", "group": "platforms", - "weight": 1189, "cookies": false, "type": "", "demo": "project\/update-apple-platform.md", @@ -51759,7 +51338,6 @@ "x-appwrite": { "method": "createLinuxPlatform", "group": "platforms", - "weight": 1187, "cookies": false, "type": "", "demo": "project\/create-linux-platform.md", @@ -51842,7 +51420,6 @@ "x-appwrite": { "method": "updateLinuxPlatform", "group": "platforms", - "weight": 1192, "cookies": false, "type": "", "demo": "project\/update-linux-platform.md", @@ -51927,7 +51504,6 @@ "x-appwrite": { "method": "createWebPlatform", "group": "platforms", - "weight": 1183, "cookies": false, "type": "", "demo": "project\/create-web-platform.md", @@ -52010,7 +51586,6 @@ "x-appwrite": { "method": "updateWebPlatform", "group": "platforms", - "weight": 1188, "cookies": false, "type": "", "demo": "project\/update-web-platform.md", @@ -52095,7 +51670,6 @@ "x-appwrite": { "method": "createWindowsPlatform", "group": "platforms", - "weight": 1186, "cookies": false, "type": "", "demo": "project\/create-windows-platform.md", @@ -52178,7 +51752,6 @@ "x-appwrite": { "method": "updateWindowsPlatform", "group": "platforms", - "weight": 1191, "cookies": false, "type": "", "demo": "project\/update-windows-platform.md", @@ -52287,7 +51860,6 @@ "x-appwrite": { "method": "getPlatform", "group": "platforms", - "weight": 1182, "cookies": false, "type": "", "demo": "project\/get-platform.md", @@ -52342,7 +51914,6 @@ "x-appwrite": { "method": "deletePlatform", "group": "platforms", - "weight": 1193, "cookies": false, "type": "", "demo": "project\/delete-platform.md", @@ -52402,7 +51973,6 @@ "x-appwrite": { "method": "listPolicies", "group": "policies", - "weight": 1199, "cookies": false, "type": "", "demo": "project\/list-policies.md", @@ -52480,7 +52050,6 @@ "x-appwrite": { "method": "updateDenyAliasedEmailPolicy", "group": "policies", - "weight": 1255, "cookies": false, "type": "", "demo": "project\/update-deny-aliased-email-policy.md", @@ -52554,7 +52123,6 @@ "x-appwrite": { "method": "updateDenyDisposableEmailPolicy", "group": "policies", - "weight": 1256, "cookies": false, "type": "", "demo": "project\/update-deny-disposable-email-policy.md", @@ -52628,7 +52196,6 @@ "x-appwrite": { "method": "updateDenyFreeEmailPolicy", "group": "policies", - "weight": 1257, "cookies": false, "type": "", "demo": "project\/update-deny-free-email-policy.md", @@ -52702,7 +52269,6 @@ "x-appwrite": { "method": "updateMembershipPrivacyPolicy", "group": "policies", - "weight": 1201, "cookies": false, "type": "", "demo": "project\/update-membership-privacy-policy.md", @@ -52793,7 +52359,6 @@ "x-appwrite": { "method": "updatePasswordDictionaryPolicy", "group": "policies", - "weight": 1202, "cookies": false, "type": "", "demo": "project\/update-password-dictionary-policy.md", @@ -52867,7 +52432,6 @@ "x-appwrite": { "method": "updatePasswordHistoryPolicy", "group": "policies", - "weight": 1203, "cookies": false, "type": "", "demo": "project\/update-password-history-policy.md", @@ -52943,7 +52507,6 @@ "x-appwrite": { "method": "updatePasswordPersonalDataPolicy", "group": "policies", - "weight": 1204, "cookies": false, "type": "", "demo": "project\/update-password-personal-data-policy.md", @@ -53017,7 +52580,6 @@ "x-appwrite": { "method": "updateSessionAlertPolicy", "group": "policies", - "weight": 1205, "cookies": false, "type": "", "demo": "project\/update-session-alert-policy.md", @@ -53091,7 +52653,6 @@ "x-appwrite": { "method": "updateSessionDurationPolicy", "group": "policies", - "weight": 1206, "cookies": false, "type": "", "demo": "project\/update-session-duration-policy.md", @@ -53166,7 +52727,6 @@ "x-appwrite": { "method": "updateSessionInvalidationPolicy", "group": "policies", - "weight": 1207, "cookies": false, "type": "", "demo": "project\/update-session-invalidation-policy.md", @@ -53240,7 +52800,6 @@ "x-appwrite": { "method": "updateSessionLimitPolicy", "group": "policies", - "weight": 1208, "cookies": false, "type": "", "demo": "project\/update-session-limit-policy.md", @@ -53316,7 +52875,6 @@ "x-appwrite": { "method": "updateUserLimitPolicy", "group": "policies", - "weight": 1209, "cookies": false, "type": "", "demo": "project\/update-user-limit-policy.md", @@ -53432,7 +52990,6 @@ "x-appwrite": { "method": "getPolicy", "group": "policies", - "weight": 1200, "cookies": false, "type": "", "demo": "project\/get-policy.md", @@ -53478,7 +53035,6 @@ "membership-privacy" ], "x-enum-name": "ProjectPolicyId", - "x-enum-keys": [], "in": "path" } ] @@ -53510,7 +53066,6 @@ "x-appwrite": { "method": "updateProtocol", "group": null, - "weight": 1163, "cookies": false, "type": "", "demo": "project\/update-protocol.md", @@ -53547,7 +53102,6 @@ "websocket" ], "x-enum-name": "ProjectProtocolId", - "x-enum-keys": [], "in": "path" }, { @@ -53596,7 +53150,6 @@ "x-appwrite": { "method": "updateService", "group": null, - "weight": 1164, "cookies": false, "type": "", "demo": "project\/update-service.md", @@ -53648,7 +53201,6 @@ "advisor" ], "x-enum-name": "ProjectServiceId", - "x-enum-keys": [], "in": "path" }, { @@ -53697,7 +53249,6 @@ "x-appwrite": { "method": "updateSMTP", "group": "smtp", - "weight": 1165, "cookies": false, "type": "", "demo": "project\/update-smtp.md", @@ -53788,7 +53339,6 @@ "ssl" ], "x-enum-name": "ProjectSMTPSecure", - "x-enum-keys": [], "x-nullable": true }, "enabled": { @@ -53824,7 +53374,6 @@ "x-appwrite": { "method": "createSMTPTest", "group": "smtp", - "weight": 1166, "cookies": false, "type": "", "demo": "project\/create-smtp-test.md", @@ -53896,7 +53445,6 @@ "x-appwrite": { "method": "listEmailTemplates", "group": "templates", - "weight": 1167, "cookies": false, "type": "", "demo": "project\/list-email-templates.md", @@ -53969,7 +53517,6 @@ "x-appwrite": { "method": "updateEmailTemplate", "group": "templates", - "weight": 1169, "cookies": false, "type": "", "demo": "project\/update-email-template.md", @@ -54013,8 +53560,7 @@ "sessionAlert", "otpSession" ], - "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateId" }, "locale": { "type": "string", @@ -54153,8 +53699,7 @@ "zh-tw", "zu" ], - "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateLocale" }, "subject": { "type": "string", @@ -54227,7 +53772,6 @@ "x-appwrite": { "method": "getEmailTemplate", "group": "templates", - "weight": 1168, "cookies": false, "type": "", "demo": "project\/get-email-template.md", @@ -54268,7 +53812,6 @@ "otpSession" ], "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [], "in": "path" }, { @@ -54411,7 +53954,6 @@ "zu" ], "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [], "in": "query" } ] @@ -54441,7 +53983,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 699, "cookies": false, "type": "", "demo": "project\/get-usage.md", @@ -54495,8 +54036,8 @@ ], "x-enum-name": "ProjectUsageRange", "x-enum-keys": [ - "One Hour", - "One Day" + "OneHour", + "OneDay" ], "default": "1d", "in": "query" @@ -54528,7 +54069,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 1171, "cookies": false, "type": "", "demo": "project\/list-variables.md", @@ -54601,7 +54141,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 1170, "cookies": false, "type": "", "demo": "project\/create-variable.md", @@ -54650,8 +54189,8 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only projects can read them during build and runtime.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -54688,7 +54227,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 1172, "cookies": false, "type": "", "demo": "project\/get-variable.md", @@ -54723,231 +54261,9 @@ } ] }, - "put": { - "summary": "Update project variable", - "operationId": "projectUpdateVariable", - "consumes": [ - "application\/json" - ], - "produces": [ - "application\/json" - ], - "tags": [ - "project" - ], - "description": "Update variable by its unique ID.", - "responses": { - "200": { - "description": "Variable", - "schema": { - "$ref": "#\/definitions\/variable" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "updateVariable", - "group": "variables", - "weight": 1174, - "cookies": false, - "type": "", - "demo": "project\/update-variable.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "project.write", - "platforms": [ - "console", - "server" - ], - "packaging": false, - "public": true, - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [], - "Key": [] - } - ], - "parameters": [ - { - "name": "variableId", - "description": "Variable unique ID.", - "required": true, - "type": "string", - "x-example": "<VARIABLE_ID>", - "in": "path" - }, - { - "name": "payload", - "in": "body", - "schema": { - "type": "object", - "properties": { - "key": { - "type": "string", - "description": "Variable key. Max length: 255 chars.", - "x-example": "<KEY>", - "x-nullable": true - }, - "value": { - "type": "string", - "description": "Variable value. Max length: 8192 chars.", - "x-example": "<VALUE>", - "x-nullable": true - }, - "secret": { - "type": "boolean", - "description": "Secret variables can be updated or deleted, but only projects can read them during build and runtime.", - "x-example": false, - "x-nullable": true - } - } - } - } - ] - }, - "delete": { - "summary": "Delete project variable", - "operationId": "projectDeleteVariable", - "consumes": [ - "application\/json" - ], - "produces": [], - "tags": [ - "project" - ], - "description": "Delete a variable by its unique ID. ", - "responses": { - "204": { - "description": "No content" - } - }, - "deprecated": false, - "x-appwrite": { - "method": "deleteVariable", - "group": "variables", - "weight": 1173, - "cookies": false, - "type": "", - "demo": "project\/delete-variable.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "project.write", - "platforms": [ - "console", - "server" - ], - "packaging": false, - "public": true, - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [], - "Key": [] - } - ], - "parameters": [ - { - "name": "variableId", - "description": "Variable unique ID.", - "required": true, - "type": "string", - "x-example": "<VARIABLE_ID>", - "in": "path" - } - ] - } - }, - "\/projects": { - "get": { - "summary": "List projects", - "operationId": "projectsList", - "consumes": [], - "produces": [ - "application\/json" - ], - "tags": [ - "projects" - ], - "description": "Get a list of all projects. You can use the query params to filter your results. ", - "responses": { - "200": { - "description": "Projects List", - "schema": { - "$ref": "#\/definitions\/projectList" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "list", - "group": "projects", - "weight": 1158, - "cookies": false, - "type": "", - "demo": "projects\/list.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "projects.read", - "platforms": [ - "console" - ], - "packaging": false, - "public": true, - "auth": { - "Project": [] - } - }, - "security": [ - { - "Project": [] - } - ], - "parameters": [ - { - "name": "queries", - "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, teamId, labels, search", - "required": false, - "type": "array", - "collectionFormat": "multi", - "items": { - "type": "string" - }, - "default": [], - "in": "query" - }, - { - "name": "search", - "description": "Search term to filter your list results. Max length: 256 chars.", - "required": false, - "type": "string", - "x-example": "<SEARCH>", - "default": "", - "in": "query" - }, - { - "name": "total", - "description": "When set to false, the total count returned will be 0 and will not be calculated.", - "required": false, - "type": "boolean", - "x-example": false, - "default": true, - "in": "query" - } - ] - }, - "post": { - "summary": "Create project", - "operationId": "projectsCreate", + "put": { + "summary": "Update project variable", + "operationId": "projectUpdateVariable", "consumes": [ "application\/json" ], @@ -54955,222 +54271,133 @@ "application\/json" ], "tags": [ - "projects" + "project" ], - "description": "Create a new project. You can create a maximum of 100 projects per account. ", + "description": "Update variable by its unique ID.", "responses": { - "201": { - "description": "Project", + "200": { + "description": "Variable", "schema": { - "$ref": "#\/definitions\/project" + "$ref": "#\/definitions\/variable" } } }, "deprecated": false, "x-appwrite": { - "method": "create", - "group": "projects", - "weight": 1156, + "method": "updateVariable", + "group": "variables", "cookies": false, "type": "", - "demo": "projects\/create.md", + "demo": "project\/update-variable.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "projects.write", + "scope": "project.write", "platforms": [ - "console" + "console", + "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/projects\/create.md", "auth": { "Project": [] } }, "security": [ { - "Project": [] + "Project": [], + "Key": [] } ], "parameters": [ + { + "name": "variableId", + "description": "Variable unique ID.", + "required": true, + "type": "string", + "x-example": "<VARIABLE_ID>", + "in": "path" + }, { "name": "payload", "in": "body", "schema": { "type": "object", "properties": { - "projectId": { - "type": "string", - "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, and hyphen. Can't start with a special char. Max length is 36 chars.", - "x-example": null - }, - "name": { + "key": { "type": "string", - "description": "Project name. Max length: 128 chars.", - "x-example": "<NAME>" + "description": "Variable key. Max length: 255 chars.", + "x-example": "<KEY>", + "x-nullable": true }, - "teamId": { + "value": { "type": "string", - "description": "Team unique ID.", - "x-example": "<TEAM_ID>" + "description": "Variable value. Max length: 8192 chars.", + "x-example": "<VALUE>", + "x-nullable": true }, - "region": { - "type": "string", - "description": "Project Region.", - "x-example": "fra", - "default": "fra", - "enum": [ - "fra", - "nyc", - "syd", - "sfo", - "sgp", - "tor" - ], - "x-enum-name": null, - "x-enum-keys": [] + "secret": { + "type": "boolean", + "description": "Secret variables can be updated or deleted, but only projects can read them during build and runtime.", + "x-example": false, + "x-nullable": true } - }, - "required": [ - "projectId", - "name", - "teamId" - ] + } } } ] - } - }, - "\/projects\/{projectId}": { - "patch": { - "summary": "Update project", - "operationId": "projectsUpdate", + }, + "delete": { + "summary": "Delete project variable", + "operationId": "projectDeleteVariable", "consumes": [ "application\/json" ], - "produces": [ - "application\/json" - ], + "produces": [], "tags": [ - "projects" + "project" ], - "description": "Update a project by its unique ID.", + "description": "Delete a variable by its unique ID. ", "responses": { - "200": { - "description": "Project", - "schema": { - "$ref": "#\/definitions\/project" - } + "204": { + "description": "No content" } }, "deprecated": false, "x-appwrite": { - "method": "update", - "group": "projects", - "weight": 1157, + "method": "deleteVariable", + "group": "variables", "cookies": false, "type": "", - "demo": "projects\/update.md", + "demo": "project\/delete-variable.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "projects.write", + "scope": "project.write", "platforms": [ - "console" + "console", + "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/projects\/update.md", "auth": { "Project": [] } }, "security": [ { - "Project": [] + "Project": [], + "Key": [] } ], "parameters": [ { - "name": "projectId", - "description": "Project unique ID.", + "name": "variableId", + "description": "Variable unique ID.", "required": true, "type": "string", - "x-example": "<PROJECT_ID>", + "x-example": "<VARIABLE_ID>", "in": "path" - }, - { - "name": "payload", - "in": "body", - "schema": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Project name. Max length: 128 chars.", - "x-example": "<NAME>" - }, - "description": { - "type": "string", - "description": "Project description. Max length: 256 chars.", - "x-example": "<DESCRIPTION>", - "default": "" - }, - "logo": { - "type": "string", - "description": "Project logo.", - "x-example": "<LOGO>", - "default": "" - }, - "url": { - "type": "string", - "description": "Project URL.", - "x-example": "https:\/\/example.com", - "default": "", - "format": "url" - }, - "legalName": { - "type": "string", - "description": "Project legal name. Max length: 256 chars.", - "x-example": "<LEGAL_NAME>", - "default": "" - }, - "legalCountry": { - "type": "string", - "description": "Project legal country. Max length: 256 chars.", - "x-example": "<LEGAL_COUNTRY>", - "default": "" - }, - "legalState": { - "type": "string", - "description": "Project legal state. Max length: 256 chars.", - "x-example": "<LEGAL_STATE>", - "default": "" - }, - "legalCity": { - "type": "string", - "description": "Project legal city. Max length: 256 chars.", - "x-example": "<LEGAL_CITY>", - "default": "" - }, - "legalAddress": { - "type": "string", - "description": "Project legal address. Max length: 256 chars.", - "x-example": "<LEGAL_ADDRESS>", - "default": "" - }, - "legalTaxId": { - "type": "string", - "description": "Project legal tax ID. Max length: 256 chars.", - "x-example": "<LEGAL_TAX_ID>", - "default": "" - } - }, - "required": [ - "name" - ] - } } ] } @@ -55198,7 +54425,6 @@ "x-appwrite": { "method": "updateConsoleAccess", "group": null, - "weight": 1153, "cookies": false, "type": "", "demo": "projects\/update-console-access.md", @@ -55257,7 +54483,6 @@ "x-appwrite": { "method": "listDevKeys", "group": "devKeys", - "weight": 407, "cookies": false, "type": "", "demo": "projects\/list-dev-keys.md", @@ -55327,7 +54552,6 @@ "x-appwrite": { "method": "createDevKey", "group": "devKeys", - "weight": 404, "cookies": false, "type": "", "demo": "projects\/create-dev-key.md", @@ -55409,7 +54633,6 @@ "x-appwrite": { "method": "getDevKey", "group": "devKeys", - "weight": 406, "cookies": false, "type": "", "demo": "projects\/get-dev-key.md", @@ -55475,7 +54698,6 @@ "x-appwrite": { "method": "updateDevKey", "group": "devKeys", - "weight": 405, "cookies": false, "type": "", "demo": "projects\/update-dev-key.md", @@ -55560,7 +54782,6 @@ "x-appwrite": { "method": "deleteDevKey", "group": "devKeys", - "weight": 408, "cookies": false, "type": "", "demo": "projects\/delete-dev-key.md", @@ -55626,7 +54847,6 @@ "x-appwrite": { "method": "listSchedules", "group": "schedules", - "weight": 415, "cookies": false, "type": "", "demo": "projects\/list-schedules.md", @@ -55706,7 +54926,6 @@ "x-appwrite": { "method": "createSchedule", "group": "schedules", - "weight": 1159, "cookies": false, "type": "", "demo": "projects\/create-schedule.md", @@ -55754,8 +54973,7 @@ "message", "backup" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ScheduleResourceType" }, "resourceId": { "type": "string", @@ -55770,14 +54988,14 @@ "active": { "type": "boolean", "description": "Whether the schedule is active.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "data": { "type": "object", "description": "Schedule data as a JSON string. Used to store resource-specific context needed for execution.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -55814,7 +55032,6 @@ "x-appwrite": { "method": "getSchedule", "group": "schedules", - "weight": 414, "cookies": false, "type": "", "demo": "projects\/get-schedule.md", @@ -55880,7 +55097,6 @@ "x-appwrite": { "method": "updateStatus", "group": null, - "weight": 1154, "cookies": false, "type": "", "demo": "projects\/update-status.md", @@ -55925,8 +55141,7 @@ "enum": [ "active" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectStatus" } }, "required": [ @@ -55963,7 +55178,6 @@ "x-appwrite": { "method": "updateTeam", "group": "projects", - "weight": 1155, "cookies": false, "type": "", "demo": "projects\/update-team.md", @@ -56039,7 +55253,6 @@ "x-appwrite": { "method": "listRules", "group": "rules", - "weight": 1267, "cookies": false, "type": "", "demo": "proxy\/list-rules.md", @@ -56114,7 +55327,6 @@ "x-appwrite": { "method": "createAPIRule", "group": "rules", - "weight": 1262, "cookies": false, "type": "", "demo": "proxy\/create-api-rule.md", @@ -56185,7 +55397,6 @@ "x-appwrite": { "method": "createFunctionRule", "group": "rules", - "weight": 1264, "cookies": false, "type": "", "demo": "proxy\/create-function-rule.md", @@ -56229,8 +55440,8 @@ "branch": { "type": "string", "description": "Name of VCS branch to deploy changes automatically", - "x-example": "<BRANCH>", - "default": "" + "default": "", + "x-example": "<BRANCH>" } }, "required": [ @@ -56268,7 +55479,6 @@ "x-appwrite": { "method": "createRedirectRule", "group": "rules", - "weight": 1265, "cookies": false, "type": "", "demo": "proxy\/create-redirect-rule.md", @@ -56320,12 +55530,12 @@ "307", "308" ], - "x-enum-name": null, + "x-enum-name": "RedirectStatusCode", "x-enum-keys": [ - "Moved Permanently 301", - "Found 302", - "Temporary Redirect 307", - "Permanent Redirect 308" + "MovedPermanently", + "Found", + "TemporaryRedirect", + "PermanentRedirect" ] }, "resourceId": { @@ -56386,7 +55596,6 @@ "x-appwrite": { "method": "createSiteRule", "group": "rules", - "weight": 1263, "cookies": false, "type": "", "demo": "proxy\/create-site-rule.md", @@ -56430,8 +55639,8 @@ "branch": { "type": "string", "description": "Name of VCS branch to deploy changes automatically", - "x-example": "<BRANCH>", - "default": "" + "default": "", + "x-example": "<BRANCH>" } }, "required": [ @@ -56467,7 +55676,6 @@ "x-appwrite": { "method": "getRule", "group": "rules", - "weight": 1266, "cookies": false, "type": "", "demo": "proxy\/get-rule.md", @@ -56522,7 +55730,6 @@ "x-appwrite": { "method": "deleteRule", "group": "rules", - "weight": 1268, "cookies": false, "type": "", "demo": "proxy\/delete-rule.md", @@ -56584,7 +55791,6 @@ "x-appwrite": { "method": "updateRuleStatus", "group": "rules", - "weight": 1269, "cookies": false, "type": "", "demo": "proxy\/update-rule-status.md", @@ -56644,7 +55850,6 @@ "x-appwrite": { "method": "listReports", "group": "reports", - "weight": 695, "cookies": false, "type": "", "demo": "advisor\/list-reports.md", @@ -56718,7 +55923,6 @@ "x-appwrite": { "method": "getReport", "group": "reports", - "weight": 694, "cookies": false, "type": "", "demo": "advisor\/get-report.md", @@ -56774,7 +55978,6 @@ "x-appwrite": { "method": "deleteReport", "group": "reports", - "weight": 696, "cookies": false, "type": "", "demo": "advisor\/delete-report.md", @@ -56835,7 +56038,6 @@ "x-appwrite": { "method": "listInsights", "group": "insights", - "weight": 698, "cookies": false, "type": "", "demo": "advisor\/list-insights.md", @@ -56917,7 +56119,6 @@ "x-appwrite": { "method": "getInsight", "group": "insights", - "weight": 697, "cookies": false, "type": "", "demo": "advisor\/get-insight.md", @@ -56986,7 +56187,6 @@ "x-appwrite": { "method": "list", "group": "sites", - "weight": 479, "cookies": false, "type": "", "demo": "sites\/list.md", @@ -57068,7 +56268,6 @@ "x-appwrite": { "method": "create", "group": "sites", - "weight": 972, "cookies": false, "type": "", "demo": "sites\/create.md", @@ -57130,51 +56329,50 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "enabled": { "type": "boolean", "description": "Is site enabled? When set to 'disabled', users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "timeout": { "type": "integer", "description": "Maximum request time in seconds.", - "x-example": 1, "default": 30, + "x-example": 1, "format": "int32" }, "installCommand": { "type": "string", "description": "Install Command.", - "x-example": "<INSTALL_COMMAND>", - "default": "" + "default": "", + "x-example": "<INSTALL_COMMAND>" }, "buildCommand": { "type": "string", "description": "Build Command.", - "x-example": "<BUILD_COMMAND>", - "default": "" + "default": "", + "x-example": "<BUILD_COMMAND>" }, "startCommand": { "type": "string", "description": "Custom start command. Leave empty to use default.", - "x-example": "<START_COMMAND>", - "default": "" + "default": "", + "x-example": "<START_COMMAND>" }, "outputDirectory": { "type": "string", "description": "Output Directory for site.", - "x-example": "<OUTPUT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<OUTPUT_DIRECTORY>" }, "buildRuntime": { "type": "string", @@ -57233,6 +56431,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -57272,10 +56471,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteBuildRuntime" }, "adapter": { "type": "string", @@ -57285,62 +56484,79 @@ "static", "ssr" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteAdapter" }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", - "x-example": "<INSTALLATION_ID>", - "default": "" + "default": "", + "x-example": "<INSTALLATION_ID>" }, "fallbackFile": { "type": "string", "description": "Fallback file for single page application sites.", - "x-example": "<FALLBACK_FILE>", - "default": "" + "default": "", + "x-example": "<FALLBACK_FILE>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the site.", - "x-example": "<PROVIDER_REPOSITORY_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the site.", - "x-example": "<PROVIDER_BRANCH>", - "default": "" + "default": "", + "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to site code in the linked repo.", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" + }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } }, "buildSpecification": { "type": "string", "description": "Build specification for the site deployments.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the SSR executions.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" } }, @@ -57379,7 +56595,6 @@ "x-appwrite": { "method": "listFrameworks", "group": "frameworks", - "weight": 482, "cookies": false, "type": "", "demo": "sites\/list-frameworks.md", @@ -57429,7 +56644,6 @@ "x-appwrite": { "method": "listSpecifications", "group": "frameworks", - "weight": 505, "cookies": false, "type": "", "demo": "sites\/list-specifications.md", @@ -57479,7 +56693,6 @@ "x-appwrite": { "method": "listTemplates", "group": "templates", - "weight": 501, "cookies": false, "type": "", "demo": "sites\/list-templates.md", @@ -57527,8 +56740,7 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "default": [], "in": "query" @@ -57552,8 +56764,7 @@ "forms", "dashboard" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteTemplateUseCase" }, "default": [], "in": "query" @@ -57605,7 +56816,6 @@ "x-appwrite": { "method": "getTemplate", "group": "templates", - "weight": 502, "cookies": false, "type": "", "demo": "sites\/get-template.md", @@ -57663,7 +56873,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 503, "cookies": false, "type": "", "demo": "sites\/list-usage.md", @@ -57733,7 +56942,6 @@ "x-appwrite": { "method": "get", "group": "sites", - "weight": 478, "cookies": false, "type": "", "demo": "sites\/get.md", @@ -57793,7 +57001,6 @@ "x-appwrite": { "method": "update", "group": "sites", - "weight": 973, "cookies": false, "type": "", "demo": "sites\/update.md", @@ -57858,51 +57065,50 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "enabled": { "type": "boolean", "description": "Is site enabled? When set to 'disabled', users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "timeout": { "type": "integer", "description": "Maximum request time in seconds.", - "x-example": 1, "default": 30, + "x-example": 1, "format": "int32" }, "installCommand": { "type": "string", "description": "Install Command.", - "x-example": "<INSTALL_COMMAND>", - "default": "" + "default": "", + "x-example": "<INSTALL_COMMAND>" }, "buildCommand": { "type": "string", "description": "Build Command.", - "x-example": "<BUILD_COMMAND>", - "default": "" + "default": "", + "x-example": "<BUILD_COMMAND>" }, "startCommand": { "type": "string", "description": "Custom start command. Leave empty to use default.", - "x-example": "<START_COMMAND>", - "default": "" + "default": "", + "x-example": "<START_COMMAND>" }, "outputDirectory": { "type": "string", "description": "Output Directory for site.", - "x-example": "<OUTPUT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<OUTPUT_DIRECTORY>" }, "buildRuntime": { "type": "string", @@ -57961,6 +57167,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -58000,10 +57207,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteBuildRuntime" }, "adapter": { "type": "string", @@ -58013,62 +57220,79 @@ "static", "ssr" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteAdapter" }, "fallbackFile": { "type": "string", "description": "Fallback file for single page application sites.", - "x-example": "<FALLBACK_FILE>", - "default": "" + "default": "", + "x-example": "<FALLBACK_FILE>" }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", - "x-example": "<INSTALLATION_ID>", - "default": "" + "default": "", + "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the site.", - "x-example": "<PROVIDER_REPOSITORY_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the site.", - "x-example": "<PROVIDER_BRANCH>", - "default": "" + "default": "", + "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to site code in the linked repo.", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" + }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "x-example": null, + "x-nullable": true, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "x-example": null, + "x-nullable": true, + "items": { + "type": "string" + } }, "buildSpecification": { "type": "string", "description": "Build specification for the site deployments.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the SSR executions.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" } }, @@ -58100,7 +57324,6 @@ "x-appwrite": { "method": "delete", "group": "sites", - "weight": 481, "cookies": false, "type": "", "demo": "sites\/delete.md", @@ -58162,7 +57385,6 @@ "x-appwrite": { "method": "updateSiteDeployment", "group": "sites", - "weight": 488, "cookies": false, "type": "", "demo": "sites\/update-site-deployment.md", @@ -58239,7 +57461,6 @@ "x-appwrite": { "method": "listDeployments", "group": "deployments", - "weight": 487, "cookies": false, "type": "", "demo": "sites\/list-deployments.md", @@ -58329,7 +57550,6 @@ "x-appwrite": { "method": "createDeployment", "group": "deployments", - "weight": 483, "cookies": false, "type": "upload", "demo": "sites\/create-deployment.md", @@ -58431,7 +57651,6 @@ "x-appwrite": { "method": "createDuplicateDeployment", "group": "deployments", - "weight": 491, "cookies": false, "type": "", "demo": "sites\/create-duplicate-deployment.md", @@ -58510,7 +57729,6 @@ "x-appwrite": { "method": "createTemplateDeployment", "group": "deployments", - "weight": 484, "cookies": false, "type": "", "demo": "sites\/create-template-deployment.md", @@ -58573,8 +57791,7 @@ "commit", "tag" ], - "x-enum-name": "TemplateReferenceType", - "x-enum-keys": [] + "x-enum-name": "TemplateReferenceType" }, "reference": { "type": "string", @@ -58584,8 +57801,8 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -58626,7 +57843,6 @@ "x-appwrite": { "method": "createVcsDeployment", "group": "deployments", - "weight": 485, "cookies": false, "type": "", "demo": "sites\/create-vcs-deployment.md", @@ -58674,8 +57890,7 @@ "commit", "tag" ], - "x-enum-name": "VCSReferenceType", - "x-enum-keys": [] + "x-enum-name": "VCSReferenceType" }, "reference": { "type": "string", @@ -58685,8 +57900,8 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -58722,7 +57937,6 @@ "x-appwrite": { "method": "getDeployment", "group": "deployments", - "weight": 486, "cookies": false, "type": "", "demo": "sites\/get-deployment.md", @@ -58785,7 +57999,6 @@ "x-appwrite": { "method": "deleteDeployment", "group": "deployments", - "weight": 489, "cookies": false, "type": "", "demo": "sites\/delete-deployment.md", @@ -58853,7 +58066,6 @@ "x-appwrite": { "method": "getDeploymentDownload", "group": "deployments", - "weight": 490, "cookies": false, "type": "location", "demo": "sites\/get-deployment-download.md", @@ -58906,7 +58118,6 @@ "output" ], "x-enum-name": "DeploymentDownloadType", - "x-enum-keys": [], "default": "source", "in": "query" } @@ -58939,7 +58150,6 @@ "x-appwrite": { "method": "updateDeploymentStatus", "group": "deployments", - "weight": 492, "cookies": false, "type": "", "demo": "sites\/update-deployment-status.md", @@ -59007,7 +58217,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 494, "cookies": false, "type": "", "demo": "sites\/list-logs.md", @@ -59088,7 +58297,6 @@ "x-appwrite": { "method": "getLog", "group": "logs", - "weight": 493, "cookies": false, "type": "", "demo": "sites\/get-log.md", @@ -59153,7 +58361,6 @@ "x-appwrite": { "method": "deleteLog", "group": "logs", - "weight": 495, "cookies": false, "type": "", "demo": "sites\/delete-log.md", @@ -59221,7 +58428,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 504, "cookies": false, "type": "", "demo": "sites\/get-usage.md", @@ -59299,7 +58505,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 498, "cookies": false, "type": "", "demo": "sites\/list-variables.md", @@ -59380,7 +58585,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 974, "cookies": false, "type": "", "demo": "sites\/create-variable.md", @@ -59437,8 +58641,8 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only sites can read them during build and runtime.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -59475,7 +58679,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 497, "cookies": false, "type": "", "demo": "sites\/get-variable.md", @@ -59543,7 +58746,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 499, "cookies": false, "type": "", "demo": "sites\/update-variable.md", @@ -59633,7 +58835,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 500, "cookies": false, "type": "", "demo": "sites\/delete-variable.md", @@ -59701,7 +58902,6 @@ "x-appwrite": { "method": "listBuckets", "group": "buckets", - "weight": 550, "cookies": false, "type": "", "demo": "storage\/list-buckets.md", @@ -59784,7 +58984,6 @@ "x-appwrite": { "method": "createBucket", "group": "buckets", - "weight": 548, "cookies": false, "type": "", "demo": "storage\/create-bucket.md", @@ -59838,27 +59037,27 @@ "fileSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual file. A user needs one of file or bucket level permissions to access a file. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is bucket enabled? When set to 'disabled', users cannot access the files in this bucket but Server SDKs with and API key can still access the bucket. No files are lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "maximumFileSize": { "type": "integer", - "description": "Maximum file size allowed in bytes. Maximum allowed value is 5GB.", - "x-example": 1, + "description": "Maximum file size allowed in bytes. Maximum allowed value is 0B.", "default": {}, + "x-example": 1, "format": "int32" }, "allowedFileExtensions": { "type": "array", "description": "Allowed file extensions. Maximum of 100 extensions are allowed, each 64 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -59866,33 +59065,32 @@ "compression": { "type": "string", "description": "Compression algorithm chosen for compression. Can be one of none, [gzip](https:\/\/en.wikipedia.org\/wiki\/Gzip), or [zstd](https:\/\/en.wikipedia.org\/wiki\/Zstd), For file size above 20MB compression is skipped even if it's enabled", - "x-example": "none", "default": "none", + "x-example": "none", "enum": [ "none", "gzip", "zstd" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Compression" }, "encryption": { "type": "boolean", "description": "Is encryption enabled? For file size above 20MB encryption is skipped even if it's enabled", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "antivirus": { "type": "boolean", "description": "Is virus scanning enabled? For file size above 20MB AntiVirus scanning is skipped even if it's enabled", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "transformations": { "type": "boolean", "description": "Are image transformations enabled?", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -59928,7 +59126,6 @@ "x-appwrite": { "method": "getBucket", "group": "buckets", - "weight": 549, "cookies": false, "type": "", "demo": "storage\/get-bucket.md", @@ -59989,7 +59186,6 @@ "x-appwrite": { "method": "updateBucket", "group": "buckets", - "weight": 551, "cookies": false, "type": "", "demo": "storage\/update-bucket.md", @@ -60046,27 +59242,27 @@ "fileSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual file. A user needs one of file or bucket level permissions to access a file. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is bucket enabled? When set to 'disabled', users cannot access the files in this bucket but Server SDKs with and API key can still access the bucket. No files are lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "maximumFileSize": { "type": "integer", - "description": "Maximum file size allowed in bytes. Maximum allowed value is 5GB.", - "x-example": 1, + "description": "Maximum file size allowed in bytes. Maximum allowed value is 0B.", "default": {}, + "x-example": 1, "format": "int32" }, "allowedFileExtensions": { "type": "array", "description": "Allowed file extensions. Maximum of 100 extensions are allowed, each 64 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -60074,33 +59270,32 @@ "compression": { "type": "string", "description": "Compression algorithm chosen for compression. Can be one of none, [gzip](https:\/\/en.wikipedia.org\/wiki\/Gzip), or [zstd](https:\/\/en.wikipedia.org\/wiki\/Zstd), For file size above 20MB compression is skipped even if it's enabled", - "x-example": "none", "default": "none", + "x-example": "none", "enum": [ "none", "gzip", "zstd" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Compression" }, "encryption": { "type": "boolean", "description": "Is encryption enabled? For file size above 20MB encryption is skipped even if it's enabled", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "antivirus": { "type": "boolean", "description": "Is virus scanning enabled? For file size above 20MB AntiVirus scanning is skipped even if it's enabled", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "transformations": { "type": "boolean", "description": "Are image transformations enabled?", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -60130,7 +59325,6 @@ "x-appwrite": { "method": "deleteBucket", "group": "buckets", - "weight": 552, "cookies": false, "type": "", "demo": "storage\/delete-bucket.md", @@ -60191,7 +59385,6 @@ "x-appwrite": { "method": "listFiles", "group": "files", - "weight": 555, "cookies": false, "type": "", "demo": "storage\/list-files.md", @@ -60285,7 +59478,6 @@ "x-appwrite": { "method": "createFile", "group": "files", - "weight": 1260, "cookies": false, "type": "upload", "demo": "storage\/create-file.md", @@ -60377,7 +59569,6 @@ "x-appwrite": { "method": "getFile", "group": "files", - "weight": 554, "cookies": false, "type": "", "demo": "storage\/get-file.md", @@ -60449,7 +59640,6 @@ "x-appwrite": { "method": "updateFile", "group": "files", - "weight": 556, "cookies": false, "type": "", "demo": "storage\/update-file.md", @@ -60539,7 +59729,6 @@ "x-appwrite": { "method": "deleteFile", "group": "files", - "weight": 557, "cookies": false, "type": "", "demo": "storage\/delete-file.md", @@ -60611,7 +59800,6 @@ "x-appwrite": { "method": "getFileDownload", "group": "files", - "weight": 559, "cookies": false, "type": "location", "demo": "storage\/get-file-download.md", @@ -60692,7 +59880,6 @@ "x-appwrite": { "method": "getFilePreview", "group": "files", - "weight": 558, "cookies": false, "type": "location", "demo": "storage\/get-file-preview.md", @@ -60775,7 +59962,6 @@ "bottom-right" ], "x-enum-name": "ImageGravity", - "x-enum-keys": [], "default": "center", "in": "query" }, @@ -60861,7 +60047,6 @@ "gif" ], "x-enum-name": "ImageFormat", - "x-enum-keys": [], "in": "query" }, { @@ -60900,7 +60085,6 @@ "x-appwrite": { "method": "getFileView", "group": "files", - "weight": 560, "cookies": false, "type": "location", "demo": "storage\/get-file-view.md", @@ -60981,7 +60165,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 562, "cookies": false, "type": "", "demo": "storage\/get-usage.md", @@ -61052,7 +60235,6 @@ "x-appwrite": { "method": "getBucketUsage", "group": null, - "weight": 563, "cookies": false, "type": "", "demo": "storage\/get-bucket-usage.md", @@ -61131,7 +60313,6 @@ "x-appwrite": { "method": "list", "group": "tablesdb", - "weight": 780, "cookies": false, "type": "", "demo": "tablesdb\/list.md", @@ -61214,7 +60395,6 @@ "x-appwrite": { "method": "create", "group": "tablesdb", - "weight": 776, "cookies": false, "type": "", "demo": "tablesdb\/create.md", @@ -61259,8 +60439,8 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -61296,7 +60476,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 849, "cookies": false, "type": "", "demo": "tablesdb\/list-transactions.md", @@ -61367,7 +60546,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 845, "cookies": false, "type": "", "demo": "tablesdb\/create-transaction.md", @@ -61408,8 +60586,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -61442,7 +60620,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 846, "cookies": false, "type": "", "demo": "tablesdb\/get-transaction.md", @@ -61509,7 +60686,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 847, "cookies": false, "type": "", "demo": "tablesdb\/update-transaction.md", @@ -61558,14 +60734,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -61592,7 +60768,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 848, "cookies": false, "type": "", "demo": "tablesdb\/delete-transaction.md", @@ -61661,7 +60836,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 850, "cookies": false, "type": "", "demo": "tablesdb\/create-operations.md", @@ -61710,8 +60884,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"tableId\": \"<TABLE_ID>\",\n\t \"rowId\": \"<ROW_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"tableId\": \"<TABLE_ID>\",\n\t \"rowId\": \"<ROW_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -61746,7 +60920,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 782, "cookies": false, "type": "", "demo": "tablesdb\/list-usage.md", @@ -61843,7 +61016,6 @@ "x-appwrite": { "method": "get", "group": "tablesdb", - "weight": 777, "cookies": false, "type": "", "demo": "tablesdb\/get.md", @@ -61904,7 +61076,6 @@ "x-appwrite": { "method": "update", "group": "tablesdb", - "weight": 778, "cookies": false, "type": "", "demo": "tablesdb\/update.md", @@ -61952,8 +61123,8 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } } } @@ -61980,7 +61151,6 @@ "x-appwrite": { "method": "delete", "group": "tablesdb", - "weight": 779, "cookies": false, "type": "", "demo": "tablesdb\/delete.md", @@ -62041,7 +61211,6 @@ "x-appwrite": { "method": "listTables", "group": "tables", - "weight": 787, "cookies": false, "type": "", "demo": "tablesdb\/list-tables.md", @@ -62135,7 +61304,6 @@ "x-appwrite": { "method": "createTable", "group": "tables", - "weight": 783, "cookies": false, "type": "", "demo": "tablesdb\/create-table.md", @@ -62200,20 +61368,20 @@ "rowSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual rows. A user needs one of row or table level permissions to access a row. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is table enabled? When set to 'disabled', users cannot access the table but Server SDKs with and API key can still read and write to the table. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "columns": { "type": "array", "description": "Array of column definitions to create. Each column should contain: key (string), type (string: string, integer, float, boolean, datetime, relationship), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -62221,8 +61389,8 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of column keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -62261,7 +61429,6 @@ "x-appwrite": { "method": "getTable", "group": "tables", - "weight": 784, "cookies": false, "type": "", "demo": "tablesdb\/get-table.md", @@ -62333,7 +61500,6 @@ "x-appwrite": { "method": "updateTable", "group": "tables", - "weight": 785, "cookies": false, "type": "", "demo": "tablesdb\/update-table.md", @@ -62401,20 +61567,20 @@ "rowSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual rows. A user needs one of row or table-level permissions to access a row. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is table enabled? When set to 'disabled', users cannot access the table but Server SDKs with and API key can still read and write to the table. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this table as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -62441,7 +61607,6 @@ "x-appwrite": { "method": "deleteTable", "group": "tables", - "weight": 786, "cookies": false, "type": "", "demo": "tablesdb\/delete-table.md", @@ -62513,7 +61678,6 @@ "x-appwrite": { "method": "listColumns", "group": "columns", - "weight": 792, "cookies": false, "type": "", "demo": "tablesdb\/list-columns.md", @@ -62610,7 +61774,6 @@ "x-appwrite": { "method": "createBigIntColumn", "group": "columns", - "weight": 805, "cookies": false, "type": "", "demo": "tablesdb\/create-big-int-column.md", @@ -62697,8 +61860,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -62736,7 +61899,6 @@ "x-appwrite": { "method": "updateBigIntColumn", "group": "columns", - "weight": 806, "cookies": false, "type": "", "demo": "tablesdb\/update-big-int-column.md", @@ -62864,7 +62026,6 @@ "x-appwrite": { "method": "createBooleanColumn", "group": "columns", - "weight": 793, "cookies": false, "type": "", "demo": "tablesdb\/create-boolean-column.md", @@ -62936,8 +62097,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -62975,7 +62136,6 @@ "x-appwrite": { "method": "updateBooleanColumn", "group": "columns", - "weight": 794, "cookies": false, "type": "", "demo": "tablesdb\/update-boolean-column.md", @@ -63088,7 +62248,6 @@ "x-appwrite": { "method": "createDatetimeColumn", "group": "columns", - "weight": 795, "cookies": false, "type": "", "demo": "tablesdb\/create-datetime-column.md", @@ -63161,8 +62320,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -63200,7 +62359,6 @@ "x-appwrite": { "method": "updateDatetimeColumn", "group": "columns", - "weight": 796, "cookies": false, "type": "", "demo": "tablesdb\/update-datetime-column.md", @@ -63314,7 +62472,6 @@ "x-appwrite": { "method": "createEmailColumn", "group": "columns", - "weight": 797, "cookies": false, "type": "", "demo": "tablesdb\/create-email-column.md", @@ -63387,8 +62544,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -63426,7 +62583,6 @@ "x-appwrite": { "method": "updateEmailColumn", "group": "columns", - "weight": 798, "cookies": false, "type": "", "demo": "tablesdb\/update-email-column.md", @@ -63540,7 +62696,6 @@ "x-appwrite": { "method": "createEnumColumn", "group": "columns", - "weight": 799, "cookies": false, "type": "", "demo": "tablesdb\/create-enum-column.md", @@ -63620,8 +62775,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -63660,7 +62815,6 @@ "x-appwrite": { "method": "updateEnumColumn", "group": "columns", - "weight": 800, "cookies": false, "type": "", "demo": "tablesdb\/update-enum-column.md", @@ -63782,7 +62936,6 @@ "x-appwrite": { "method": "createFloatColumn", "group": "columns", - "weight": 801, "cookies": false, "type": "", "demo": "tablesdb\/create-float-column.md", @@ -63869,8 +63022,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -63908,7 +63061,6 @@ "x-appwrite": { "method": "updateFloatColumn", "group": "columns", - "weight": 802, "cookies": false, "type": "", "demo": "tablesdb\/update-float-column.md", @@ -64036,7 +63188,6 @@ "x-appwrite": { "method": "createIntegerColumn", "group": "columns", - "weight": 803, "cookies": false, "type": "", "demo": "tablesdb\/create-integer-column.md", @@ -64123,8 +63274,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -64162,7 +63313,6 @@ "x-appwrite": { "method": "updateIntegerColumn", "group": "columns", - "weight": 804, "cookies": false, "type": "", "demo": "tablesdb\/update-integer-column.md", @@ -64290,7 +63440,6 @@ "x-appwrite": { "method": "createIpColumn", "group": "columns", - "weight": 807, "cookies": false, "type": "", "demo": "tablesdb\/create-ip-column.md", @@ -64362,8 +63511,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -64401,7 +63550,6 @@ "x-appwrite": { "method": "updateIpColumn", "group": "columns", - "weight": 808, "cookies": false, "type": "", "demo": "tablesdb\/update-ip-column.md", @@ -64514,7 +63662,6 @@ "x-appwrite": { "method": "createLineColumn", "group": "columns", - "weight": 809, "cookies": false, "type": "", "demo": "tablesdb\/create-line-column.md", @@ -64619,7 +63766,6 @@ "x-appwrite": { "method": "updateLineColumn", "group": "columns", - "weight": 810, "cookies": false, "type": "", "demo": "tablesdb\/update-line-column.md", @@ -64731,7 +63877,6 @@ "x-appwrite": { "method": "createLongtextColumn", "group": "columns", - "weight": 827, "cookies": false, "type": "", "demo": "tablesdb\/create-longtext-column.md", @@ -64803,14 +63948,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -64848,7 +63993,6 @@ "x-appwrite": { "method": "updateLongtextColumn", "group": "columns", - "weight": 828, "cookies": false, "type": "", "demo": "tablesdb\/update-longtext-column.md", @@ -64961,7 +64105,6 @@ "x-appwrite": { "method": "createMediumtextColumn", "group": "columns", - "weight": 825, "cookies": false, "type": "", "demo": "tablesdb\/create-mediumtext-column.md", @@ -65033,14 +64176,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -65078,7 +64221,6 @@ "x-appwrite": { "method": "updateMediumtextColumn", "group": "columns", - "weight": 826, "cookies": false, "type": "", "demo": "tablesdb\/update-mediumtext-column.md", @@ -65191,7 +64333,6 @@ "x-appwrite": { "method": "createPointColumn", "group": "columns", - "weight": 811, "cookies": false, "type": "", "demo": "tablesdb\/create-point-column.md", @@ -65296,7 +64437,6 @@ "x-appwrite": { "method": "updatePointColumn", "group": "columns", - "weight": 812, "cookies": false, "type": "", "demo": "tablesdb\/update-point-column.md", @@ -65408,7 +64548,6 @@ "x-appwrite": { "method": "createPolygonColumn", "group": "columns", - "weight": 813, "cookies": false, "type": "", "demo": "tablesdb\/create-polygon-column.md", @@ -65513,7 +64652,6 @@ "x-appwrite": { "method": "updatePolygonColumn", "group": "columns", - "weight": 814, "cookies": false, "type": "", "demo": "tablesdb\/update-polygon-column.md", @@ -65625,7 +64763,6 @@ "x-appwrite": { "method": "createRelationshipColumn", "group": "columns", - "weight": 815, "cookies": false, "type": "", "demo": "tablesdb\/create-relationship-column.md", @@ -65693,14 +64830,13 @@ "manyToMany", "oneToMany" ], - "x-enum-name": "RelationshipType", - "x-enum-keys": [] + "x-enum-name": "RelationshipType" }, "twoWay": { "type": "boolean", "description": "Is Two Way?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "key": { "type": "string", @@ -65717,15 +64853,14 @@ "onDelete": { "type": "string", "description": "Constraints option", - "x-example": "cascade", "default": "restrict", + "x-example": "cascade", "enum": [ "cascade", "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" } }, "required": [ @@ -65763,7 +64898,6 @@ "x-appwrite": { "method": "createStringColumn", "group": "columns", - "weight": 817, "cookies": false, "type": "", "demo": "tablesdb\/create-string-column.md", @@ -65845,14 +64979,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -65891,7 +65025,6 @@ "x-appwrite": { "method": "updateStringColumn", "group": "columns", - "weight": 818, "cookies": false, "type": "", "demo": "tablesdb\/update-string-column.md", @@ -66015,7 +65148,6 @@ "x-appwrite": { "method": "createTextColumn", "group": "columns", - "weight": 823, "cookies": false, "type": "", "demo": "tablesdb\/create-text-column.md", @@ -66087,14 +65219,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -66132,7 +65264,6 @@ "x-appwrite": { "method": "updateTextColumn", "group": "columns", - "weight": 824, "cookies": false, "type": "", "demo": "tablesdb\/update-text-column.md", @@ -66245,7 +65376,6 @@ "x-appwrite": { "method": "createUrlColumn", "group": "columns", - "weight": 819, "cookies": false, "type": "", "demo": "tablesdb\/create-url-column.md", @@ -66318,8 +65448,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -66357,7 +65487,6 @@ "x-appwrite": { "method": "updateUrlColumn", "group": "columns", - "weight": 820, "cookies": false, "type": "", "demo": "tablesdb\/update-url-column.md", @@ -66471,7 +65600,6 @@ "x-appwrite": { "method": "createVarcharColumn", "group": "columns", - "weight": 821, "cookies": false, "type": "", "demo": "tablesdb\/create-varchar-column.md", @@ -66549,14 +65677,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -66595,7 +65723,6 @@ "x-appwrite": { "method": "updateVarcharColumn", "group": "columns", - "weight": 822, "cookies": false, "type": "", "demo": "tablesdb\/update-varchar-column.md", @@ -66795,7 +65922,6 @@ "x-appwrite": { "method": "getColumn", "group": "columns", - "weight": 790, "cookies": false, "type": "", "demo": "tablesdb\/get-column.md", @@ -66871,7 +65997,6 @@ "x-appwrite": { "method": "deleteColumn", "group": "columns", - "weight": 791, "cookies": false, "type": "", "demo": "tablesdb\/delete-column.md", @@ -66954,7 +66079,6 @@ "x-appwrite": { "method": "updateRelationshipColumn", "group": "columns", - "weight": 816, "cookies": false, "type": "", "demo": "tablesdb\/update-relationship-column.md", @@ -67024,7 +66148,6 @@ "setNull" ], "x-enum-name": "RelationMutate", - "x-enum-keys": [], "x-nullable": true }, "newKey": { @@ -67063,7 +66186,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 832, "cookies": false, "type": "", "demo": "tablesdb\/list-indexes.md", @@ -67157,7 +66279,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 829, "cookies": false, "type": "", "demo": "tablesdb\/create-index.md", @@ -67224,8 +66345,7 @@ "unique", "spatial" ], - "x-enum-name": "TablesDBIndexType", - "x-enum-keys": [] + "x-enum-name": "TablesDBIndexType" }, "columns": { "type": "array", @@ -67238,23 +66358,22 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "integer" } @@ -67294,7 +66413,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 830, "cookies": false, "type": "", "demo": "tablesdb\/get-index.md", @@ -67369,7 +66487,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 831, "cookies": false, "type": "", "demo": "tablesdb\/delete-index.md", @@ -67449,7 +66566,6 @@ "x-appwrite": { "method": "listTableLogs", "group": "tables", - "weight": 788, "cookies": false, "type": "", "demo": "tablesdb\/list-table-logs.md", @@ -67531,7 +66647,6 @@ "x-appwrite": { "method": "listRows", "group": "rows", - "weight": 919, "cookies": false, "type": "", "demo": "tablesdb\/list-rows.md", @@ -67645,7 +66760,6 @@ "x-appwrite": { "method": "createRow", "group": "rows", - "weight": 833, "cookies": false, "type": "", "demo": "tablesdb\/create-row.md", @@ -67763,14 +66877,14 @@ "rowId": { "type": "string", "description": "Row ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<ROW_ID>", - "default": "" + "default": "", + "x-example": "<ROW_ID>" }, "data": { "type": "object", "description": "Row data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -67784,8 +66898,8 @@ "rows": { "type": "array", "description": "Array of rows data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -67826,7 +66940,6 @@ "x-appwrite": { "method": "upsertRows", "group": "rows", - "weight": 838, "cookies": false, "type": "", "demo": "tablesdb\/upsert-rows.md", @@ -67954,7 +67067,6 @@ "x-appwrite": { "method": "updateRows", "group": "rows", - "weight": 836, "cookies": false, "type": "", "demo": "tablesdb\/update-rows.md", @@ -68008,14 +67120,14 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only column and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -68056,7 +67168,6 @@ "x-appwrite": { "method": "deleteRows", "group": "rows", - "weight": 840, "cookies": false, "type": "", "demo": "tablesdb\/delete-rows.md", @@ -68110,8 +67221,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -68152,7 +67263,6 @@ "x-appwrite": { "method": "getRow", "group": "rows", - "weight": 834, "cookies": false, "type": "", "demo": "tablesdb\/get-row.md", @@ -68255,7 +67365,6 @@ "x-appwrite": { "method": "upsertRow", "group": "rows", - "weight": 837, "cookies": false, "type": "", "demo": "tablesdb\/upsert-row.md", @@ -68352,8 +67461,8 @@ "data": { "type": "object", "description": "Row data as JSON object. Include all required columns of the row to be created or updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -68400,7 +67509,6 @@ "x-appwrite": { "method": "updateRow", "group": "rows", - "weight": 835, "cookies": false, "type": "", "demo": "tablesdb\/update-row.md", @@ -68465,8 +67573,8 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only columns and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -68508,7 +67616,6 @@ "x-appwrite": { "method": "deleteRow", "group": "rows", - "weight": 839, "cookies": false, "type": "", "demo": "tablesdb\/delete-row.md", @@ -68606,7 +67713,6 @@ "x-appwrite": { "method": "listRowLogs", "group": "logs", - "weight": 842, "cookies": false, "type": "", "demo": "tablesdb\/list-row-logs.md", @@ -68698,7 +67804,6 @@ "x-appwrite": { "method": "decrementRowColumn", "group": "rows", - "weight": 844, "cookies": false, "type": "", "demo": "tablesdb\/decrement-row-column.md", @@ -68770,8 +67875,8 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -68819,7 +67924,6 @@ "x-appwrite": { "method": "incrementRowColumn", "group": "rows", - "weight": 843, "cookies": false, "type": "", "demo": "tablesdb\/increment-row-column.md", @@ -68891,8 +67995,8 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -68938,7 +68042,6 @@ "x-appwrite": { "method": "getTableUsage", "group": null, - "weight": 789, "cookies": false, "type": "", "demo": "tablesdb\/get-table-usage.md", @@ -69028,7 +68131,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 781, "cookies": false, "type": "", "demo": "tablesdb\/get-usage.md", @@ -69136,7 +68238,6 @@ "x-appwrite": { "method": "list", "group": "teams", - "weight": 531, "cookies": false, "type": "", "demo": "teams\/list.md", @@ -69222,7 +68323,6 @@ "x-appwrite": { "method": "create", "group": "teams", - "weight": 529, "cookies": false, "type": "", "demo": "teams\/create.md", @@ -69270,10 +68370,10 @@ "roles": { "type": "array", "description": "Array of strings. Use this param to set the roles in the team for the user who created it. The default role is **owner**. A role can be any string. Learn more about [roles and permissions](https:\/\/appwrite.io\/docs\/permissions). Maximum of 100 roles are allowed, each 32 characters long.", - "x-example": null, "default": [ "owner" ], + "x-example": null, "items": { "type": "string" } @@ -69312,7 +68412,6 @@ "x-appwrite": { "method": "get", "group": "teams", - "weight": 530, "cookies": false, "type": "", "demo": "teams\/get.md", @@ -69376,7 +68475,6 @@ "x-appwrite": { "method": "updateName", "group": "teams", - "weight": 533, "cookies": false, "type": "", "demo": "teams\/update-name.md", @@ -69452,7 +68550,6 @@ "x-appwrite": { "method": "delete", "group": "teams", - "weight": 532, "cookies": false, "type": "", "demo": "teams\/delete.md", @@ -69516,7 +68613,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 542, "cookies": false, "type": "", "demo": "teams\/list-logs.md", @@ -69596,7 +68692,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 538, "cookies": false, "type": "", "demo": "teams\/list-memberships.md", @@ -69690,7 +68785,6 @@ "x-appwrite": { "method": "createMembership", "group": "memberships", - "weight": 536, "cookies": false, "type": "", "demo": "teams\/create-membership.md", @@ -69736,21 +68830,21 @@ "email": { "type": "string", "description": "Email of the new team member.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "userId": { "type": "string", "description": "ID of the user to be added to a team.", - "x-example": "<USER_ID>", - "default": "" + "default": "", + "x-example": "<USER_ID>" }, "phone": { "type": "string", "description": "Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "roles": { @@ -69764,15 +68858,15 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the invitation email. This parameter is not required when an API key is supplied. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "x-example": "https:\/\/example.com", "default": "", + "x-example": "https:\/\/example.com", "format": "url" }, "name": { "type": "string", "description": "Name of the new team member. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -69807,7 +68901,6 @@ "x-appwrite": { "method": "getMembership", "group": "memberships", - "weight": 537, "cookies": false, "type": "", "demo": "teams\/get-membership.md", @@ -69879,7 +68972,6 @@ "x-appwrite": { "method": "updateMembership", "group": "memberships", - "weight": 539, "cookies": false, "type": "", "demo": "teams\/update-membership.md", @@ -69966,7 +69058,6 @@ "x-appwrite": { "method": "deleteMembership", "group": "memberships", - "weight": 1261, "cookies": false, "type": "", "demo": "teams\/delete-membership.md", @@ -70040,7 +69131,6 @@ "x-appwrite": { "method": "updateMembershipStatus", "group": "memberships", - "weight": 541, "cookies": false, "type": "", "demo": "teams\/update-membership-status.md", @@ -70134,7 +69224,6 @@ "x-appwrite": { "method": "getPrefs", "group": "teams", - "weight": 534, "cookies": false, "type": "", "demo": "teams\/get-prefs.md", @@ -70197,7 +69286,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "teams", - "weight": 535, "cookies": false, "type": "", "demo": "teams\/update-prefs.md", @@ -70242,8 +69330,8 @@ "prefs": { "type": "object", "description": "Prefs key-value JSON object.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -70278,7 +69366,6 @@ "x-appwrite": { "method": "list", "group": "files", - "weight": 545, "cookies": false, "type": "", "demo": "tokens\/list.md", @@ -70367,7 +69454,6 @@ "x-appwrite": { "method": "createFileToken", "group": "files", - "weight": 543, "cookies": false, "type": "", "demo": "tokens\/create-file-token.md", @@ -70451,7 +69537,6 @@ "x-appwrite": { "method": "get", "group": "tokens", - "weight": 544, "cookies": false, "type": "", "demo": "tokens\/get.md", @@ -70511,7 +69596,6 @@ "x-appwrite": { "method": "update", "group": "tokens", - "weight": 546, "cookies": false, "type": "", "demo": "tokens\/update.md", @@ -70582,7 +69666,6 @@ "x-appwrite": { "method": "delete", "group": "tokens", - "weight": 547, "cookies": false, "type": "", "demo": "tokens\/delete.md", @@ -70642,7 +69725,6 @@ "x-appwrite": { "method": "listEvents", "group": "events", - "weight": 1273, "cookies": false, "type": "", "demo": "usage\/list-events.md", @@ -70715,7 +69797,6 @@ "x-appwrite": { "method": "listGauges", "group": "gauges", - "weight": 1274, "cookies": false, "type": "", "demo": "usage\/list-gauges.md", @@ -70788,7 +69869,6 @@ "x-appwrite": { "method": "list", "group": "users", - "weight": 70, "cookies": false, "type": "", "demo": "users\/list.md", @@ -70871,7 +69951,6 @@ "x-appwrite": { "method": "create", "group": "users", - "weight": 61, "cookies": false, "type": "", "demo": "users\/create.md", @@ -70925,14 +70004,14 @@ "password": { "type": "string", "description": "Plain text user password. Must be at least 8 chars.", - "x-example": null, - "default": "" + "default": "", + "x-example": null }, "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -70969,7 +70048,6 @@ "x-appwrite": { "method": "createArgon2User", "group": "users", - "weight": 64, "cookies": false, "type": "", "demo": "users\/create-argon-2-user.md", @@ -71021,8 +70099,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -71061,7 +70139,6 @@ "x-appwrite": { "method": "createBcryptUser", "group": "users", - "weight": 62, "cookies": false, "type": "", "demo": "users\/create-bcrypt-user.md", @@ -71113,8 +70190,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -71151,7 +70228,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 78, "cookies": false, "type": "", "demo": "users\/list-identities.md", @@ -71231,7 +70307,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 102, "cookies": false, "type": "", "demo": "users\/delete-identity.md", @@ -71294,7 +70369,6 @@ "x-appwrite": { "method": "createMD5User", "group": "users", - "weight": 63, "cookies": false, "type": "", "demo": "users\/create-md-5-user.md", @@ -71346,8 +70420,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -71386,7 +70460,6 @@ "x-appwrite": { "method": "createPHPassUser", "group": "users", - "weight": 66, "cookies": false, "type": "", "demo": "users\/create-ph-pass-user.md", @@ -71438,8 +70511,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -71478,7 +70551,6 @@ "x-appwrite": { "method": "createScryptUser", "group": "users", - "weight": 67, "cookies": false, "type": "", "demo": "users\/create-scrypt-user.md", @@ -71559,8 +70631,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -71604,7 +70676,6 @@ "x-appwrite": { "method": "createScryptModifiedUser", "group": "users", - "weight": 68, "cookies": false, "type": "", "demo": "users\/create-scrypt-modified-user.md", @@ -71671,8 +70742,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -71714,7 +70785,6 @@ "x-appwrite": { "method": "createSHAUser", "group": "users", - "weight": 65, "cookies": false, "type": "", "demo": "users\/create-sha-user.md", @@ -71780,14 +70850,13 @@ "sha3-384", "sha3-512" ], - "x-enum-name": "PasswordHash", - "x-enum-keys": [] + "x-enum-name": "PasswordHash" }, "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -71824,7 +70893,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 104, "cookies": false, "type": "", "demo": "users\/get-usage.md", @@ -71860,11 +70928,6 @@ "90d" ], "x-enum-name": "UsageRange", - "x-enum-keys": [ - "Twenty Four Hours", - "Thirty Days", - "Ninety Days" - ], "default": "30d", "in": "query" } @@ -71895,7 +70958,6 @@ "x-appwrite": { "method": "get", "group": "users", - "weight": 71, "cookies": false, "type": "", "demo": "users\/get.md", @@ -71951,7 +71013,6 @@ "x-appwrite": { "method": "delete", "group": "users", - "weight": 100, "cookies": false, "type": "", "demo": "users\/delete.md", @@ -72014,7 +71075,6 @@ "x-appwrite": { "method": "updateEmail", "group": "users", - "weight": 85, "cookies": false, "type": "", "demo": "users\/update-email.md", @@ -72095,7 +71155,6 @@ "x-appwrite": { "method": "updateImpersonator", "group": "users", - "weight": 81, "cookies": false, "type": "", "demo": "users\/update-impersonator.md", @@ -72175,7 +71234,6 @@ "x-appwrite": { "method": "createJWT", "group": "sessions", - "weight": 103, "cookies": false, "type": "", "demo": "users\/create-jwt.md", @@ -72218,14 +71276,14 @@ "sessionId": { "type": "string", "description": "Session ID. Use the string 'recent' to use the most recent session. Defaults to the most recent session.", - "x-example": "<SESSION_ID>", - "default": "" + "default": "", + "x-example": "<SESSION_ID>" }, "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", - "x-example": 0, "default": 900, + "x-example": 0, "format": "int32" } } @@ -72260,7 +71318,6 @@ "x-appwrite": { "method": "updateLabels", "group": "users", - "weight": 80, "cookies": false, "type": "", "demo": "users\/update-labels.md", @@ -72341,7 +71398,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 76, "cookies": false, "type": "", "demo": "users\/list-logs.md", @@ -72423,7 +71479,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 75, "cookies": false, "type": "", "demo": "users\/list-memberships.md", @@ -72516,7 +71571,6 @@ "x-appwrite": { "method": "updateMfa", "group": "users", - "weight": 90, "cookies": false, "type": "", "demo": "users\/update-mfa.md", @@ -72651,7 +71705,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 95, "cookies": false, "type": "", "demo": "users\/delete-mfa-authenticator.md", @@ -72753,7 +71806,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" } ] @@ -72783,7 +71835,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 91, "cookies": false, "type": "", "demo": "users\/list-mfa-factors.md", @@ -72900,7 +71951,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 92, "cookies": false, "type": "", "demo": "users\/get-mfa-recovery-codes.md", @@ -73017,7 +72067,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 94, "cookies": false, "type": "", "demo": "users\/update-mfa-recovery-codes.md", @@ -73134,7 +72183,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 93, "cookies": false, "type": "", "demo": "users\/create-mfa-recovery-codes.md", @@ -73253,7 +72301,6 @@ "x-appwrite": { "method": "updateName", "group": "users", - "weight": 83, "cookies": false, "type": "", "demo": "users\/update-name.md", @@ -73333,7 +72380,6 @@ "x-appwrite": { "method": "updatePassword", "group": "users", - "weight": 84, "cookies": false, "type": "", "demo": "users\/update-password.md", @@ -73413,7 +72459,6 @@ "x-appwrite": { "method": "updatePhone", "group": "users", - "weight": 86, "cookies": false, "type": "", "demo": "users\/update-phone.md", @@ -73492,7 +72537,6 @@ "x-appwrite": { "method": "getPrefs", "group": "users", - "weight": 72, "cookies": false, "type": "", "demo": "users\/get-prefs.md", @@ -73553,7 +72597,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "users", - "weight": 88, "cookies": false, "type": "", "demo": "users\/update-prefs.md", @@ -73596,8 +72639,8 @@ "prefs": { "type": "object", "description": "Prefs key-value JSON object.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -73632,7 +72675,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 74, "cookies": false, "type": "", "demo": "users\/list-sessions.md", @@ -73705,7 +72747,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 96, "cookies": false, "type": "", "demo": "users\/create-session.md", @@ -73764,7 +72805,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 99, "cookies": false, "type": "", "demo": "users\/delete-sessions.md", @@ -73825,7 +72865,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 98, "cookies": false, "type": "", "demo": "users\/delete-session.md", @@ -73899,7 +72938,6 @@ "x-appwrite": { "method": "updateStatus", "group": "users", - "weight": 79, "cookies": false, "type": "", "demo": "users\/update-status.md", @@ -73977,7 +73015,6 @@ "x-appwrite": { "method": "listTargets", "group": "targets", - "weight": 77, "cookies": false, "type": "", "demo": "users\/list-targets.md", @@ -74059,7 +73096,6 @@ "x-appwrite": { "method": "createTarget", "group": "targets", - "weight": 69, "cookies": false, "type": "", "demo": "users\/create-target.md", @@ -74113,8 +73149,7 @@ "sms", "push" ], - "x-enum-name": "MessagingProviderType", - "x-enum-keys": [] + "x-enum-name": "MessagingProviderType" }, "identifier": { "type": "string", @@ -74124,14 +73159,14 @@ "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", - "x-example": "<PROVIDER_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ID>" }, "name": { "type": "string", "description": "Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -74168,7 +73203,6 @@ "x-appwrite": { "method": "getTarget", "group": "targets", - "weight": 73, "cookies": false, "type": "", "demo": "users\/get-target.md", @@ -74237,7 +73271,6 @@ "x-appwrite": { "method": "updateTarget", "group": "targets", - "weight": 89, "cookies": false, "type": "", "demo": "users\/update-target.md", @@ -74288,20 +73321,20 @@ "identifier": { "type": "string", "description": "The target identifier (token, email, phone etc.)", - "x-example": "<IDENTIFIER>", - "default": "" + "default": "", + "x-example": "<IDENTIFIER>" }, "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", - "x-example": "<PROVIDER_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ID>" }, "name": { "type": "string", "description": "Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } } } @@ -74328,7 +73361,6 @@ "x-appwrite": { "method": "deleteTarget", "group": "targets", - "weight": 101, "cookies": false, "type": "", "demo": "users\/delete-target.md", @@ -74399,7 +73431,6 @@ "x-appwrite": { "method": "createToken", "group": "sessions", - "weight": 97, "cookies": false, "type": "", "demo": "users\/create-token.md", @@ -74442,15 +73473,15 @@ "length": { "type": "integer", "description": "Token length in characters. The default length is 6 characters", - "x-example": 4, "default": 6, + "x-example": 4, "format": "int32" }, "expire": { "type": "integer", "description": "Token expiration period in seconds. The default expiration is 15 minutes.", - "x-example": 60, "default": 900, + "x-example": 60, "format": "int32" } } @@ -74485,7 +73516,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "users", - "weight": 87, "cookies": false, "type": "", "demo": "users\/update-email-verification.md", @@ -74565,7 +73595,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "users", - "weight": 82, "cookies": false, "type": "", "demo": "users\/update-phone-verification.md", @@ -74659,7 +73688,6 @@ "x-appwrite": { "method": "createRepositoryDetection", "group": "repositories", - "weight": 575, "cookies": false, "type": "", "demo": "vcs\/create-repository-detection.md", @@ -74710,14 +73738,13 @@ "runtime", "framework" ], - "x-enum-name": "VCSDetectionType", - "x-enum-keys": [] + "x-enum-name": "VCSDetectionType" }, "providerRootDirectory": { "type": "string", "description": "Path to Root Directory", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" } }, "required": [ @@ -74767,7 +73794,6 @@ "x-appwrite": { "method": "listRepositories", "group": "repositories", - "weight": 572, "cookies": false, "type": "", "demo": "vcs\/list-repositories.md", @@ -74810,7 +73836,6 @@ "framework" ], "x-enum-name": "VCSDetectionType", - "x-enum-keys": [], "in": "query" }, { @@ -74861,7 +73886,6 @@ "x-appwrite": { "method": "createRepository", "group": "repositories", - "weight": 570, "cookies": false, "type": "", "demo": "vcs\/create-repository.md", @@ -74943,7 +73967,6 @@ "x-appwrite": { "method": "getRepository", "group": "repositories", - "weight": 571, "cookies": false, "type": "", "demo": "vcs\/get-repository.md", @@ -75010,7 +74033,6 @@ "x-appwrite": { "method": "listRepositoryBranches", "group": "repositories", - "weight": 573, "cookies": false, "type": "", "demo": "vcs\/list-repository-branches.md", @@ -75098,7 +74120,6 @@ "x-appwrite": { "method": "getRepositoryContents", "group": "repositories", - "weight": 574, "cookies": false, "type": "", "demo": "vcs\/get-repository-contents.md", @@ -75182,7 +74203,6 @@ "x-appwrite": { "method": "updateExternalDeployments", "group": "repositories", - "weight": 1271, "cookies": false, "type": "", "demo": "vcs\/update-external-deployments.md", @@ -75266,7 +74286,6 @@ "x-appwrite": { "method": "listInstallations", "group": "installations", - "weight": 568, "cookies": false, "type": "", "demo": "vcs\/list-installations.md", @@ -75347,7 +74366,6 @@ "x-appwrite": { "method": "getInstallation", "group": "installations", - "weight": 567, "cookies": false, "type": "", "demo": "vcs\/get-installation.md", @@ -75401,7 +74419,6 @@ "x-appwrite": { "method": "deleteInstallation", "group": "installations", - "weight": 569, "cookies": false, "type": "", "demo": "vcs\/delete-installation.md", @@ -75460,7 +74477,6 @@ "x-appwrite": { "method": "list", "group": "vectorsdb", - "weight": 924, "cookies": false, "type": "", "demo": "vectorsdb\/list.md", @@ -75534,7 +74550,6 @@ "x-appwrite": { "method": "create", "group": "vectorsdb", - "weight": 925, "cookies": false, "type": "", "demo": "vectorsdb\/create.md", @@ -75579,8 +74594,8 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -75618,7 +74633,6 @@ "x-appwrite": { "method": "createTextEmbeddings", "group": "documents", - "weight": 911, "cookies": false, "type": "", "demo": "vectorsdb\/create-text-embeddings.md", @@ -75688,13 +74702,12 @@ "model": { "type": "string", "description": "The embedding model to use for generating vector embeddings.", - "x-example": "embeddinggemma", "default": "embeddinggemma", + "x-example": "embeddinggemma", "enum": [ "embeddinggemma" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "EmbeddingModel" } }, "required": [ @@ -75729,7 +74742,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 916, "cookies": false, "type": "", "demo": "vectorsdb\/list-transactions.md", @@ -75797,7 +74809,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 912, "cookies": false, "type": "", "demo": "vectorsdb\/create-transaction.md", @@ -75835,8 +74846,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -75869,7 +74880,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 913, "cookies": false, "type": "", "demo": "vectorsdb\/get-transaction.md", @@ -75933,7 +74943,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 914, "cookies": false, "type": "", "demo": "vectorsdb\/update-transaction.md", @@ -75979,14 +74988,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -76013,7 +75022,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 915, "cookies": false, "type": "", "demo": "vectorsdb\/delete-transaction.md", @@ -76079,7 +75087,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 917, "cookies": false, "type": "", "demo": "vectorsdb\/create-operations.md", @@ -76125,8 +75132,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -76161,7 +75168,6 @@ "x-appwrite": { "method": "listUsage", "group": null, - "weight": 891, "cookies": false, "type": "", "demo": "vectorsdb\/list-usage.md", @@ -76255,7 +75261,6 @@ "x-appwrite": { "method": "get", "group": "vectorsdb", - "weight": 886, "cookies": false, "type": "", "demo": "vectorsdb\/get.md", @@ -76316,7 +75321,6 @@ "x-appwrite": { "method": "update", "group": "vectorsdb", - "weight": 887, "cookies": false, "type": "", "demo": "vectorsdb\/update.md", @@ -76364,8 +75368,8 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -76395,7 +75399,6 @@ "x-appwrite": { "method": "delete", "group": "vectorsdb", - "weight": 926, "cookies": false, "type": "", "demo": "vectorsdb\/delete.md", @@ -76456,7 +75459,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 896, "cookies": false, "type": "", "demo": "vectorsdb\/list-collections.md", @@ -76547,7 +75549,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 892, "cookies": false, "type": "", "demo": "vectorsdb\/create-collection.md", @@ -76614,14 +75615,14 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -76658,7 +75659,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 893, "cookies": false, "type": "", "demo": "vectorsdb\/get-collection.md", @@ -76727,7 +75727,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 894, "cookies": false, "type": "", "demo": "vectorsdb\/update-collection.md", @@ -76797,14 +75796,14 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -76834,7 +75833,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 895, "cookies": false, "type": "", "demo": "vectorsdb\/delete-collection.md", @@ -76903,7 +75901,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 906, "cookies": false, "type": "", "demo": "vectorsdb\/list-documents.md", @@ -77014,7 +76011,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 902, "cookies": false, "type": "", "demo": "vectorsdb\/create-document.md", @@ -77127,14 +76123,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }", - "default": [] + "default": [], + "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }" }, "permissions": { "type": "array", @@ -77147,8 +76143,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -77188,7 +76184,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 909, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-documents.md", @@ -77312,7 +76307,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 908, "cookies": false, "type": "", "demo": "vectorsdb\/update-documents.md", @@ -77363,14 +76357,14 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -77410,7 +76404,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 910, "cookies": false, "type": "", "demo": "vectorsdb\/delete-documents.md", @@ -77461,8 +76454,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -77502,7 +76495,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 905, "cookies": false, "type": "", "demo": "vectorsdb\/get-document.md", @@ -77602,7 +76594,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 904, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-document.md", @@ -77696,8 +76687,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -77742,7 +76733,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 903, "cookies": false, "type": "", "demo": "vectorsdb\/update-document.md", @@ -77804,8 +76794,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -77845,7 +76835,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 907, "cookies": false, "type": "", "demo": "vectorsdb\/delete-document.md", @@ -77939,7 +76928,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 901, "cookies": false, "type": "", "demo": "vectorsdb\/list-indexes.md", @@ -78029,7 +77017,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 898, "cookies": false, "type": "", "demo": "vectorsdb\/create-index.md", @@ -78094,8 +77081,7 @@ "key", "unique" ], - "x-enum-name": "VectorsDBIndexType", - "x-enum-keys": [] + "x-enum-name": "VectorsDBIndexType" }, "attributes": { "type": "array", @@ -78108,23 +77094,22 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "integer" } @@ -78164,7 +77149,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 899, "cookies": false, "type": "", "demo": "vectorsdb\/get-index.md", @@ -78235,7 +77219,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 900, "cookies": false, "type": "", "demo": "vectorsdb\/delete-index.md", @@ -78311,7 +77294,6 @@ "x-appwrite": { "method": "getCollectionUsage", "group": null, - "weight": 897, "cookies": false, "type": "", "demo": "vectorsdb\/get-collection-usage.md", @@ -78398,7 +77380,6 @@ "x-appwrite": { "method": "getUsage", "group": null, - "weight": 890, "cookies": false, "type": "", "demo": "vectorsdb\/get-usage.md", @@ -78503,7 +77484,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 578, "cookies": false, "type": "", "demo": "webhooks\/list.md", @@ -78576,7 +77556,6 @@ "x-appwrite": { "method": "create", "group": null, - "weight": 577, "cookies": false, "type": "", "demo": "webhooks\/create.md", @@ -78633,26 +77612,26 @@ "enabled": { "type": "boolean", "description": "Enable or disable a webhook.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "tls": { "type": "boolean", "description": "Certificate verification, false for disabled or true for enabled.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "authUsername": { "type": "string", "description": "Webhook HTTP user. Max length: 256 chars.", - "x-example": "<AUTH_USERNAME>", - "default": "" + "default": "", + "x-example": "<AUTH_USERNAME>" }, "authPassword": { "type": "string", "description": "Webhook HTTP password. Max length: 256 chars.", - "x-example": "<AUTH_PASSWORD>", - "default": "" + "default": "", + "x-example": "<AUTH_PASSWORD>" }, "secret": { "type": "string", @@ -78696,7 +77675,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 579, "cookies": false, "type": "", "demo": "webhooks\/get.md", @@ -78756,7 +77734,6 @@ "x-appwrite": { "method": "update", "group": null, - "weight": 581, "cookies": false, "type": "", "demo": "webhooks\/update.md", @@ -78816,26 +77793,26 @@ "enabled": { "type": "boolean", "description": "Enable or disable a webhook.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "tls": { "type": "boolean", "description": "Certificate verification, false for disabled or true for enabled.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "authUsername": { "type": "string", "description": "Webhook HTTP user. Max length: 256 chars.", - "x-example": "<AUTH_USERNAME>", - "default": "" + "default": "", + "x-example": "<AUTH_USERNAME>" }, "authPassword": { "type": "string", "description": "Webhook HTTP password. Max length: 256 chars.", - "x-example": "<AUTH_PASSWORD>", - "default": "" + "default": "", + "x-example": "<AUTH_PASSWORD>" } }, "required": [ @@ -78867,7 +77844,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 580, "cookies": false, "type": "", "demo": "webhooks\/delete.md", @@ -78929,7 +77905,6 @@ "x-appwrite": { "method": "updateSecret", "group": null, - "weight": 582, "cookies": false, "type": "", "demo": "webhooks\/update-secret.md", @@ -87917,6 +86892,28 @@ "description": "Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests", "x-example": false }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all branches.", + "items": { + "type": "string" + }, + "x-example": [ + "main", + "feat\/*" + ] + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all file changes.", + "items": { + "type": "string" + }, + "x-example": [ + "src\/**", + "!docs\/**" + ] + }, "buildSpecification": { "type": "string", "description": "Machine specification for deployment builds.", @@ -87971,6 +86968,8 @@ "providerBranch", "providerRootDirectory", "providerSilentMode", + "providerBranches", + "providerPaths", "buildSpecification", "runtimeSpecification", "buildRuntime", @@ -88005,6 +87004,14 @@ "providerBranch": "main", "providerRootDirectory": "sites\/helloWorld", "providerSilentMode": false, + "providerBranches": [ + "main", + "feat\/*" + ], + "providerPaths": [ + "src\/**", + "!docs\/**" + ], "buildSpecification": "s-1vcpu-512mb", "runtimeSpecification": "s-1vcpu-512mb", "buildRuntime": "node-22", @@ -88356,6 +87363,28 @@ "description": "Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests", "x-example": false }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all branches.", + "items": { + "type": "string" + }, + "x-example": [ + "main", + "feat\/*" + ] + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all file changes.", + "items": { + "type": "string" + }, + "x-example": [ + "src\/**", + "!docs\/**" + ] + }, "buildSpecification": { "type": "string", "description": "Machine specification for deployment builds.", @@ -88396,6 +87425,8 @@ "providerBranch", "providerRootDirectory", "providerSilentMode", + "providerBranches", + "providerPaths", "buildSpecification", "runtimeSpecification" ], @@ -88428,6 +87459,14 @@ "providerBranch": "main", "providerRootDirectory": "functions\/helloWorld", "providerSilentMode": false, + "providerBranches": [ + "main", + "feat\/*" + ], + "providerPaths": [ + "src\/**", + "!docs\/**" + ], "buildSpecification": "s-1vcpu-512mb", "runtimeSpecification": "s-1vcpu-512mb" } @@ -97750,24 +96789,24 @@ "description": "Event ID.", "x-example": "5e5ea5c16897e" }, - "userType": { + "actorType": { "type": "string", - "description": "User type.", + "description": "Actor type.", "x-example": "user" }, - "userId": { + "actorId": { "type": "string", - "description": "User ID.", + "description": "Actor ID.", "x-example": "610fc2f985ee0" }, - "userEmail": { + "actorEmail": { "type": "string", - "description": "User Email.", + "description": "Actor Email.", "x-example": "john@appwrite.io" }, - "userName": { + "actorName": { "type": "string", - "description": "User Name.", + "description": "Actor Name.", "x-example": "John Doe" }, "resourceParent": { @@ -97908,10 +96947,10 @@ }, "required": [ "$id", - "userType", - "userId", - "userEmail", - "userName", + "actorType", + "actorId", + "actorEmail", + "actorName", "resourceParent", "resourceType", "resourceId", @@ -97942,10 +96981,10 @@ ], "example": { "$id": "5e5ea5c16897e", - "userType": "user", - "userId": "610fc2f985ee0", - "userEmail": "john@appwrite.io", - "userName": "John Doe", + "actorType": "user", + "actorId": "610fc2f985ee0", + "actorEmail": "john@appwrite.io", + "actorName": "John Doe", "resourceParent": "database\/ID", "resourceType": "collection", "resourceId": "610fc2f985ee0", diff --git a/specs/1.9.x/swagger2-1.9.x-server.json b/specs/1.9.x/swagger2-1.9.x-server.json index 203ab9375..faf97ba9a 100644 --- a/specs/1.9.x/swagger2-1.9.x-server.json +++ b/specs/1.9.x/swagger2-1.9.x-server.json @@ -17,9 +17,6 @@ }, "host": "cloud.appwrite.io", "x-host-docs": "<REGION>.cloud.appwrite.io", - "x-appwrite": { - "endpointDocs": "https:\/\/<REGION>.cloud.appwrite.io\/v1" - }, "basePath": "\/v1", "schemes": [ "https" @@ -136,7 +133,6 @@ "x-appwrite": { "method": "get", "group": "account", - "weight": 9, "cookies": false, "type": "", "demo": "account\/get.md", @@ -190,7 +186,6 @@ "x-appwrite": { "method": "create", "group": "account", - "weight": 8, "cookies": false, "type": "", "demo": "account\/create.md", @@ -244,8 +239,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -284,7 +279,6 @@ "x-appwrite": { "method": "updateEmail", "group": "account", - "weight": 34, "cookies": false, "type": "", "demo": "account\/update-email.md", @@ -365,7 +359,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 47, "cookies": false, "type": "", "demo": "account\/list-identities.md", @@ -439,7 +432,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 48, "cookies": false, "type": "", "demo": "account\/delete-identity.md", @@ -505,7 +497,6 @@ "x-appwrite": { "method": "createJWT", "group": "tokens", - "weight": 29, "cookies": false, "type": "", "demo": "account\/create-jwt.md", @@ -543,8 +534,8 @@ "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", - "x-example": 0, "default": 900, + "x-example": 0, "format": "int32" } } @@ -577,7 +568,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 31, "cookies": false, "type": "", "demo": "account\/list-logs.md", @@ -656,7 +646,6 @@ "x-appwrite": { "method": "updateMFA", "group": "mfa", - "weight": 165, "cookies": false, "type": "", "demo": "account\/update-mfa.md", @@ -731,7 +720,6 @@ "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", - "weight": 167, "cookies": false, "type": "", "demo": "account\/create-mfa-authenticator.md", @@ -828,7 +816,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" } ] @@ -858,7 +845,6 @@ "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", - "weight": 168, "cookies": false, "type": "", "demo": "account\/update-mfa-authenticator.md", @@ -959,7 +945,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" }, { @@ -1001,7 +986,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 169, "cookies": false, "type": "", "demo": "account\/delete-mfa-authenticator.md", @@ -1096,7 +1080,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" } ] @@ -1128,7 +1111,6 @@ "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", - "weight": 173, "cookies": false, "type": "", "demo": "account\/create-mfa-challenge.md", @@ -1231,8 +1213,7 @@ "totp", "recoverycode" ], - "x-enum-name": "AuthenticationFactor", - "x-enum-keys": [] + "x-enum-name": "AuthenticationFactor" } }, "required": [ @@ -1267,7 +1248,6 @@ "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", - "weight": 174, "cookies": false, "type": "", "demo": "account\/update-mfa-challenge.md", @@ -1408,7 +1388,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 166, "cookies": false, "type": "", "demo": "account\/list-mfa-factors.md", @@ -1512,7 +1491,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 172, "cookies": false, "type": "", "demo": "account\/get-mfa-recovery-codes.md", @@ -1616,7 +1594,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 170, "cookies": false, "type": "", "demo": "account\/create-mfa-recovery-codes.md", @@ -1720,7 +1697,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 171, "cookies": false, "type": "", "demo": "account\/update-mfa-recovery-codes.md", @@ -1826,7 +1802,6 @@ "x-appwrite": { "method": "updateName", "group": "account", - "weight": 32, "cookies": false, "type": "", "demo": "account\/update-name.md", @@ -1901,7 +1876,6 @@ "x-appwrite": { "method": "updatePassword", "group": "account", - "weight": 33, "cookies": false, "type": "", "demo": "account\/update-password.md", @@ -1944,8 +1918,8 @@ "oldPassword": { "type": "string", "description": "Current user password. Must be at least 8 chars.", - "x-example": "password", "default": "", + "x-example": "password", "format": "password" } }, @@ -1983,7 +1957,6 @@ "x-appwrite": { "method": "updatePhone", "group": "account", - "weight": 35, "cookies": false, "type": "", "demo": "account\/update-phone.md", @@ -2064,7 +2037,6 @@ "x-appwrite": { "method": "getPrefs", "group": "account", - "weight": 30, "cookies": false, "type": "", "demo": "account\/get-prefs.md", @@ -2118,7 +2090,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "account", - "weight": 36, "cookies": false, "type": "", "demo": "account\/update-prefs.md", @@ -2156,8 +2127,8 @@ "prefs": { "type": "object", "description": "Prefs key-value JSON object.", - "x-example": "{\"language\":\"en\",\"timezone\":\"UTC\",\"darkTheme\":true}", - "default": {} + "default": {}, + "x-example": "{\"language\":\"en\",\"timezone\":\"UTC\",\"darkTheme\":true}" } }, "required": [ @@ -2194,7 +2165,6 @@ "x-appwrite": { "method": "createRecovery", "group": "recovery", - "weight": 38, "cookies": false, "type": "", "demo": "account\/create-recovery.md", @@ -2278,7 +2248,6 @@ "x-appwrite": { "method": "updateRecovery", "group": "recovery", - "weight": 39, "cookies": false, "type": "", "demo": "account\/update-recovery.md", @@ -2363,7 +2332,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 11, "cookies": false, "type": "", "demo": "account\/list-sessions.md", @@ -2412,7 +2380,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 12, "cookies": false, "type": "", "demo": "account\/delete-sessions.md", @@ -2468,7 +2435,6 @@ "x-appwrite": { "method": "createAnonymousSession", "group": "sessions", - "weight": 17, "cookies": false, "type": "", "demo": "account\/create-anonymous-session.md", @@ -2524,7 +2490,6 @@ "x-appwrite": { "method": "createEmailPasswordSession", "group": "sessions", - "weight": 16, "cookies": false, "type": "", "demo": "account\/create-email-password-session.md", @@ -2607,7 +2572,6 @@ "x-appwrite": { "method": "updateMagicURLSession", "group": "sessions", - "weight": 26, "cookies": false, "type": "", "demo": "account\/update-magic-url-session.md", @@ -2666,146 +2630,6 @@ ] } }, - "\/account\/sessions\/oauth2\/{provider}": { - "get": { - "summary": "Create OAuth2 session", - "operationId": "accountCreateOAuth2Session", - "consumes": [], - "produces": [ - "text\/html" - ], - "tags": [ - "account" - ], - "description": "Allow the user to login to their account using the OAuth2 provider of their choice. Each OAuth2 provider should be enabled from the Appwrite console first. Use the success and failure arguments to provide a redirect URL's back to your app when login is completed.\n\nIf there is already an active session, the new session will be attached to the logged-in account. If there are no active sessions, the server will attempt to look for a user with the same email address as the email received from the OAuth2 provider and attach the new session to the existing user. If no matching user is found - the server will create a new user.\n\nA user is limited to 10 active sessions at a time by default. [Learn more about session limits](https:\/\/appwrite.io\/docs\/authentication-security#limits).\n", - "responses": { - "301": { - "description": "No content" - } - }, - "deprecated": false, - "x-appwrite": { - "method": "createOAuth2Session", - "group": "sessions", - "weight": 19, - "cookies": false, - "type": "webAuth", - "demo": "account\/create-o-auth-2-session.md", - "rate-limit": 50, - "rate-time": 3600, - "rate-key": "ip:{ip}", - "scope": "sessions.write", - "platforms": [ - "console", - "client", - "server" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/create-session-oauth2.md", - "auth": { - "Project": [], - "Session": [] - } - }, - "security": [ - { - "Project": [], - "Session": [], - "JWT": [] - } - ], - "parameters": [ - { - "name": "provider", - "description": "OAuth2 Provider. Currently, supported providers are: amazon, apple, auth0, authentik, autodesk, bitbucket, bitly, box, dailymotion, discord, disqus, dropbox, etsy, facebook, figma, fusionauth, github, gitlab, google, keycloak, kick, linkedin, microsoft, notion, oidc, okta, paypal, paypalSandbox, podio, salesforce, slack, spotify, stripe, tradeshift, tradeshiftBox, twitch, wordpress, x, yahoo, yammer, yandex, zoho, zoom.", - "required": true, - "type": "string", - "x-example": "amazon", - "enum": [ - "amazon", - "apple", - "auth0", - "authentik", - "autodesk", - "bitbucket", - "bitly", - "box", - "dailymotion", - "discord", - "disqus", - "dropbox", - "etsy", - "facebook", - "figma", - "fusionauth", - "github", - "gitlab", - "google", - "keycloak", - "kick", - "linkedin", - "microsoft", - "notion", - "oidc", - "okta", - "paypal", - "paypalSandbox", - "podio", - "salesforce", - "slack", - "spotify", - "stripe", - "tradeshift", - "tradeshiftBox", - "twitch", - "wordpress", - "x", - "yahoo", - "yammer", - "yandex", - "zoho", - "zoom" - ], - "x-enum-name": "OAuthProvider", - "x-enum-keys": [], - "in": "path" - }, - { - "name": "success", - "description": "URL to redirect back to your app after a successful login attempt. Only URLs from hostnames in your project's platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "required": false, - "type": "string", - "format": "url", - "x-example": "https:\/\/example.com", - "default": "", - "in": "query" - }, - { - "name": "failure", - "description": "URL to redirect back to your app after a failed login attempt. Only URLs from hostnames in your project's platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "required": false, - "type": "string", - "format": "url", - "x-example": "https:\/\/example.com", - "default": "", - "in": "query" - }, - { - "name": "scopes", - "description": "A list of custom OAuth2 scopes. Check each provider internal docs for a list of supported scopes. Maximum of 100 scopes are allowed, each 4096 characters long.", - "required": false, - "type": "array", - "collectionFormat": "multi", - "items": { - "type": "string" - }, - "default": [], - "in": "query" - } - ] - } - }, "\/account\/sessions\/phone": { "put": { "summary": "Update phone session", @@ -2832,7 +2656,6 @@ "x-appwrite": { "method": "updatePhoneSession", "group": "sessions", - "weight": 27, "cookies": false, "type": "", "demo": "account\/update-phone-session.md", @@ -2917,7 +2740,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 18, "cookies": false, "type": "", "demo": "account\/create-session.md", @@ -2996,7 +2818,6 @@ "x-appwrite": { "method": "getSession", "group": "sessions", - "weight": 13, "cookies": false, "type": "", "demo": "account\/get-session.md", @@ -3060,7 +2881,6 @@ "x-appwrite": { "method": "updateSession", "group": "sessions", - "weight": 15, "cookies": false, "type": "", "demo": "account\/update-session.md", @@ -3119,7 +2939,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 14, "cookies": false, "type": "", "demo": "account\/delete-session.md", @@ -3185,7 +3004,6 @@ "x-appwrite": { "method": "updateStatus", "group": "account", - "weight": 37, "cookies": false, "type": "", "demo": "account\/update-status.md", @@ -3215,10 +3033,10 @@ ] } }, - "\/account\/targets\/push": { + "\/account\/tokens\/email": { "post": { - "summary": "Create push target", - "operationId": "accountCreatePushTarget", + "summary": "Create email token (OTP)", + "operationId": "accountCreateEmailToken", "consumes": [ "application\/json" ], @@ -3228,27 +3046,29 @@ "tags": [ "account" ], - "description": "Use this endpoint to register a device for push notifications. Provide a target ID (custom or generated using ID.unique()), a device identifier (usually a device token), and optionally specify which provider should send notifications to this target. The target is automatically linked to the current session and includes device information like brand and model.", + "description": "Sends the user an email with a secret key for creating a session. If the email address has never been used, a **new account is created** using the provided `userId`. Otherwise, if the email address is already attached to an account, the **user ID is ignored**. Then, the user will receive an email with the one-time password. Use the returned user ID and secret and submit a request to the [POST \/v1\/account\/sessions\/token](https:\/\/appwrite.io\/docs\/references\/cloud\/client-web\/account#createSession) endpoint to complete the login process. The secret sent to the user's email is valid for 15 minutes.\n\nA user is limited to 10 active sessions at a time by default. [Learn more about session limits](https:\/\/appwrite.io\/docs\/authentication-security#limits).\n", "responses": { "201": { - "description": "Target", + "description": "Token", "schema": { - "$ref": "#\/definitions\/target" + "$ref": "#\/definitions\/token" } } }, "deprecated": false, "x-appwrite": { - "method": "createPushTarget", - "group": "pushTargets", - "weight": 44, + "method": "createEmailToken", + "group": "tokens", "cookies": false, "type": "", - "demo": "account\/create-push-target.md", - "rate-limit": 0, + "demo": "account\/create-email-token.md", + "rate-limit": 10, "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "targets.write", + "rate-key": [ + "url:{url},email:{param-email}", + "url:{url},ip:{ip}" + ], + "scope": "sessions.write", "platforms": [ "console", "client", @@ -3256,7 +3076,7 @@ ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/create-push-target.md", + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/create-token-email.md", "auth": { "Project": [], "Session": [] @@ -3276,178 +3096,37 @@ "schema": { "type": "object", "properties": { - "targetId": { + "userId": { "type": "string", - "description": "Target ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<TARGET_ID>" + "description": "User ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars. If the email address has never been used, a new account is created using the provided userId. Otherwise, if the email address is already attached to an account, the user ID is ignored.", + "x-example": "<USER_ID>" }, - "identifier": { + "email": { "type": "string", - "description": "The target identifier (token, email, phone etc.)", - "x-example": "<IDENTIFIER>" + "description": "User email.", + "x-example": "email@example.com", + "format": "email" }, - "providerId": { - "type": "string", - "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", - "x-example": "<PROVIDER_ID>", - "default": "" - } - }, - "required": [ - "targetId", - "identifier" - ] - } - } - ] - } - }, - "\/account\/targets\/{targetId}\/push": { - "put": { - "summary": "Update push target", - "operationId": "accountUpdatePushTarget", - "consumes": [ - "application\/json" - ], - "produces": [ - "application\/json" - ], - "tags": [ - "account" - ], - "description": "Update the currently logged in user's push notification target. You can modify the target's identifier (device token) and provider ID (token, email, phone etc.). The target must exist and belong to the current user. If you change the provider ID, notifications will be sent through the new messaging provider instead.", - "responses": { - "200": { - "description": "Target", - "schema": { - "$ref": "#\/definitions\/target" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "updatePushTarget", - "group": "pushTargets", - "weight": 45, - "cookies": false, - "type": "", - "demo": "account\/update-push-target.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "targets.write", - "platforms": [ - "console", - "client", - "server" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/update-push-target.md", - "auth": { - "Project": [], - "Session": [] - } - }, - "security": [ - { - "Project": [], - "Session": [], - "JWT": [] - } - ], - "parameters": [ - { - "name": "targetId", - "description": "Target ID.", - "required": true, - "type": "string", - "x-example": "<TARGET_ID>", - "in": "path" - }, - { - "name": "payload", - "in": "body", - "schema": { - "type": "object", - "properties": { - "identifier": { - "type": "string", - "description": "The target identifier (token, email, phone etc.)", - "x-example": "<IDENTIFIER>" + "phrase": { + "type": "boolean", + "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", + "default": false, + "x-example": false } }, "required": [ - "identifier" + "userId", + "email" ] } } ] - }, - "delete": { - "summary": "Delete push target", - "operationId": "accountDeletePushTarget", - "consumes": [ - "application\/json" - ], - "produces": [], - "tags": [ - "account" - ], - "description": "Delete a push notification target for the currently logged in user. After deletion, the device will no longer receive push notifications. The target must exist and belong to the current user.", - "responses": { - "204": { - "description": "No content" - } - }, - "deprecated": false, - "x-appwrite": { - "method": "deletePushTarget", - "group": "pushTargets", - "weight": 46, - "cookies": false, - "type": "", - "demo": "account\/delete-push-target.md", - "rate-limit": 0, - "rate-time": 3600, - "rate-key": "url:{url},ip:{ip}", - "scope": "targets.write", - "platforms": [ - "console", - "client", - "server" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/delete-push-target.md", - "auth": { - "Project": [], - "Session": [] - } - }, - "security": [ - { - "Project": [], - "Session": [], - "JWT": [] - } - ], - "parameters": [ - { - "name": "targetId", - "description": "Target ID.", - "required": true, - "type": "string", - "x-example": "<TARGET_ID>", - "in": "path" - } - ] } }, - "\/account\/tokens\/email": { + "\/account\/tokens\/magic-url": { "post": { - "summary": "Create email token (OTP)", - "operationId": "accountCreateEmailToken", + "summary": "Create magic URL token", + "operationId": "accountCreateMagicURLToken", "consumes": [ "application\/json" ], @@ -3457,7 +3136,7 @@ "tags": [ "account" ], - "description": "Sends the user an email with a secret key for creating a session. If the email address has never been used, a **new account is created** using the provided `userId`. Otherwise, if the email address is already attached to an account, the **user ID is ignored**. Then, the user will receive an email with the one-time password. Use the returned user ID and secret and submit a request to the [POST \/v1\/account\/sessions\/token](https:\/\/appwrite.io\/docs\/references\/cloud\/client-web\/account#createSession) endpoint to complete the login process. The secret sent to the user's email is valid for 15 minutes.\n\nA user is limited to 10 active sessions at a time by default. [Learn more about session limits](https:\/\/appwrite.io\/docs\/authentication-security#limits).\n", + "description": "Sends the user an email with a secret key for creating a session. If the provided user ID has not been registered, a new user will be created. When the user clicks the link in the email, the user is redirected back to the URL you provided with the secret key and userId values attached to the URL query string. Use the query string parameters to submit a request to the [POST \/v1\/account\/sessions\/token](https:\/\/appwrite.io\/docs\/references\/cloud\/client-web\/account#createSession) endpoint to complete the login process. The link sent to the user's email address is valid for 1 hour.\n\nA user is limited to 10 active sessions at a time by default. [Learn more about session limits](https:\/\/appwrite.io\/docs\/authentication-security#limits).\n", "responses": { "201": { "description": "Token", @@ -3468,13 +3147,12 @@ }, "deprecated": false, "x-appwrite": { - "method": "createEmailToken", + "method": "createMagicURLToken", "group": "tokens", - "weight": 25, "cookies": false, "type": "", - "demo": "account\/create-email-token.md", - "rate-limit": 10, + "demo": "account\/create-magic-url-token.md", + "rate-limit": 60, "rate-time": 3600, "rate-key": [ "url:{url},email:{param-email}", @@ -3488,98 +3166,7 @@ ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/create-token-email.md", - "auth": { - "Project": [], - "Session": [] - } - }, - "security": [ - { - "Project": [], - "Session": [], - "JWT": [] - } - ], - "parameters": [ - { - "name": "payload", - "in": "body", - "schema": { - "type": "object", - "properties": { - "userId": { - "type": "string", - "description": "User ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars. If the email address has never been used, a new account is created using the provided userId. Otherwise, if the email address is already attached to an account, the user ID is ignored.", - "x-example": "<USER_ID>" - }, - "email": { - "type": "string", - "description": "User email.", - "x-example": "email@example.com", - "format": "email" - }, - "phrase": { - "type": "boolean", - "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", - "x-example": false, - "default": false - } - }, - "required": [ - "userId", - "email" - ] - } - } - ] - } - }, - "\/account\/tokens\/magic-url": { - "post": { - "summary": "Create magic URL token", - "operationId": "accountCreateMagicURLToken", - "consumes": [ - "application\/json" - ], - "produces": [ - "application\/json" - ], - "tags": [ - "account" - ], - "description": "Sends the user an email with a secret key for creating a session. If the provided user ID has not been registered, a new user will be created. When the user clicks the link in the email, the user is redirected back to the URL you provided with the secret key and userId values attached to the URL query string. Use the query string parameters to submit a request to the [POST \/v1\/account\/sessions\/token](https:\/\/appwrite.io\/docs\/references\/cloud\/client-web\/account#createSession) endpoint to complete the login process. The link sent to the user's email address is valid for 1 hour.\n\nA user is limited to 10 active sessions at a time by default. [Learn more about session limits](https:\/\/appwrite.io\/docs\/authentication-security#limits).\n", - "responses": { - "201": { - "description": "Token", - "schema": { - "$ref": "#\/definitions\/token" - } - } - }, - "deprecated": false, - "x-appwrite": { - "method": "createMagicURLToken", - "group": "tokens", - "weight": 24, - "cookies": false, - "type": "", - "demo": "account\/create-magic-url-token.md", - "rate-limit": 60, - "rate-time": 3600, - "rate-key": [ - "url:{url},email:{param-email}", - "url:{url},ip:{ip}" - ], - "scope": "sessions.write", - "platforms": [ - "console", - "client", - "server" - ], - "packaging": false, - "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/create-token-magic-url.md", + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/account\/create-token-magic-url.md", "auth": { "Project": [], "Session": [] @@ -3613,15 +3200,15 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the magic URL login. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "x-example": "https:\/\/example.com", "default": "", + "x-example": "https:\/\/example.com", "format": "url" }, "phrase": { "type": "boolean", "description": "Toggle for security phrase. If enabled, email will be send with a randomly generated phrase and the phrase will also be included in the response. Confirming phrases match increases the security of your authentication flow.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -3654,7 +3241,6 @@ "x-appwrite": { "method": "createOAuth2Token", "group": "tokens", - "weight": 23, "cookies": false, "type": "webAuth", "demo": "account\/create-o-auth-2-token.md", @@ -3735,7 +3321,6 @@ "zoom" ], "x-enum-name": "OAuthProvider", - "x-enum-keys": [], "in": "path" }, { @@ -3799,7 +3384,6 @@ "x-appwrite": { "method": "createPhoneToken", "group": "tokens", - "weight": 28, "cookies": false, "type": "", "demo": "account\/create-phone-token.md", @@ -3884,7 +3468,6 @@ "x-appwrite": { "method": "createEmailVerification", "group": "verification", - "weight": 40, "cookies": false, "type": "", "demo": "account\/create-email-verification.md", @@ -4012,7 +3595,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "verification", - "weight": 41, "cookies": false, "type": "", "demo": "account\/update-email-verification.md", @@ -4151,7 +3733,6 @@ "x-appwrite": { "method": "createPhoneVerification", "group": "verification", - "weight": 42, "cookies": false, "type": "", "demo": "account\/create-phone-verification.md", @@ -4208,7 +3789,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "verification", - "weight": 43, "cookies": false, "type": "", "demo": "account\/update-phone-verification.md", @@ -4287,7 +3867,6 @@ "x-appwrite": { "method": "listEvents", "group": null, - "weight": 1258, "cookies": false, "type": "", "demo": "activities\/list-events.md", @@ -4349,7 +3928,6 @@ "x-appwrite": { "method": "getEvent", "group": "events", - "weight": 1259, "cookies": false, "type": "", "demo": "activities\/get-event.md", @@ -4411,7 +3989,6 @@ "x-appwrite": { "method": "getBrowser", "group": null, - "weight": 176, "cookies": false, "type": "location", "demo": "avatars\/get-browser.md", @@ -4539,7 +4116,6 @@ "x-appwrite": { "method": "getCreditCard", "group": null, - "weight": 175, "cookies": false, "type": "location", "demo": "avatars\/get-credit-card.md", @@ -4673,7 +4249,6 @@ "x-appwrite": { "method": "getFavicon", "group": null, - "weight": 179, "cookies": false, "type": "location", "demo": "avatars\/get-favicon.md", @@ -4739,7 +4314,6 @@ "x-appwrite": { "method": "getFlag", "group": null, - "weight": 177, "cookies": false, "type": "location", "demo": "avatars\/get-flag.md", @@ -5229,7 +4803,6 @@ "x-appwrite": { "method": "getImage", "group": null, - "weight": 178, "cookies": false, "type": "location", "demo": "avatars\/get-image.md", @@ -5315,7 +4888,6 @@ "x-appwrite": { "method": "getInitials", "group": null, - "weight": 181, "cookies": false, "type": "location", "demo": "avatars\/get-initials.md", @@ -5409,7 +4981,6 @@ "x-appwrite": { "method": "getQR", "group": null, - "weight": 180, "cookies": false, "type": "location", "demo": "avatars\/get-qr.md", @@ -5503,7 +5074,6 @@ "x-appwrite": { "method": "getScreenshot", "group": null, - "weight": 182, "cookies": false, "type": "location", "demo": "avatars\/get-screenshot.md", @@ -5591,8 +5161,7 @@ "light", "dark" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "BrowserTheme", "default": "light", "in": "query" }, @@ -6050,8 +5619,7 @@ "pacific\/wallis", "utc" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "Timezone", "in": "query" }, { @@ -6123,8 +5691,7 @@ "web-share", "xr-spatial-tracking" ], - "x-enum-name": "BrowserPermission", - "x-enum-keys": [] + "x-enum-name": "BrowserPermission" }, "x-example": "[\"geolocation\",\"notifications\"]", "default": [], @@ -6186,7 +5753,6 @@ "gif" ], "x-enum-name": "ImageFormat", - "x-enum-keys": [], "in": "query" } ] @@ -6216,7 +5782,6 @@ "x-appwrite": { "method": "listArchives", "group": null, - "weight": 1127, "cookies": false, "type": "", "demo": "backups\/list-archives.md", @@ -6282,7 +5847,6 @@ "x-appwrite": { "method": "createArchive", "group": null, - "weight": 1128, "cookies": false, "type": "", "demo": "backups\/create-archive.md", @@ -6329,8 +5893,7 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "resourceId": { @@ -6372,7 +5935,6 @@ "x-appwrite": { "method": "getArchive", "group": null, - "weight": 1126, "cookies": false, "type": "", "demo": "backups\/get-archive.md", @@ -6431,7 +5993,6 @@ "x-appwrite": { "method": "deleteArchive", "group": null, - "weight": 1129, "cookies": false, "type": "", "demo": "backups\/delete-archive.md", @@ -6493,7 +6054,6 @@ "x-appwrite": { "method": "listPolicies", "group": null, - "weight": 1122, "cookies": false, "type": "", "demo": "backups\/list-policies.md", @@ -6562,7 +6122,6 @@ "x-appwrite": { "method": "createPolicy", "group": null, - "weight": 1123, "cookies": false, "type": "", "demo": "backups\/create-policy.md", @@ -6606,8 +6165,8 @@ "name": { "type": "string", "description": "Policy name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "services": { "type": "array", @@ -6623,8 +6182,7 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "resourceId": { @@ -6636,8 +6194,8 @@ "enabled": { "type": "boolean", "description": "Is policy enabled? When set to 'disabled', no backups will be taken", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "retention": { "type": "integer", @@ -6686,7 +6244,6 @@ "x-appwrite": { "method": "getPolicy", "group": null, - "weight": 1121, "cookies": false, "type": "", "demo": "backups\/get-policy.md", @@ -6751,7 +6308,6 @@ "x-appwrite": { "method": "updatePolicy", "group": null, - "weight": 1124, "cookies": false, "type": "", "demo": "backups\/update-policy.md", @@ -6846,7 +6402,6 @@ "x-appwrite": { "method": "deletePolicy", "group": null, - "weight": 1125, "cookies": false, "type": "", "demo": "backups\/delete-policy.md", @@ -6913,7 +6468,6 @@ "x-appwrite": { "method": "createRestoration", "group": null, - "weight": 1132, "cookies": false, "type": "", "demo": "backups\/create-restoration.md", @@ -6965,21 +6519,20 @@ "functions", "storage" ], - "x-enum-name": "BackupServices", - "x-enum-keys": [] + "x-enum-name": "BackupServices" } }, "newResourceId": { "type": "string", "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<NEW_RESOURCE_ID>", - "default": "" + "default": "", + "x-example": "<NEW_RESOURCE_ID>" }, "newResourceName": { "type": "string", "description": "Database name. Max length: 128 chars.", - "x-example": "<NEW_RESOURCE_NAME>", - "default": "" + "default": "", + "x-example": "<NEW_RESOURCE_NAME>" } }, "required": [ @@ -7015,7 +6568,6 @@ "x-appwrite": { "method": "listRestorations", "group": null, - "weight": 1131, "cookies": false, "type": "", "demo": "backups\/list-restorations.md", @@ -7081,7 +6633,6 @@ "x-appwrite": { "method": "getRestoration", "group": null, - "weight": 1130, "cookies": false, "type": "", "demo": "backups\/get-restoration.md", @@ -7143,7 +6694,6 @@ "x-appwrite": { "method": "list", "group": "databases", - "weight": 704, "cookies": false, "type": "", "demo": "databases\/list.md", @@ -7261,7 +6811,6 @@ "x-appwrite": { "method": "create", "group": "databases", - "weight": 700, "cookies": false, "type": "", "demo": "databases\/create.md", @@ -7344,8 +6893,8 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -7381,7 +6930,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 774, "cookies": false, "type": "", "demo": "databases\/list-transactions.md", @@ -7450,7 +6998,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 770, "cookies": false, "type": "", "demo": "databases\/create-transaction.md", @@ -7489,8 +7036,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -7523,7 +7070,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 771, "cookies": false, "type": "", "demo": "databases\/get-transaction.md", @@ -7588,7 +7134,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 772, "cookies": false, "type": "", "demo": "databases\/update-transaction.md", @@ -7635,14 +7180,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -7669,7 +7214,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 773, "cookies": false, "type": "", "demo": "databases\/delete-transaction.md", @@ -7736,7 +7280,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 775, "cookies": false, "type": "", "demo": "databases\/create-operations.md", @@ -7783,8 +7326,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -7819,7 +7362,6 @@ "x-appwrite": { "method": "get", "group": "databases", - "weight": 701, "cookies": false, "type": "", "demo": "databases\/get.md", @@ -7915,7 +7457,6 @@ "x-appwrite": { "method": "update", "group": "databases", - "weight": 702, "cookies": false, "type": "", "demo": "databases\/update.md", @@ -8000,8 +7541,8 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } } } @@ -8028,7 +7569,6 @@ "x-appwrite": { "method": "delete", "group": "databases", - "weight": 703, "cookies": false, "type": "", "demo": "databases\/delete.md", @@ -8123,7 +7663,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 712, "cookies": false, "type": "", "demo": "databases\/list-collections.md", @@ -8219,7 +7758,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 708, "cookies": false, "type": "", "demo": "databases\/create-collection.md", @@ -8286,20 +7824,20 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "attributes": { "type": "array", "description": "Array of attribute definitions to create. Each attribute should contain: key (string), type (string: string, integer, float, boolean, datetime), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -8307,8 +7845,8 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of attribute keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -8347,7 +7885,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 709, "cookies": false, "type": "", "demo": "databases\/get-collection.md", @@ -8421,7 +7958,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 710, "cookies": false, "type": "", "demo": "databases\/update-collection.md", @@ -8491,20 +8027,20 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this collection as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -8531,7 +8067,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 711, "cookies": false, "type": "", "demo": "databases\/delete-collection.md", @@ -8605,7 +8140,6 @@ "x-appwrite": { "method": "listAttributes", "group": "attributes", - "weight": 729, "cookies": false, "type": "", "demo": "databases\/list-attributes.md", @@ -8702,7 +8236,6 @@ "x-appwrite": { "method": "createBigIntAttribute", "group": "attributes", - "weight": 742, "cookies": false, "type": "", "demo": "databases\/create-big-int-attribute.md", @@ -8789,8 +8322,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -8828,7 +8361,6 @@ "x-appwrite": { "method": "updateBigIntAttribute", "group": "attributes", - "weight": 743, "cookies": false, "type": "", "demo": "databases\/update-big-int-attribute.md", @@ -8956,7 +8488,6 @@ "x-appwrite": { "method": "createBooleanAttribute", "group": "attributes", - "weight": 730, "cookies": false, "type": "", "demo": "databases\/create-boolean-attribute.md", @@ -9028,8 +8559,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -9067,7 +8598,6 @@ "x-appwrite": { "method": "updateBooleanAttribute", "group": "attributes", - "weight": 731, "cookies": false, "type": "", "demo": "databases\/update-boolean-attribute.md", @@ -9180,7 +8710,6 @@ "x-appwrite": { "method": "createDatetimeAttribute", "group": "attributes", - "weight": 732, "cookies": false, "type": "", "demo": "databases\/create-datetime-attribute.md", @@ -9253,8 +8782,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -9292,7 +8821,6 @@ "x-appwrite": { "method": "updateDatetimeAttribute", "group": "attributes", - "weight": 733, "cookies": false, "type": "", "demo": "databases\/update-datetime-attribute.md", @@ -9406,7 +8934,6 @@ "x-appwrite": { "method": "createEmailAttribute", "group": "attributes", - "weight": 734, "cookies": false, "type": "", "demo": "databases\/create-email-attribute.md", @@ -9479,8 +9006,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -9518,7 +9045,6 @@ "x-appwrite": { "method": "updateEmailAttribute", "group": "attributes", - "weight": 735, "cookies": false, "type": "", "demo": "databases\/update-email-attribute.md", @@ -9632,7 +9158,6 @@ "x-appwrite": { "method": "createEnumAttribute", "group": "attributes", - "weight": 736, "cookies": false, "type": "", "demo": "databases\/create-enum-attribute.md", @@ -9712,8 +9237,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -9752,7 +9277,6 @@ "x-appwrite": { "method": "updateEnumAttribute", "group": "attributes", - "weight": 737, "cookies": false, "type": "", "demo": "databases\/update-enum-attribute.md", @@ -9874,7 +9398,6 @@ "x-appwrite": { "method": "createFloatAttribute", "group": "attributes", - "weight": 738, "cookies": false, "type": "", "demo": "databases\/create-float-attribute.md", @@ -9961,8 +9484,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -10000,7 +9523,6 @@ "x-appwrite": { "method": "updateFloatAttribute", "group": "attributes", - "weight": 739, "cookies": false, "type": "", "demo": "databases\/update-float-attribute.md", @@ -10128,7 +9650,6 @@ "x-appwrite": { "method": "createIntegerAttribute", "group": "attributes", - "weight": 740, "cookies": false, "type": "", "demo": "databases\/create-integer-attribute.md", @@ -10215,8 +9736,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -10254,7 +9775,6 @@ "x-appwrite": { "method": "updateIntegerAttribute", "group": "attributes", - "weight": 741, "cookies": false, "type": "", "demo": "databases\/update-integer-attribute.md", @@ -10382,7 +9902,6 @@ "x-appwrite": { "method": "createIpAttribute", "group": "attributes", - "weight": 744, "cookies": false, "type": "", "demo": "databases\/create-ip-attribute.md", @@ -10454,8 +9973,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -10493,7 +10012,6 @@ "x-appwrite": { "method": "updateIpAttribute", "group": "attributes", - "weight": 745, "cookies": false, "type": "", "demo": "databases\/update-ip-attribute.md", @@ -10606,7 +10124,6 @@ "x-appwrite": { "method": "createLineAttribute", "group": "attributes", - "weight": 746, "cookies": false, "type": "", "demo": "databases\/create-line-attribute.md", @@ -10711,7 +10228,6 @@ "x-appwrite": { "method": "updateLineAttribute", "group": "attributes", - "weight": 747, "cookies": false, "type": "", "demo": "databases\/update-line-attribute.md", @@ -10823,7 +10339,6 @@ "x-appwrite": { "method": "createLongtextAttribute", "group": "attributes", - "weight": 764, "cookies": false, "type": "", "demo": "databases\/create-longtext-attribute.md", @@ -10891,14 +10406,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -10936,7 +10451,6 @@ "x-appwrite": { "method": "updateLongtextAttribute", "group": "attributes", - "weight": 765, "cookies": false, "type": "", "demo": "databases\/update-longtext-attribute.md", @@ -11045,7 +10559,6 @@ "x-appwrite": { "method": "createMediumtextAttribute", "group": "attributes", - "weight": 762, "cookies": false, "type": "", "demo": "databases\/create-mediumtext-attribute.md", @@ -11113,14 +10626,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -11158,7 +10671,6 @@ "x-appwrite": { "method": "updateMediumtextAttribute", "group": "attributes", - "weight": 763, "cookies": false, "type": "", "demo": "databases\/update-mediumtext-attribute.md", @@ -11267,7 +10779,6 @@ "x-appwrite": { "method": "createPointAttribute", "group": "attributes", - "weight": 748, "cookies": false, "type": "", "demo": "databases\/create-point-attribute.md", @@ -11372,7 +10883,6 @@ "x-appwrite": { "method": "updatePointAttribute", "group": "attributes", - "weight": 749, "cookies": false, "type": "", "demo": "databases\/update-point-attribute.md", @@ -11484,7 +10994,6 @@ "x-appwrite": { "method": "createPolygonAttribute", "group": "attributes", - "weight": 750, "cookies": false, "type": "", "demo": "databases\/create-polygon-attribute.md", @@ -11589,7 +11098,6 @@ "x-appwrite": { "method": "updatePolygonAttribute", "group": "attributes", - "weight": 751, "cookies": false, "type": "", "demo": "databases\/update-polygon-attribute.md", @@ -11701,7 +11209,6 @@ "x-appwrite": { "method": "createRelationshipAttribute", "group": "attributes", - "weight": 752, "cookies": false, "type": "", "demo": "databases\/create-relationship-attribute.md", @@ -11769,14 +11276,13 @@ "manyToMany", "oneToMany" ], - "x-enum-name": "RelationshipType", - "x-enum-keys": [] + "x-enum-name": "RelationshipType" }, "twoWay": { "type": "boolean", "description": "Is Two Way?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "key": { "type": "string", @@ -11793,15 +11299,14 @@ "onDelete": { "type": "string", "description": "Constraints option", - "x-example": "cascade", "default": "restrict", + "x-example": "cascade", "enum": [ "cascade", "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" } }, "required": [ @@ -11839,7 +11344,6 @@ "x-appwrite": { "method": "updateRelationshipAttribute", "group": "attributes", - "weight": 753, "cookies": false, "type": "", "demo": "databases\/update-relationship-attribute.md", @@ -11908,8 +11412,7 @@ "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" }, "newKey": { "type": "string", @@ -11949,7 +11452,6 @@ "x-appwrite": { "method": "createStringAttribute", "group": "attributes", - "weight": 754, "cookies": false, "type": "", "demo": "databases\/create-string-attribute.md", @@ -12027,14 +11529,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -12073,7 +11575,6 @@ "x-appwrite": { "method": "updateStringAttribute", "group": "attributes", - "weight": 755, "cookies": false, "type": "", "demo": "databases\/update-string-attribute.md", @@ -12193,7 +11694,6 @@ "x-appwrite": { "method": "createTextAttribute", "group": "attributes", - "weight": 760, "cookies": false, "type": "", "demo": "databases\/create-text-attribute.md", @@ -12261,14 +11761,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -12306,7 +11806,6 @@ "x-appwrite": { "method": "updateTextAttribute", "group": "attributes", - "weight": 761, "cookies": false, "type": "", "demo": "databases\/update-text-attribute.md", @@ -12415,7 +11914,6 @@ "x-appwrite": { "method": "createUrlAttribute", "group": "attributes", - "weight": 756, "cookies": false, "type": "", "demo": "databases\/create-url-attribute.md", @@ -12488,8 +11986,8 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -12527,7 +12025,6 @@ "x-appwrite": { "method": "updateUrlAttribute", "group": "attributes", - "weight": 757, "cookies": false, "type": "", "demo": "databases\/update-url-attribute.md", @@ -12641,7 +12138,6 @@ "x-appwrite": { "method": "createVarcharAttribute", "group": "attributes", - "weight": 758, "cookies": false, "type": "", "demo": "databases\/create-varchar-attribute.md", @@ -12715,14 +12211,14 @@ "array": { "type": "boolean", "description": "Is attribute an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -12761,7 +12257,6 @@ "x-appwrite": { "method": "updateVarcharAttribute", "group": "attributes", - "weight": 759, "cookies": false, "type": "", "demo": "databases\/update-varchar-attribute.md", @@ -12957,7 +12452,6 @@ "x-appwrite": { "method": "getAttribute", "group": "attributes", - "weight": 727, "cookies": false, "type": "", "demo": "databases\/get-attribute.md", @@ -13033,7 +12527,6 @@ "x-appwrite": { "method": "deleteAttribute", "group": "attributes", - "weight": 728, "cookies": false, "type": "", "demo": "databases\/delete-attribute.md", @@ -13114,7 +12607,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 918, "cookies": false, "type": "", "demo": "databases\/list-documents.md", @@ -13230,7 +12722,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 715, "cookies": false, "type": "", "demo": "databases\/create-document.md", @@ -13360,14 +12851,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -13381,8 +12872,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -13423,7 +12914,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 720, "cookies": false, "type": "", "demo": "databases\/upsert-documents.md", @@ -13558,7 +13048,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 718, "cookies": false, "type": "", "demo": "databases\/update-documents.md", @@ -13614,14 +13103,14 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -13662,7 +13151,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 722, "cookies": false, "type": "", "demo": "databases\/delete-documents.md", @@ -13718,8 +13206,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -13760,7 +13248,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 716, "cookies": false, "type": "", "demo": "databases\/get-document.md", @@ -13865,7 +13352,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 719, "cookies": false, "type": "", "demo": "databases\/upsert-document.md", @@ -13969,8 +13455,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required attributes of the document to be created or updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -14017,7 +13503,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 717, "cookies": false, "type": "", "demo": "databases\/update-document.md", @@ -14084,8 +13569,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -14127,7 +13612,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 721, "cookies": false, "type": "", "demo": "databases\/delete-document.md", @@ -14229,7 +13713,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 726, "cookies": false, "type": "", "demo": "databases\/decrement-document-attribute.md", @@ -14303,8 +13786,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -14352,7 +13835,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 725, "cookies": false, "type": "", "demo": "databases\/increment-document-attribute.md", @@ -14426,8 +13908,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -14473,7 +13955,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 769, "cookies": false, "type": "", "demo": "databases\/list-indexes.md", @@ -14568,7 +14049,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 766, "cookies": false, "type": "", "demo": "databases\/create-index.md", @@ -14636,8 +14116,7 @@ "unique", "spatial" ], - "x-enum-name": "DatabasesIndexType", - "x-enum-keys": [] + "x-enum-name": "DatabasesIndexType" }, "attributes": { "type": "array", @@ -14650,23 +14129,22 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "integer" } @@ -14706,7 +14184,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 767, "cookies": false, "type": "", "demo": "databases\/get-index.md", @@ -14782,7 +14259,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 768, "cookies": false, "type": "", "demo": "databases\/delete-index.md", @@ -14863,7 +14339,6 @@ "x-appwrite": { "method": "list", "group": "documentsdb", - "weight": 920, "cookies": false, "type": "", "demo": "documentsdb\/list.md", @@ -14938,7 +14413,6 @@ "x-appwrite": { "method": "create", "group": "documentsdb", - "weight": 922, "cookies": false, "type": "", "demo": "documentsdb\/create.md", @@ -14984,8 +14458,8 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -15021,7 +14495,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 883, "cookies": false, "type": "", "demo": "documentsdb\/list-transactions.md", @@ -15090,7 +14563,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 879, "cookies": false, "type": "", "demo": "documentsdb\/create-transaction.md", @@ -15129,8 +14601,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -15163,7 +14635,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 880, "cookies": false, "type": "", "demo": "documentsdb\/get-transaction.md", @@ -15228,7 +14699,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 881, "cookies": false, "type": "", "demo": "documentsdb\/update-transaction.md", @@ -15275,14 +14745,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -15309,7 +14779,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 882, "cookies": false, "type": "", "demo": "documentsdb\/delete-transaction.md", @@ -15376,7 +14845,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 884, "cookies": false, "type": "", "demo": "documentsdb\/create-operations.md", @@ -15422,8 +14890,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -15458,7 +14926,6 @@ "x-appwrite": { "method": "get", "group": "documentsdb", - "weight": 852, "cookies": false, "type": "", "demo": "documentsdb\/get.md", @@ -15520,7 +14987,6 @@ "x-appwrite": { "method": "update", "group": "documentsdb", - "weight": 853, "cookies": false, "type": "", "demo": "documentsdb\/update.md", @@ -15569,8 +15035,8 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -15600,7 +15066,6 @@ "x-appwrite": { "method": "delete", "group": "documentsdb", - "weight": 923, "cookies": false, "type": "", "demo": "documentsdb\/delete.md", @@ -15662,7 +15127,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 862, "cookies": false, "type": "", "demo": "documentsdb\/list-collections.md", @@ -15754,7 +15218,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 858, "cookies": false, "type": "", "demo": "documentsdb\/create-collection.md", @@ -15817,20 +15280,20 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "attributes": { "type": "array", "description": "Array of attribute definitions to create. Each attribute should contain: key (string), type (string: string, integer, float, boolean, datetime, relationship), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -15838,8 +15301,8 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of attribute keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -15878,7 +15341,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 859, "cookies": false, "type": "", "demo": "documentsdb\/get-collection.md", @@ -15948,7 +15410,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 860, "cookies": false, "type": "", "demo": "documentsdb\/update-collection.md", @@ -16013,20 +15474,20 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this collection as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -16056,7 +15517,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 861, "cookies": false, "type": "", "demo": "documentsdb\/delete-collection.md", @@ -16126,7 +15586,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 921, "cookies": false, "type": "", "demo": "documentsdb\/list-documents.md", @@ -16238,7 +15697,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 868, "cookies": false, "type": "", "demo": "documentsdb\/create-document.md", @@ -16354,14 +15812,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -16374,8 +15832,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -16415,7 +15873,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 873, "cookies": false, "type": "", "demo": "documentsdb\/upsert-documents.md", @@ -16541,7 +15998,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 871, "cookies": false, "type": "", "demo": "documentsdb\/update-documents.md", @@ -16593,14 +16049,14 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -16640,7 +16096,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 875, "cookies": false, "type": "", "demo": "documentsdb\/delete-documents.md", @@ -16692,8 +16147,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -16733,7 +16188,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 869, "cookies": false, "type": "", "demo": "documentsdb\/get-document.md", @@ -16834,7 +16288,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 872, "cookies": false, "type": "", "demo": "documentsdb\/upsert-document.md", @@ -16930,8 +16383,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -16976,7 +16429,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 870, "cookies": false, "type": "", "demo": "documentsdb\/update-document.md", @@ -17039,8 +16491,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -17080,7 +16532,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 874, "cookies": false, "type": "", "demo": "documentsdb\/delete-document.md", @@ -17177,7 +16628,6 @@ "x-appwrite": { "method": "decrementDocumentAttribute", "group": "documents", - "weight": 878, "cookies": false, "type": "", "demo": "documentsdb\/decrement-document-attribute.md", @@ -17247,8 +16697,8 @@ "value": { "type": "number", "description": "Value to decrement the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -17294,7 +16744,6 @@ "x-appwrite": { "method": "incrementDocumentAttribute", "group": "documents", - "weight": 877, "cookies": false, "type": "", "demo": "documentsdb\/increment-document-attribute.md", @@ -17364,8 +16813,8 @@ "value": { "type": "number", "description": "Value to increment the attribute by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -17409,7 +16858,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 867, "cookies": false, "type": "", "demo": "documentsdb\/list-indexes.md", @@ -17500,7 +16948,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 864, "cookies": false, "type": "", "demo": "documentsdb\/create-index.md", @@ -17563,8 +17010,7 @@ "fulltext", "unique" ], - "x-enum-name": "DocumentsDBIndexType", - "x-enum-keys": [] + "x-enum-name": "DocumentsDBIndexType" }, "attributes": { "type": "array", @@ -17577,23 +17023,22 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "integer" } @@ -17633,7 +17078,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 865, "cookies": false, "type": "", "demo": "documentsdb\/get-index.md", @@ -17705,7 +17149,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 866, "cookies": false, "type": "", "demo": "documentsdb\/delete-index.md", @@ -17782,7 +17225,6 @@ "x-appwrite": { "method": "list", "group": "functions", - "weight": 425, "cookies": false, "type": "", "demo": "functions\/list.md", @@ -17865,7 +17307,6 @@ "x-appwrite": { "method": "create", "group": "functions", - "weight": 969, "cookies": false, "type": "", "demo": "functions\/create.md", @@ -17964,6 +17405,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -18003,16 +17445,16 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "execute": { "type": "array", "description": "An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", - "x-example": "[\"any\"]", "default": [], + "x-example": "[\"any\"]", "items": { "type": "string" } @@ -18020,8 +17462,8 @@ "events": { "type": "array", "description": "Events list. Maximum of 100 events are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -18029,45 +17471,45 @@ "schedule": { "type": "string", "description": "Schedule CRON syntax.", - "x-example": null, - "default": "" + "default": "", + "x-example": null }, "timeout": { "type": "integer", "description": "Function maximum execution time in seconds.", - "x-example": 1, "default": 15, + "x-example": 1, "format": "int32" }, "enabled": { "type": "boolean", "description": "Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, executions will exclude logs and errors, and will be slightly faster.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "entrypoint": { "type": "string", "description": "Entrypoint File. This path is relative to the \"providerRootDirectory\".", - "x-example": "<ENTRYPOINT>", - "default": "" + "default": "", + "x-example": "<ENTRYPOINT>" }, "commands": { "type": "string", "description": "Build Commands.", - "x-example": "<COMMANDS>", - "default": "" + "default": "", + "x-example": "<COMMANDS>" }, "scopes": { "type": "array", "description": "List of scopes allowed for API key auto-generated for every execution. Maximum of 100 scopes are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ @@ -18166,57 +17608,74 @@ "events.read", "usage.read" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", - "x-example": "<INSTALLATION_ID>", - "default": "" + "default": "", + "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the function.", - "x-example": "<PROVIDER_REPOSITORY_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the function.", - "x-example": "<PROVIDER_BRANCH>", - "default": "" + "default": "", + "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to function code in the linked repo.", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" + }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } }, "buildSpecification": { "type": "string", "description": "Build specification for the function deployments.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the function executions.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" } }, @@ -18254,7 +17713,6 @@ "x-appwrite": { "method": "listRuntimes", "group": "runtimes", - "weight": 427, "cookies": false, "type": "", "demo": "functions\/list-runtimes.md", @@ -18305,7 +17763,6 @@ "x-appwrite": { "method": "listSpecifications", "group": "runtimes", - "weight": 428, "cookies": false, "type": "", "demo": "functions\/list-specifications.md", @@ -18356,7 +17813,6 @@ "x-appwrite": { "method": "get", "group": "functions", - "weight": 423, "cookies": false, "type": "", "demo": "functions\/get.md", @@ -18417,7 +17873,6 @@ "x-appwrite": { "method": "update", "group": "functions", - "weight": 970, "cookies": false, "type": "", "demo": "functions\/update.md", @@ -18519,6 +17974,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -18558,16 +18014,16 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "FunctionRuntime" }, "execute": { "type": "array", "description": "An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", - "x-example": "[\"any\"]", "default": [], + "x-example": "[\"any\"]", "items": { "type": "string" } @@ -18575,8 +18031,8 @@ "events": { "type": "array", "description": "Events list. Maximum of 100 events are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -18584,45 +18040,45 @@ "schedule": { "type": "string", "description": "Schedule CRON syntax.", - "x-example": null, - "default": "" + "default": "", + "x-example": null }, "timeout": { "type": "integer", "description": "Maximum execution time in seconds.", - "x-example": 1, "default": 15, + "x-example": 1, "format": "int32" }, "enabled": { "type": "boolean", "description": "Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, executions will exclude logs and errors, and will be slightly faster.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "entrypoint": { "type": "string", "description": "Entrypoint File. This path is relative to the \"providerRootDirectory\".", - "x-example": "<ENTRYPOINT>", - "default": "" + "default": "", + "x-example": "<ENTRYPOINT>" }, "commands": { "type": "string", "description": "Build Commands.", - "x-example": "<COMMANDS>", - "default": "" + "default": "", + "x-example": "<COMMANDS>" }, "scopes": { "type": "array", "description": "List of scopes allowed for API Key auto-generated for every execution. Maximum of 100 scopes are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ @@ -18721,15 +18177,14 @@ "events.read", "usage.read" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Controle System) deployment.", - "x-example": "<INSTALLATION_ID>", - "default": "" + "default": "", + "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", @@ -18740,38 +18195,56 @@ "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the function", - "x-example": "<PROVIDER_BRANCH>", - "default": "" + "default": "", + "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to function code in the linked repo.", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" + }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "x-example": null, + "x-nullable": true, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "x-example": null, + "x-nullable": true, + "items": { + "type": "string" + } }, "buildSpecification": { "type": "string", "description": "Build specification for the function deployments.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the function executions.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" } }, @@ -18802,7 +18275,6 @@ "x-appwrite": { "method": "delete", "group": "functions", - "weight": 426, "cookies": false, "type": "", "demo": "functions\/delete.md", @@ -18865,7 +18337,6 @@ "x-appwrite": { "method": "updateFunctionDeployment", "group": "functions", - "weight": 431, "cookies": false, "type": "", "demo": "functions\/update-function-deployment.md", @@ -18943,7 +18414,6 @@ "x-appwrite": { "method": "listDeployments", "group": "deployments", - "weight": 432, "cookies": false, "type": "", "demo": "functions\/list-deployments.md", @@ -19034,7 +18504,6 @@ "x-appwrite": { "method": "createDeployment", "group": "deployments", - "weight": 429, "cookies": false, "type": "upload", "demo": "functions\/create-deployment.md", @@ -19128,7 +18597,6 @@ "x-appwrite": { "method": "createDuplicateDeployment", "group": "deployments", - "weight": 437, "cookies": false, "type": "", "demo": "functions\/create-duplicate-deployment.md", @@ -19176,8 +18644,8 @@ "buildId": { "type": "string", "description": "Build unique ID.", - "x-example": "<BUILD_ID>", - "default": "" + "default": "", + "x-example": "<BUILD_ID>" } }, "required": [ @@ -19214,7 +18682,6 @@ "x-appwrite": { "method": "createTemplateDeployment", "group": "deployments", - "weight": 434, "cookies": false, "type": "", "demo": "functions\/create-template-deployment.md", @@ -19278,8 +18745,7 @@ "branch", "tag" ], - "x-enum-name": "TemplateReferenceType", - "x-enum-keys": [] + "x-enum-name": "TemplateReferenceType" }, "reference": { "type": "string", @@ -19289,8 +18755,8 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -19331,7 +18797,6 @@ "x-appwrite": { "method": "createVcsDeployment", "group": "deployments", - "weight": 435, "cookies": false, "type": "", "demo": "functions\/create-vcs-deployment.md", @@ -19379,8 +18844,7 @@ "branch", "commit" ], - "x-enum-name": "VCSReferenceType", - "x-enum-keys": [] + "x-enum-name": "VCSReferenceType" }, "reference": { "type": "string", @@ -19390,8 +18854,8 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -19427,7 +18891,6 @@ "x-appwrite": { "method": "getDeployment", "group": "deployments", - "weight": 430, "cookies": false, "type": "", "demo": "functions\/get-deployment.md", @@ -19491,7 +18954,6 @@ "x-appwrite": { "method": "deleteDeployment", "group": "deployments", - "weight": 433, "cookies": false, "type": "", "demo": "functions\/delete-deployment.md", @@ -19560,7 +19022,6 @@ "x-appwrite": { "method": "getDeploymentDownload", "group": "deployments", - "weight": 436, "cookies": false, "type": "location", "demo": "functions\/get-deployment-download.md", @@ -19614,7 +19075,6 @@ "output" ], "x-enum-name": "DeploymentDownloadType", - "x-enum-keys": [], "default": "source", "in": "query" } @@ -19647,7 +19107,6 @@ "x-appwrite": { "method": "updateDeploymentStatus", "group": "deployments", - "weight": 438, "cookies": false, "type": "", "demo": "functions\/update-deployment-status.md", @@ -19716,7 +19175,6 @@ "x-appwrite": { "method": "listExecutions", "group": "executions", - "weight": 441, "cookies": false, "type": "", "demo": "functions\/list-executions.md", @@ -19804,7 +19262,6 @@ "x-appwrite": { "method": "createExecution", "group": "executions", - "weight": 439, "cookies": false, "type": "", "demo": "functions\/create-execution.md", @@ -19853,26 +19310,26 @@ "body": { "type": "string", "description": "HTTP body of execution. Default value is empty string.", - "x-example": "<BODY>", - "default": "" + "default": "", + "x-example": "<BODY>" }, "async": { "type": "boolean", "description": "Execute code in the background. Default value is false.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "path": { "type": "string", "description": "HTTP path of execution. Path can include query params. Default value is \/", - "x-example": "<PATH>", - "default": "\/" + "default": "\/", + "x-example": "<PATH>" }, "method": { "type": "string", "description": "HTTP method of execution. Default value is POST.", - "x-example": "GET", "default": "POST", + "x-example": "GET", "enum": [ "GET", "POST", @@ -19882,14 +19339,13 @@ "OPTIONS", "HEAD" ], - "x-enum-name": "ExecutionMethod", - "x-enum-keys": [] + "x-enum-name": "ExecutionMethod" }, "headers": { "type": "object", "description": "HTTP headers of execution. Defaults to empty.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "scheduledAt": { "type": "string", @@ -19927,7 +19383,6 @@ "x-appwrite": { "method": "getExecution", "group": "executions", - "weight": 440, "cookies": false, "type": "", "demo": "functions\/get-execution.md", @@ -19997,7 +19452,6 @@ "x-appwrite": { "method": "deleteExecution", "group": "executions", - "weight": 442, "cookies": false, "type": "", "demo": "functions\/delete-execution.md", @@ -20069,7 +19523,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 447, "cookies": false, "type": "", "demo": "functions\/list-variables.md", @@ -20151,7 +19604,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 971, "cookies": false, "type": "", "demo": "functions\/create-variable.md", @@ -20209,8 +19661,8 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only functions can read them during build and runtime.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -20247,7 +19699,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 446, "cookies": false, "type": "", "demo": "functions\/get-variable.md", @@ -20316,7 +19767,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 448, "cookies": false, "type": "", "demo": "functions\/update-variable.md", @@ -20407,7 +19857,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 449, "cookies": false, "type": "", "demo": "functions\/delete-variable.md", @@ -20478,7 +19927,6 @@ "x-appwrite": { "method": "query", "group": "graphql", - "weight": 116, "cookies": false, "type": "graphql", "demo": "graphql\/query.md", @@ -20517,8 +19965,8 @@ "query": { "type": "object", "description": "The query or queries to execute.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -20555,7 +20003,6 @@ "x-appwrite": { "method": "mutation", "group": "graphql", - "weight": 115, "cookies": false, "type": "graphql", "demo": "graphql\/mutation.md", @@ -20594,8 +20041,8 @@ "query": { "type": "object", "description": "The query or queries to execute.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -20630,7 +20077,6 @@ "x-appwrite": { "method": "get", "group": "health", - "weight": 452, "cookies": false, "type": "", "demo": "health\/get.md", @@ -20682,7 +20128,6 @@ "x-appwrite": { "method": "getAntivirus", "group": "health", - "weight": 461, "cookies": false, "type": "", "demo": "health\/get-antivirus.md", @@ -20734,7 +20179,6 @@ "x-appwrite": { "method": "getCache", "group": "health", - "weight": 455, "cookies": false, "type": "", "demo": "health\/get-cache.md", @@ -20786,7 +20230,6 @@ "x-appwrite": { "method": "getCertificate", "group": "health", - "weight": 458, "cookies": false, "type": "", "demo": "health\/get-certificate.md", @@ -20847,7 +20290,6 @@ "x-appwrite": { "method": "getConsolePausing", "group": null, - "weight": 1115, "cookies": false, "type": "", "demo": "health\/get-console-pausing.md", @@ -20919,7 +20361,6 @@ "x-appwrite": { "method": "getDB", "group": "health", - "weight": 454, "cookies": false, "type": "", "demo": "health\/get-db.md", @@ -20971,7 +20412,6 @@ "x-appwrite": { "method": "getPubSub", "group": "health", - "weight": 456, "cookies": false, "type": "", "demo": "health\/get-pub-sub.md", @@ -21023,7 +20463,6 @@ "x-appwrite": { "method": "getQueueAudits", "group": "queue", - "weight": 462, "cookies": false, "type": "", "demo": "health\/get-queue-audits.md", @@ -21086,7 +20525,6 @@ "x-appwrite": { "method": "getQueueBillingProjectAggregation", "group": null, - "weight": 1111, "cookies": false, "type": "", "demo": "health\/get-queue-billing-project-aggregation.md", @@ -21149,7 +20587,6 @@ "x-appwrite": { "method": "getQueueBillingTeamAggregation", "group": null, - "weight": 1110, "cookies": false, "type": "", "demo": "health\/get-queue-billing-team-aggregation.md", @@ -21212,7 +20649,6 @@ "x-appwrite": { "method": "getQueueBuilds", "group": "queue", - "weight": 466, "cookies": false, "type": "", "demo": "health\/get-queue-builds.md", @@ -21275,7 +20711,6 @@ "x-appwrite": { "method": "getQueuePriorityBuilds", "group": null, - "weight": 1112, "cookies": false, "type": "", "demo": "health\/get-queue-priority-builds.md", @@ -21338,7 +20773,6 @@ "x-appwrite": { "method": "getQueueCertificates", "group": "queue", - "weight": 465, "cookies": false, "type": "", "demo": "health\/get-queue-certificates.md", @@ -21401,7 +20835,6 @@ "x-appwrite": { "method": "getQueueDatabases", "group": "queue", - "weight": 467, "cookies": false, "type": "", "demo": "health\/get-queue-databases.md", @@ -21473,7 +20906,6 @@ "x-appwrite": { "method": "getQueueDeletes", "group": "queue", - "weight": 468, "cookies": false, "type": "", "demo": "health\/get-queue-deletes.md", @@ -21536,7 +20968,6 @@ "x-appwrite": { "method": "getFailedJobs", "group": "queue", - "weight": 475, "cookies": false, "type": "", "demo": "health\/get-failed-jobs.md", @@ -21584,8 +21015,7 @@ "v1-messaging", "v1-migrations" ], - "x-enum-name": null, - "x-enum-keys": [], + "x-enum-name": "HealthQueueName", "in": "path" }, { @@ -21624,7 +21054,6 @@ "x-appwrite": { "method": "getQueueFunctions", "group": "queue", - "weight": 472, "cookies": false, "type": "", "demo": "health\/get-queue-functions.md", @@ -21687,7 +21116,6 @@ "x-appwrite": { "method": "getQueueLogs", "group": "queue", - "weight": 464, "cookies": false, "type": "", "demo": "health\/get-queue-logs.md", @@ -21750,7 +21178,6 @@ "x-appwrite": { "method": "getQueueMails", "group": "queue", - "weight": 469, "cookies": false, "type": "", "demo": "health\/get-queue-mails.md", @@ -21813,7 +21240,6 @@ "x-appwrite": { "method": "getQueueMessaging", "group": "queue", - "weight": 470, "cookies": false, "type": "", "demo": "health\/get-queue-messaging.md", @@ -21876,7 +21302,6 @@ "x-appwrite": { "method": "getQueueMigrations", "group": "queue", - "weight": 471, "cookies": false, "type": "", "demo": "health\/get-queue-migrations.md", @@ -21939,7 +21364,6 @@ "x-appwrite": { "method": "getQueueRegionManager", "group": null, - "weight": 1113, "cookies": false, "type": "", "demo": "health\/get-queue-region-manager.md", @@ -22002,7 +21426,6 @@ "x-appwrite": { "method": "getQueueStatsResources", "group": "queue", - "weight": 473, "cookies": false, "type": "", "demo": "health\/get-queue-stats-resources.md", @@ -22065,7 +21488,6 @@ "x-appwrite": { "method": "getQueueUsage", "group": "queue", - "weight": 474, "cookies": false, "type": "", "demo": "health\/get-queue-usage.md", @@ -22128,7 +21550,6 @@ "x-appwrite": { "method": "getQueueThreats", "group": null, - "weight": 1114, "cookies": false, "type": "", "demo": "health\/get-queue-threats.md", @@ -22191,7 +21612,6 @@ "x-appwrite": { "method": "getQueueWebhooks", "group": "queue", - "weight": 463, "cookies": false, "type": "", "demo": "health\/get-queue-webhooks.md", @@ -22254,7 +21674,6 @@ "x-appwrite": { "method": "getStorage", "group": "storage", - "weight": 460, "cookies": false, "type": "", "demo": "health\/get-storage.md", @@ -22306,7 +21725,6 @@ "x-appwrite": { "method": "getStorageLocal", "group": "storage", - "weight": 459, "cookies": false, "type": "", "demo": "health\/get-storage-local.md", @@ -22358,7 +21776,6 @@ "x-appwrite": { "method": "getTime", "group": "health", - "weight": 457, "cookies": false, "type": "", "demo": "health\/get-time.md", @@ -22410,7 +21827,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 49, "cookies": false, "type": "", "demo": "locale\/get.md", @@ -22465,7 +21881,6 @@ "x-appwrite": { "method": "listCodes", "group": null, - "weight": 50, "cookies": false, "type": "", "demo": "locale\/list-codes.md", @@ -22520,7 +21935,6 @@ "x-appwrite": { "method": "listContinents", "group": null, - "weight": 54, "cookies": false, "type": "", "demo": "locale\/list-continents.md", @@ -22575,7 +21989,6 @@ "x-appwrite": { "method": "listCountries", "group": null, - "weight": 51, "cookies": false, "type": "", "demo": "locale\/list-countries.md", @@ -22630,7 +22043,6 @@ "x-appwrite": { "method": "listCountriesEU", "group": null, - "weight": 52, "cookies": false, "type": "", "demo": "locale\/list-countries-eu.md", @@ -22685,7 +22097,6 @@ "x-appwrite": { "method": "listCountriesPhones", "group": null, - "weight": 53, "cookies": false, "type": "", "demo": "locale\/list-countries-phones.md", @@ -22740,7 +22151,6 @@ "x-appwrite": { "method": "listCurrencies", "group": null, - "weight": 55, "cookies": false, "type": "", "demo": "locale\/list-currencies.md", @@ -22795,7 +22205,6 @@ "x-appwrite": { "method": "listLanguages", "group": null, - "weight": 56, "cookies": false, "type": "", "demo": "locale\/list-languages.md", @@ -22850,7 +22259,6 @@ "x-appwrite": { "method": "listMessages", "group": "messages", - "weight": 157, "cookies": false, "type": "", "demo": "messaging\/list-messages.md", @@ -22936,7 +22344,6 @@ "x-appwrite": { "method": "createEmail", "group": "messages", - "weight": 154, "cookies": false, "type": "", "demo": "messaging\/create-email.md", @@ -22987,8 +22394,8 @@ "topics": { "type": "array", "description": "List of Topic IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -22996,8 +22403,8 @@ "users": { "type": "array", "description": "List of User IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23005,8 +22412,8 @@ "targets": { "type": "array", "description": "List of Targets IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23014,8 +22421,8 @@ "cc": { "type": "array", "description": "Array of target IDs to be added as CC.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23023,8 +22430,8 @@ "bcc": { "type": "array", "description": "Array of target IDs to be added as BCC.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23032,8 +22439,8 @@ "attachments": { "type": "array", "description": "Array of compound ID strings of bucket IDs and file IDs to be attached to the email. They should be formatted as <BUCKET_ID>:<FILE_ID>.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23041,14 +22448,14 @@ "draft": { "type": "boolean", "description": "Is message a draft", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "html": { "type": "boolean", "description": "Is content of type HTML", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "scheduledAt": { "type": "string", @@ -23094,7 +22501,6 @@ "x-appwrite": { "method": "updateEmail", "group": "messages", - "weight": 161, "cookies": false, "type": "", "demo": "messaging\/update-email.md", @@ -23252,7 +22658,6 @@ "x-appwrite": { "method": "createPush", "group": "messages", - "weight": 156, "cookies": false, "type": "", "demo": "messaging\/create-push.md", @@ -23293,20 +22698,20 @@ "title": { "type": "string", "description": "Title for push notification.", - "x-example": "<TITLE>", - "default": "" + "default": "", + "x-example": "<TITLE>" }, "body": { "type": "string", "description": "Body for push notification.", - "x-example": "<BODY>", - "default": "" + "default": "", + "x-example": "<BODY>" }, "topics": { "type": "array", "description": "List of Topic IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23314,8 +22719,8 @@ "users": { "type": "array", "description": "List of User IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23323,8 +22728,8 @@ "targets": { "type": "array", "description": "List of Targets IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23332,58 +22737,58 @@ "data": { "type": "object", "description": "Additional key-value pair data for push notification.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true }, "action": { "type": "string", "description": "Action for push notification.", - "x-example": "<ACTION>", - "default": "" + "default": "", + "x-example": "<ACTION>" }, "image": { "type": "string", "description": "Image for push notification. Must be a compound bucket ID to file ID of a jpeg, png, or bmp image in Appwrite Storage. It should be formatted as <BUCKET_ID>:<FILE_ID>.", - "x-example": "<ID1:ID2>", - "default": "" + "default": "", + "x-example": "<ID1:ID2>" }, "icon": { "type": "string", "description": "Icon for push notification. Available only for Android and Web Platform.", - "x-example": "<ICON>", - "default": "" + "default": "", + "x-example": "<ICON>" }, "sound": { "type": "string", "description": "Sound for push notification. Available only for Android and iOS Platform.", - "x-example": "<SOUND>", - "default": "" + "default": "", + "x-example": "<SOUND>" }, "color": { "type": "string", "description": "Color for push notification. Available only for Android Platform.", - "x-example": "<COLOR>", - "default": "" + "default": "", + "x-example": "<COLOR>" }, "tag": { "type": "string", "description": "Tag for push notification. Available only for Android Platform.", - "x-example": "<TAG>", - "default": "" + "default": "", + "x-example": "<TAG>" }, "badge": { "type": "integer", "description": "Badge for push notification. Available only for iOS Platform.", - "x-example": null, "default": -1, + "x-example": null, "format": "int32" }, "draft": { "type": "boolean", "description": "Is message a draft", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "scheduledAt": { "type": "string", @@ -23395,26 +22800,25 @@ "contentAvailable": { "type": "boolean", "description": "If set to true, the notification will be delivered in the background. Available only for iOS Platform.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "critical": { "type": "boolean", "description": "If set to true, the notification will be marked as critical. This requires the app to have the critical notification entitlement. Available only for iOS Platform.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "priority": { "type": "string", "description": "Set the notification priority. \"normal\" will consider device state and may not deliver notifications immediately. \"high\" will always attempt to immediately deliver the notification.", - "x-example": "normal", "default": "high", + "x-example": "normal", "enum": [ "normal", "high" ], - "x-enum-name": "MessagePriority", - "x-enum-keys": [] + "x-enum-name": "MessagePriority" } }, "required": [ @@ -23451,7 +22855,6 @@ "x-appwrite": { "method": "updatePush", "group": "messages", - "weight": 163, "cookies": false, "type": "", "demo": "messaging\/update-push.md", @@ -23534,8 +22937,8 @@ "data": { "type": "object", "description": "Additional Data for push notification.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true }, "action": { @@ -23615,7 +23018,6 @@ "high" ], "x-enum-name": "MessagePriority", - "x-enum-keys": [], "x-nullable": true } } @@ -23650,7 +23052,6 @@ "x-appwrite": { "method": "createSms", "group": "messages", - "weight": 155, "cookies": false, "type": "", "demo": "messaging\/create-sms.md", @@ -23768,8 +23169,8 @@ "topics": { "type": "array", "description": "List of Topic IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23777,8 +23178,8 @@ "users": { "type": "array", "description": "List of User IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23786,8 +23187,8 @@ "targets": { "type": "array", "description": "List of Targets IDs.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -23795,8 +23196,8 @@ "draft": { "type": "boolean", "description": "Is message a draft", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "scheduledAt": { "type": "string", @@ -23841,7 +23242,6 @@ "x-appwrite": { "method": "updateSms", "group": "messages", - "weight": 162, "cookies": false, "type": "", "demo": "messaging\/update-sms.md", @@ -24028,7 +23428,6 @@ "x-appwrite": { "method": "getMessage", "group": "messages", - "weight": 160, "cookies": false, "type": "", "demo": "messaging\/get-message.md", @@ -24085,7 +23484,6 @@ "x-appwrite": { "method": "delete", "group": "messages", - "weight": 164, "cookies": false, "type": "", "demo": "messaging\/delete.md", @@ -24147,7 +23545,6 @@ "x-appwrite": { "method": "listMessageLogs", "group": "logs", - "weight": 158, "cookies": false, "type": "", "demo": "messaging\/list-message-logs.md", @@ -24230,7 +23627,6 @@ "x-appwrite": { "method": "listTargets", "group": "messages", - "weight": 159, "cookies": false, "type": "", "demo": "messaging\/list-targets.md", @@ -24313,7 +23709,6 @@ "x-appwrite": { "method": "listProviders", "group": "providers", - "weight": 128, "cookies": false, "type": "", "demo": "messaging\/list-providers.md", @@ -24399,7 +23794,6 @@ "x-appwrite": { "method": "createApnsProvider", "group": "providers", - "weight": 127, "cookies": false, "type": "", "demo": "messaging\/create-apns-provider.md", @@ -24519,32 +23913,32 @@ "authKey": { "type": "string", "description": "APNS authentication key.", - "x-example": "<AUTH_KEY>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY>" }, "authKeyId": { "type": "string", "description": "APNS authentication key ID.", - "x-example": "<AUTH_KEY_ID>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY_ID>" }, "teamId": { "type": "string", "description": "APNS team ID.", - "x-example": "<TEAM_ID>", - "default": "" + "default": "", + "x-example": "<TEAM_ID>" }, "bundleId": { "type": "string", "description": "APNS bundle ID.", - "x-example": "<BUNDLE_ID>", - "default": "" + "default": "", + "x-example": "<BUNDLE_ID>" }, "sandbox": { "type": "boolean", "description": "Use APNS sandbox environment.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", @@ -24588,7 +23982,6 @@ "x-appwrite": { "method": "updateApnsProvider", "group": "providers", - "weight": 141, "cookies": false, "type": "", "demo": "messaging\/update-apns-provider.md", @@ -24704,8 +24097,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -24716,26 +24109,26 @@ "authKey": { "type": "string", "description": "APNS authentication key.", - "x-example": "<AUTH_KEY>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY>" }, "authKeyId": { "type": "string", "description": "APNS authentication key ID.", - "x-example": "<AUTH_KEY_ID>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY_ID>" }, "teamId": { "type": "string", "description": "APNS team ID.", - "x-example": "<TEAM_ID>", - "default": "" + "default": "", + "x-example": "<TEAM_ID>" }, "bundleId": { "type": "string", "description": "APNS bundle ID.", - "x-example": "<BUNDLE_ID>", - "default": "" + "default": "", + "x-example": "<BUNDLE_ID>" }, "sandbox": { "type": "boolean", @@ -24775,7 +24168,6 @@ "x-appwrite": { "method": "createFcmProvider", "group": "providers", - "weight": 126, "cookies": false, "type": "", "demo": "messaging\/create-fcm-provider.md", @@ -24887,8 +24279,8 @@ "serviceAccountJSON": { "type": "object", "description": "FCM service account JSON.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true }, "enabled": { @@ -24933,7 +24325,6 @@ "x-appwrite": { "method": "updateFcmProvider", "group": "providers", - "weight": 140, "cookies": false, "type": "", "demo": "messaging\/update-fcm-provider.md", @@ -25041,8 +24432,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -25053,8 +24444,8 @@ "serviceAccountJSON": { "type": "object", "description": "FCM service account JSON.", - "x-example": "{}", "default": {}, + "x-example": "{}", "x-nullable": true } } @@ -25089,7 +24480,6 @@ "x-appwrite": { "method": "createMailgunProvider", "group": "providers", - "weight": 117, "cookies": false, "type": "", "demo": "messaging\/create-mailgun-provider.md", @@ -25135,14 +24525,14 @@ "apiKey": { "type": "string", "description": "Mailgun API Key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "domain": { "type": "string", "description": "Mailgun Domain.", - "x-example": "<DOMAIN>", - "default": "" + "default": "", + "x-example": "<DOMAIN>" }, "isEuRegion": { "type": "boolean", @@ -25153,27 +24543,27 @@ "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name. Reply to name must have reply to email as well.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email. Reply to email must have reply to name as well.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "enabled": { @@ -25218,7 +24608,6 @@ "x-appwrite": { "method": "updateMailgunProvider", "group": "providers", - "weight": 131, "cookies": false, "type": "", "demo": "messaging\/update-mailgun-provider.md", @@ -25262,20 +24651,20 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "apiKey": { "type": "string", "description": "Mailgun API Key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "domain": { "type": "string", "description": "Mailgun Domain.", - "x-example": "<DOMAIN>", - "default": "" + "default": "", + "x-example": "<DOMAIN>" }, "isEuRegion": { "type": "boolean", @@ -25292,27 +24681,27 @@ "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", - "x-example": "<REPLY_TO_EMAIL>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_EMAIL>" } } } @@ -25346,7 +24735,6 @@ "x-appwrite": { "method": "createMsg91Provider", "group": "providers", - "weight": 121, "cookies": false, "type": "", "demo": "messaging\/create-msg-91-provider.md", @@ -25392,20 +24780,20 @@ "templateId": { "type": "string", "description": "Msg91 template ID", - "x-example": "<TEMPLATE_ID>", - "default": "" + "default": "", + "x-example": "<TEMPLATE_ID>" }, "senderId": { "type": "string", "description": "Msg91 sender ID.", - "x-example": "<SENDER_ID>", - "default": "" + "default": "", + "x-example": "<SENDER_ID>" }, "authKey": { "type": "string", "description": "Msg91 auth key.", - "x-example": "<AUTH_KEY>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY>" }, "enabled": { "type": "boolean", @@ -25449,7 +24837,6 @@ "x-appwrite": { "method": "updateMsg91Provider", "group": "providers", - "weight": 135, "cookies": false, "type": "", "demo": "messaging\/update-msg-91-provider.md", @@ -25493,8 +24880,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -25505,20 +24892,20 @@ "templateId": { "type": "string", "description": "Msg91 template ID.", - "x-example": "<TEMPLATE_ID>", - "default": "" + "default": "", + "x-example": "<TEMPLATE_ID>" }, "senderId": { "type": "string", "description": "Msg91 sender ID.", - "x-example": "<SENDER_ID>", - "default": "" + "default": "", + "x-example": "<SENDER_ID>" }, "authKey": { "type": "string", "description": "Msg91 auth key.", - "x-example": "<AUTH_KEY>", - "default": "" + "default": "", + "x-example": "<AUTH_KEY>" } } } @@ -25552,7 +24939,6 @@ "x-appwrite": { "method": "createResendProvider", "group": "providers", - "weight": 119, "cookies": false, "type": "", "demo": "messaging\/create-resend-provider.md", @@ -25598,33 +24984,33 @@ "apiKey": { "type": "string", "description": "Resend API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "enabled": { @@ -25669,7 +25055,6 @@ "x-appwrite": { "method": "updateResendProvider", "group": "providers", - "weight": 133, "cookies": false, "type": "", "demo": "messaging\/update-resend-provider.md", @@ -25713,8 +25098,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -25725,33 +25110,33 @@ "apiKey": { "type": "string", "description": "Resend API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", - "x-example": "<REPLY_TO_EMAIL>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_EMAIL>" } } } @@ -25785,7 +25170,6 @@ "x-appwrite": { "method": "createSendgridProvider", "group": "providers", - "weight": 118, "cookies": false, "type": "", "demo": "messaging\/create-sendgrid-provider.md", @@ -25831,33 +25215,33 @@ "apiKey": { "type": "string", "description": "Sendgrid API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "enabled": { @@ -25902,7 +25286,6 @@ "x-appwrite": { "method": "updateSendgridProvider", "group": "providers", - "weight": 132, "cookies": false, "type": "", "demo": "messaging\/update-sendgrid-provider.md", @@ -25946,8 +25329,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -25958,33 +25341,33 @@ "apiKey": { "type": "string", "description": "Sendgrid API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", - "x-example": "<REPLY_TO_EMAIL>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_EMAIL>" } } } @@ -26018,7 +25401,6 @@ "x-appwrite": { "method": "createSmtpProvider", "group": "providers", - "weight": 120, "cookies": false, "type": "", "demo": "messaging\/create-smtp-provider.md", @@ -26157,21 +25539,21 @@ "port": { "type": "integer", "description": "The default SMTP server port.", - "x-example": 1, "default": 587, + "x-example": 1, "format": "int32" }, "username": { "type": "string", "description": "Authentication username.", - "x-example": "<USERNAME>", - "default": "" + "default": "", + "x-example": "<USERNAME>" }, "password": { "type": "string", "description": "Authentication password.", - "x-example": "<PASSWORD>", - "default": "" + "default": "", + "x-example": "<PASSWORD>" }, "encryption": { "type": "string", @@ -26182,45 +25564,44 @@ "ssl", "tls" ], - "x-enum-name": "SmtpEncryption", - "x-enum-keys": [] + "x-enum-name": "SmtpEncryption" }, "autoTLS": { "type": "boolean", "description": "Enable SMTP AutoTLS feature.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "mailer": { "type": "string", "description": "The value to use for the X-Mailer header.", - "x-example": "<MAILER>", - "default": "" + "default": "", + "x-example": "<MAILER>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the reply to field for the mail. Default value is sender name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the reply to field for the mail. Default value is sender email.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "enabled": { @@ -26266,7 +25647,6 @@ "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", - "weight": 134, "cookies": false, "type": "", "demo": "messaging\/update-smtp-provider.md", @@ -26394,14 +25774,14 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "host": { "type": "string", "description": "SMTP hosts. Either a single hostname or multiple semicolon-delimited hostnames. You can also specify a different port for each host such as `smtp1.example.com:25;smtp2.example.com`. You can also specify encryption type, for example: `tls:\/\/smtp1.example.com:587;ssl:\/\/smtp2.example.com:465\"`. Hosts will be tried in order.", - "x-example": "<HOST>", - "default": "" + "default": "", + "x-example": "<HOST>" }, "port": { "type": "integer", @@ -26413,14 +25793,14 @@ "username": { "type": "string", "description": "Authentication username.", - "x-example": "<USERNAME>", - "default": "" + "default": "", + "x-example": "<USERNAME>" }, "password": { "type": "string", "description": "Authentication password.", - "x-example": "<PASSWORD>", - "default": "" + "default": "", + "x-example": "<PASSWORD>" }, "encryption": { "type": "string", @@ -26431,8 +25811,7 @@ "ssl", "tls" ], - "x-enum-name": "SmtpEncryption", - "x-enum-keys": [] + "x-enum-name": "SmtpEncryption" }, "autoTLS": { "type": "boolean", @@ -26443,33 +25822,33 @@ "mailer": { "type": "string", "description": "The value to use for the X-Mailer header.", - "x-example": "<MAILER>", - "default": "" + "default": "", + "x-example": "<MAILER>" }, "fromName": { "type": "string", "description": "Sender Name.", - "x-example": "<FROM_NAME>", - "default": "" + "default": "", + "x-example": "<FROM_NAME>" }, "fromEmail": { "type": "string", "description": "Sender email address.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "replyToName": { "type": "string", "description": "Name set in the Reply To field for the mail. Default value is Sender Name.", - "x-example": "<REPLY_TO_NAME>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_NAME>" }, "replyToEmail": { "type": "string", "description": "Email set in the Reply To field for the mail. Default value is Sender Email.", - "x-example": "<REPLY_TO_EMAIL>", - "default": "" + "default": "", + "x-example": "<REPLY_TO_EMAIL>" }, "enabled": { "type": "boolean", @@ -26509,7 +25888,6 @@ "x-appwrite": { "method": "createTelesignProvider", "group": "providers", - "weight": 122, "cookies": false, "type": "", "demo": "messaging\/create-telesign-provider.md", @@ -26555,21 +25933,21 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "customerId": { "type": "string", "description": "Telesign customer ID.", - "x-example": "<CUSTOMER_ID>", - "default": "" + "default": "", + "x-example": "<CUSTOMER_ID>" }, "apiKey": { "type": "string", "description": "Telesign API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "enabled": { "type": "boolean", @@ -26613,7 +25991,6 @@ "x-appwrite": { "method": "updateTelesignProvider", "group": "providers", - "weight": 136, "cookies": false, "type": "", "demo": "messaging\/update-telesign-provider.md", @@ -26657,8 +26034,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -26669,20 +26046,20 @@ "customerId": { "type": "string", "description": "Telesign customer ID.", - "x-example": "<CUSTOMER_ID>", - "default": "" + "default": "", + "x-example": "<CUSTOMER_ID>" }, "apiKey": { "type": "string", "description": "Telesign API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "from": { "type": "string", "description": "Sender number.", - "x-example": "<FROM>", - "default": "" + "default": "", + "x-example": "<FROM>" } } } @@ -26716,7 +26093,6 @@ "x-appwrite": { "method": "createTextmagicProvider", "group": "providers", - "weight": 123, "cookies": false, "type": "", "demo": "messaging\/create-textmagic-provider.md", @@ -26762,21 +26138,21 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "username": { "type": "string", "description": "Textmagic username.", - "x-example": "<USERNAME>", - "default": "" + "default": "", + "x-example": "<USERNAME>" }, "apiKey": { "type": "string", "description": "Textmagic apiKey.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "enabled": { "type": "boolean", @@ -26820,7 +26196,6 @@ "x-appwrite": { "method": "updateTextmagicProvider", "group": "providers", - "weight": 137, "cookies": false, "type": "", "demo": "messaging\/update-textmagic-provider.md", @@ -26864,8 +26239,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -26876,20 +26251,20 @@ "username": { "type": "string", "description": "Textmagic username.", - "x-example": "<USERNAME>", - "default": "" + "default": "", + "x-example": "<USERNAME>" }, "apiKey": { "type": "string", "description": "Textmagic apiKey.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "from": { "type": "string", "description": "Sender number.", - "x-example": "<FROM>", - "default": "" + "default": "", + "x-example": "<FROM>" } } } @@ -26923,7 +26298,6 @@ "x-appwrite": { "method": "createTwilioProvider", "group": "providers", - "weight": 124, "cookies": false, "type": "", "demo": "messaging\/create-twilio-provider.md", @@ -26969,21 +26343,21 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "accountSid": { "type": "string", "description": "Twilio account secret ID.", - "x-example": "<ACCOUNT_SID>", - "default": "" + "default": "", + "x-example": "<ACCOUNT_SID>" }, "authToken": { "type": "string", "description": "Twilio authentication token.", - "x-example": "<AUTH_TOKEN>", - "default": "" + "default": "", + "x-example": "<AUTH_TOKEN>" }, "enabled": { "type": "boolean", @@ -27027,7 +26401,6 @@ "x-appwrite": { "method": "updateTwilioProvider", "group": "providers", - "weight": 138, "cookies": false, "type": "", "demo": "messaging\/update-twilio-provider.md", @@ -27071,8 +26444,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -27083,20 +26456,20 @@ "accountSid": { "type": "string", "description": "Twilio account secret ID.", - "x-example": "<ACCOUNT_SID>", - "default": "" + "default": "", + "x-example": "<ACCOUNT_SID>" }, "authToken": { "type": "string", "description": "Twilio authentication token.", - "x-example": "<AUTH_TOKEN>", - "default": "" + "default": "", + "x-example": "<AUTH_TOKEN>" }, "from": { "type": "string", "description": "Sender number.", - "x-example": "<FROM>", - "default": "" + "default": "", + "x-example": "<FROM>" } } } @@ -27130,7 +26503,6 @@ "x-appwrite": { "method": "createVonageProvider", "group": "providers", - "weight": 125, "cookies": false, "type": "", "demo": "messaging\/create-vonage-provider.md", @@ -27176,21 +26548,21 @@ "from": { "type": "string", "description": "Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "apiKey": { "type": "string", "description": "Vonage API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "apiSecret": { "type": "string", "description": "Vonage API secret.", - "x-example": "<API_SECRET>", - "default": "" + "default": "", + "x-example": "<API_SECRET>" }, "enabled": { "type": "boolean", @@ -27234,7 +26606,6 @@ "x-appwrite": { "method": "updateVonageProvider", "group": "providers", - "weight": 139, "cookies": false, "type": "", "demo": "messaging\/update-vonage-provider.md", @@ -27278,8 +26649,8 @@ "name": { "type": "string", "description": "Provider name.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" }, "enabled": { "type": "boolean", @@ -27290,20 +26661,20 @@ "apiKey": { "type": "string", "description": "Vonage API key.", - "x-example": "<API_KEY>", - "default": "" + "default": "", + "x-example": "<API_KEY>" }, "apiSecret": { "type": "string", "description": "Vonage API secret.", - "x-example": "<API_SECRET>", - "default": "" + "default": "", + "x-example": "<API_SECRET>" }, "from": { "type": "string", "description": "Sender number.", - "x-example": "<FROM>", - "default": "" + "default": "", + "x-example": "<FROM>" } } } @@ -27335,7 +26706,6 @@ "x-appwrite": { "method": "getProvider", "group": "providers", - "weight": 130, "cookies": false, "type": "", "demo": "messaging\/get-provider.md", @@ -27392,7 +26762,6 @@ "x-appwrite": { "method": "deleteProvider", "group": "providers", - "weight": 142, "cookies": false, "type": "", "demo": "messaging\/delete-provider.md", @@ -27454,7 +26823,6 @@ "x-appwrite": { "method": "listProviderLogs", "group": "providers", - "weight": 129, "cookies": false, "type": "", "demo": "messaging\/list-provider-logs.md", @@ -27537,7 +26905,6 @@ "x-appwrite": { "method": "listSubscriberLogs", "group": "subscribers", - "weight": 151, "cookies": false, "type": "", "demo": "messaging\/list-subscriber-logs.md", @@ -27620,7 +26987,6 @@ "x-appwrite": { "method": "listTopics", "group": "topics", - "weight": 144, "cookies": false, "type": "", "demo": "messaging\/list-topics.md", @@ -27704,7 +27070,6 @@ "x-appwrite": { "method": "createTopic", "group": "topics", - "weight": 143, "cookies": false, "type": "", "demo": "messaging\/create-topic.md", @@ -27750,10 +27115,10 @@ "subscribe": { "type": "array", "description": "An array of role strings with subscribe permission. By default all users are granted with any subscribe permission. [learn more about roles](https:\/\/appwrite.io\/docs\/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.", - "x-example": "[\"any\"]", "default": [ "users" ], + "x-example": "[\"any\"]", "items": { "type": "string" } @@ -27792,7 +27157,6 @@ "x-appwrite": { "method": "getTopic", "group": "topics", - "weight": 146, "cookies": false, "type": "", "demo": "messaging\/get-topic.md", @@ -27854,7 +27218,6 @@ "x-appwrite": { "method": "updateTopic", "group": "topics", - "weight": 147, "cookies": false, "type": "", "demo": "messaging\/update-topic.md", @@ -27935,7 +27298,6 @@ "x-appwrite": { "method": "deleteTopic", "group": "topics", - "weight": 148, "cookies": false, "type": "", "demo": "messaging\/delete-topic.md", @@ -27997,7 +27359,6 @@ "x-appwrite": { "method": "listTopicLogs", "group": "topics", - "weight": 145, "cookies": false, "type": "", "demo": "messaging\/list-topic-logs.md", @@ -28080,7 +27441,6 @@ "x-appwrite": { "method": "listSubscribers", "group": "subscribers", - "weight": 150, "cookies": false, "type": "", "demo": "messaging\/list-subscribers.md", @@ -28148,8 +27508,711 @@ ] }, "post": { - "summary": "Create subscriber", - "operationId": "messagingCreateSubscriber", + "summary": "Create subscriber", + "operationId": "messagingCreateSubscriber", + "consumes": [ + "application\/json" + ], + "produces": [ + "application\/json" + ], + "tags": [ + "messaging" + ], + "description": "Create a new subscriber.", + "responses": { + "201": { + "description": "Subscriber", + "schema": { + "$ref": "#\/definitions\/subscriber" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "createSubscriber", + "group": "subscribers", + "cookies": false, + "type": "", + "demo": "messaging\/create-subscriber.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "subscribers.write", + "platforms": [ + "server", + "client", + "console" + ], + "packaging": false, + "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/create-subscriber.md", + "auth": { + "Project": [], + "JWT": [] + } + }, + "security": [ + { + "Project": [], + "JWT": [], + "Session": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "topicId", + "description": "Topic ID. The topic ID to subscribe to.", + "required": true, + "type": "string", + "x-example": "<TOPIC_ID>", + "in": "path" + }, + { + "name": "payload", + "in": "body", + "schema": { + "type": "object", + "properties": { + "subscriberId": { + "type": "string", + "description": "Subscriber ID. Choose a custom Subscriber ID or a new Subscriber ID.", + "x-example": "<SUBSCRIBER_ID>" + }, + "targetId": { + "type": "string", + "description": "Target ID. The target ID to link to the specified Topic ID.", + "x-example": "<TARGET_ID>" + } + }, + "required": [ + "subscriberId", + "targetId" + ] + } + } + ] + } + }, + "\/messaging\/topics\/{topicId}\/subscribers\/{subscriberId}": { + "get": { + "summary": "Get subscriber", + "operationId": "messagingGetSubscriber", + "consumes": [], + "produces": [ + "application\/json" + ], + "tags": [ + "messaging" + ], + "description": "Get a subscriber by its unique ID.\n", + "responses": { + "200": { + "description": "Subscriber", + "schema": { + "$ref": "#\/definitions\/subscriber" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getSubscriber", + "group": "subscribers", + "cookies": false, + "type": "", + "demo": "messaging\/get-subscriber.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "subscribers.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/get-subscriber.md", + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "topicId", + "description": "Topic ID. The topic ID subscribed to.", + "required": true, + "type": "string", + "x-example": "<TOPIC_ID>", + "in": "path" + }, + { + "name": "subscriberId", + "description": "Subscriber ID.", + "required": true, + "type": "string", + "x-example": "<SUBSCRIBER_ID>", + "in": "path" + } + ] + }, + "delete": { + "summary": "Delete subscriber", + "operationId": "messagingDeleteSubscriber", + "consumes": [ + "application\/json" + ], + "produces": [], + "tags": [ + "messaging" + ], + "description": "Delete a subscriber by its unique ID.", + "responses": { + "204": { + "description": "No content" + } + }, + "deprecated": false, + "x-appwrite": { + "method": "deleteSubscriber", + "group": "subscribers", + "cookies": false, + "type": "", + "demo": "messaging\/delete-subscriber.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "subscribers.write", + "platforms": [ + "server", + "client", + "console" + ], + "packaging": false, + "public": true, + "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/delete-subscriber.md", + "auth": { + "Project": [], + "JWT": [] + } + }, + "security": [ + { + "Project": [], + "JWT": [], + "Session": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "topicId", + "description": "Topic ID. The topic ID subscribed to.", + "required": true, + "type": "string", + "x-example": "<TOPIC_ID>", + "in": "path" + }, + { + "name": "subscriberId", + "description": "Subscriber ID.", + "required": true, + "type": "string", + "x-example": "<SUBSCRIBER_ID>", + "in": "path" + } + ] + } + }, + "\/organization\/keys": { + "get": { + "summary": "List organization keys", + "operationId": "organizationListKeys", + "consumes": [], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Get a list of all API keys from the current organization.", + "responses": { + "200": { + "description": "API Keys List", + "schema": { + "$ref": "#\/definitions\/keyList" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "listKeys", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/list-keys.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "queries", + "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: expire, accessedAt, name, scopes", + "required": false, + "type": "array", + "collectionFormat": "multi", + "items": { + "type": "string" + }, + "default": [], + "in": "query" + }, + { + "name": "total", + "description": "When set to false, the total count returned will be 0 and will not be calculated.", + "required": false, + "type": "boolean", + "x-example": false, + "default": true, + "in": "query" + } + ] + }, + "post": { + "summary": "Create organization key", + "operationId": "organizationCreateKey", + "consumes": [ + "application\/json" + ], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Create a new organization API key.", + "responses": { + "201": { + "description": "Key", + "schema": { + "$ref": "#\/definitions\/key" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "createKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/create-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "payload", + "in": "body", + "schema": { + "type": "object", + "properties": { + "keyId": { + "type": "string", + "description": "Key ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", + "x-example": "<KEY_ID>" + }, + "name": { + "type": "string", + "description": "Key name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "scopes": { + "type": "array", + "description": "Key scopes list. Maximum of 100 scopes are allowed.", + "x-example": null, + "items": { + "type": "string", + "enum": [ + "projects.read", + "projects.write", + "devKeys.read", + "devKeys.write", + "organization.keys.read", + "organization.keys.write", + "domains.read", + "domains.write", + "keys.read", + "keys.write" + ], + "x-enum-name": "OrganizationKeyScopes" + } + }, + "expire": { + "type": "string", + "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", + "x-example": "2020-10-15T06:38:00.000+00:00", + "format": "datetime", + "x-nullable": true + } + }, + "required": [ + "keyId", + "name", + "scopes" + ] + } + } + ] + } + }, + "\/organization\/keys\/{keyId}": { + "get": { + "summary": "Get organization key", + "operationId": "organizationGetKey", + "consumes": [], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Get a key by its unique ID. This endpoint returns details about a specific API key in your organization including its scopes.", + "responses": { + "200": { + "description": "Key", + "schema": { + "$ref": "#\/definitions\/key" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/get-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "type": "string", + "x-example": "<KEY_ID>", + "in": "path" + } + ] + }, + "put": { + "summary": "Update organization key", + "operationId": "organizationUpdateKey", + "consumes": [ + "application\/json" + ], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Update a key by its unique ID. Use this endpoint to update the name, scopes, or expiration time of an API key.", + "responses": { + "200": { + "description": "Key", + "schema": { + "$ref": "#\/definitions\/key" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "updateKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/update-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "type": "string", + "x-example": "<KEY_ID>", + "in": "path" + }, + { + "name": "payload", + "in": "body", + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Key name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "scopes": { + "type": "array", + "description": "Key scopes list. Maximum of 100 scopes are allowed.", + "x-example": null, + "items": { + "type": "string", + "enum": [ + "projects.read", + "projects.write", + "devKeys.read", + "devKeys.write", + "organization.keys.read", + "organization.keys.write", + "domains.read", + "domains.write", + "keys.read", + "keys.write" + ], + "x-enum-name": "OrganizationKeyScopes" + } + }, + "expire": { + "type": "string", + "description": "Expiration time in [ISO 8601](https:\/\/www.iso.org\/iso-8601-date-and-time-format.html) format. Use null for unlimited expiration.", + "x-example": "2020-10-15T06:38:00.000+00:00", + "format": "datetime", + "x-nullable": true + } + }, + "required": [ + "name", + "scopes" + ] + } + } + ] + }, + "delete": { + "summary": "Delete organization key", + "operationId": "organizationDeleteKey", + "consumes": [ + "application\/json" + ], + "produces": [], + "tags": [ + "organization" + ], + "description": "Delete a key by its unique ID. Once deleted, the key can no longer be used to authenticate API calls.", + "responses": { + "204": { + "description": "No content" + } + }, + "deprecated": false, + "x-appwrite": { + "method": "deleteKey", + "group": "keys", + "cookies": false, + "type": "", + "demo": "organization\/delete-key.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "organization.keys.write", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "keyId", + "description": "Key unique ID.", + "required": true, + "type": "string", + "x-example": "<KEY_ID>", + "in": "path" + } + ] + } + }, + "\/organization\/projects": { + "get": { + "summary": "List organization projects", + "operationId": "organizationListProjects", + "consumes": [], + "produces": [ + "application\/json" + ], + "tags": [ + "organization" + ], + "description": "Get a list of all projects. You can use the query params to filter your results.", + "responses": { + "200": { + "description": "Projects List", + "schema": { + "$ref": "#\/definitions\/projectList" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "listProjects", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/list-projects.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "queries", + "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, teamId, labels, search", + "required": false, + "type": "array", + "collectionFormat": "multi", + "items": { + "type": "string" + }, + "default": [], + "in": "query" + }, + { + "name": "search", + "description": "Search term to filter your list results. Max length: 256 chars.", + "required": false, + "type": "string", + "x-example": "<SEARCH>", + "default": "", + "in": "query" + }, + { + "name": "total", + "description": "When set to false, the total count returned will be 0 and will not be calculated.", + "required": false, + "type": "boolean", + "x-example": false, + "default": true, + "in": "query" + } + ] + }, + "post": { + "summary": "Create organization project", + "operationId": "organizationCreateProject", "consumes": [ "application\/json" ], @@ -28157,124 +28220,181 @@ "application\/json" ], "tags": [ - "messaging" + "organization" ], - "description": "Create a new subscriber.", + "description": "Create a new project.", "responses": { "201": { - "description": "Subscriber", + "description": "Project", "schema": { - "$ref": "#\/definitions\/subscriber" + "$ref": "#\/definitions\/project" } } }, "deprecated": false, "x-appwrite": { - "method": "createSubscriber", - "group": "subscribers", - "weight": 149, + "method": "createProject", + "group": "projects", "cookies": false, "type": "", - "demo": "messaging\/create-subscriber.md", + "demo": "organization\/create-project.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "subscribers.write", + "scope": "projects.write", "platforms": [ - "server", - "client", - "console" + "console", + "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/create-subscriber.md", "auth": { "Project": [], - "JWT": [] + "Key": [] } }, "security": [ { "Project": [], - "JWT": [], - "Session": [], "Key": [] } ], "parameters": [ - { - "name": "topicId", - "description": "Topic ID. The topic ID to subscribe to.", - "required": true, - "type": "string", - "x-example": "<TOPIC_ID>", - "in": "path" - }, { "name": "payload", "in": "body", "schema": { "type": "object", "properties": { - "subscriberId": { + "projectId": { "type": "string", - "description": "Subscriber ID. Choose a custom Subscriber ID or a new Subscriber ID.", - "x-example": "<SUBSCRIBER_ID>" + "description": "Unique Id. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, and hyphen. Can't start with a special char. Max length is 36 chars.", + "x-example": null }, - "targetId": { + "name": { "type": "string", - "description": "Target ID. The target ID to link to the specified Topic ID.", - "x-example": "<TARGET_ID>" + "description": "Project name. Max length: 128 chars.", + "x-example": "<NAME>" + }, + "region": { + "type": "string", + "description": "Project Region.", + "x-example": "fra", + "enum": [ + "fra", + "nyc", + "syd", + "sfo", + "sgp", + "tor" + ], + "x-enum-name": "Region" } }, "required": [ - "subscriberId", - "targetId" + "projectId", + "name" ] } } ] } }, - "\/messaging\/topics\/{topicId}\/subscribers\/{subscriberId}": { + "\/organization\/projects\/{projectId}": { "get": { - "summary": "Get subscriber", - "operationId": "messagingGetSubscriber", + "summary": "Get organization project", + "operationId": "organizationGetProject", "consumes": [], + "produces": [], + "tags": [ + "organization" + ], + "description": "Get a project.", + "responses": { + "200": { + "description": "Project", + "schema": { + "$ref": "#\/definitions\/project" + } + } + }, + "deprecated": false, + "x-appwrite": { + "method": "getProject", + "group": "projects", + "cookies": false, + "type": "", + "demo": "organization\/get-project.md", + "rate-limit": 0, + "rate-time": 3600, + "rate-key": "url:{url},ip:{ip}", + "scope": "projects.read", + "platforms": [ + "console", + "server" + ], + "packaging": false, + "public": true, + "auth": { + "Project": [], + "Key": [] + } + }, + "security": [ + { + "Project": [], + "Key": [] + } + ], + "parameters": [ + { + "name": "projectId", + "description": "Project unique ID.", + "required": true, + "type": "string", + "x-example": "<PROJECT_ID>", + "in": "path" + } + ] + }, + "patch": { + "summary": "Update organization project", + "operationId": "organizationUpdateProject", + "consumes": [ + "application\/json" + ], "produces": [ "application\/json" ], "tags": [ - "messaging" + "organization" ], - "description": "Get a subscriber by its unique ID.\n", + "description": "Update a project by its unique ID.", "responses": { "200": { - "description": "Subscriber", + "description": "Project", "schema": { - "$ref": "#\/definitions\/subscriber" + "$ref": "#\/definitions\/project" } } }, "deprecated": false, "x-appwrite": { - "method": "getSubscriber", - "group": "subscribers", - "weight": 152, + "method": "updateProject", + "group": "projects", "cookies": false, "type": "", - "demo": "messaging\/get-subscriber.md", + "demo": "organization\/update-project.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "subscribers.read", + "scope": "projects.write", "platforms": [ "console", "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/get-subscriber.md", "auth": { "Project": [], "Key": [] @@ -28288,34 +28408,43 @@ ], "parameters": [ { - "name": "topicId", - "description": "Topic ID. The topic ID subscribed to.", + "name": "projectId", + "description": "Project unique ID.", "required": true, "type": "string", - "x-example": "<TOPIC_ID>", + "x-example": "<PROJECT_ID>", "in": "path" }, { - "name": "subscriberId", - "description": "Subscriber ID.", - "required": true, - "type": "string", - "x-example": "<SUBSCRIBER_ID>", - "in": "path" + "name": "payload", + "in": "body", + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Project name. Max length: 128 chars.", + "x-example": "<NAME>" + } + }, + "required": [ + "name" + ] + } } ] }, "delete": { - "summary": "Delete subscriber", - "operationId": "messagingDeleteSubscriber", + "summary": "Delete organization project", + "operationId": "organizationDeleteProject", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "messaging" + "organization" ], - "description": "Delete a subscriber by its unique ID.", + "description": "Delete a project by its unique ID.", "responses": { "204": { "description": "No content" @@ -28323,52 +28452,39 @@ }, "deprecated": false, "x-appwrite": { - "method": "deleteSubscriber", - "group": "subscribers", - "weight": 153, + "method": "deleteProject", + "group": "projects", "cookies": false, "type": "", - "demo": "messaging\/delete-subscriber.md", + "demo": "organization\/delete-project.md", "rate-limit": 0, "rate-time": 3600, "rate-key": "url:{url},ip:{ip}", - "scope": "subscribers.write", + "scope": "projects.write", "platforms": [ - "server", - "client", - "console" + "console", + "server" ], "packaging": false, "public": true, - "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/messaging\/delete-subscriber.md", "auth": { "Project": [], - "JWT": [] + "Key": [] } }, "security": [ { "Project": [], - "JWT": [], - "Session": [], "Key": [] } ], "parameters": [ { - "name": "topicId", - "description": "Topic ID. The topic ID subscribed to.", + "name": "projectId", + "description": "Project unique ID.", "required": true, "type": "string", - "x-example": "<TOPIC_ID>", - "in": "path" - }, - { - "name": "subscriberId", - "description": "Subscriber ID.", - "required": true, - "type": "string", - "x-example": "<SUBSCRIBER_ID>", + "x-example": "<PROJECT_ID>", "in": "path" } ] @@ -28398,7 +28514,6 @@ "x-appwrite": { "method": "list", "group": "presences", - "weight": 419, "cookies": false, "type": "", "demo": "presences\/list.md", @@ -28486,7 +28601,6 @@ "x-appwrite": { "method": "get", "group": "presences", - "weight": 418, "cookies": false, "type": "", "demo": "presences\/get.md", @@ -28551,7 +28665,6 @@ "x-appwrite": { "method": "upsert", "group": "presences", - "weight": 416, "cookies": false, "type": "", "demo": "presences\/upsert.md", @@ -28651,8 +28764,8 @@ "metadata": { "type": "object", "description": "Presence metadata object.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" } }, "required": [ @@ -28687,7 +28800,6 @@ "x-appwrite": { "method": "update", "group": "presences", - "weight": 420, "cookies": false, "type": "", "demo": "presences\/update.md", @@ -28779,8 +28891,8 @@ "metadata": { "type": "object", "description": "Presence metadata object.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" }, "permissions": { "type": "array", @@ -28793,8 +28905,8 @@ "purge": { "type": "boolean", "description": "When true, purge cached responses used by list presences endpoint.", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -28821,7 +28933,6 @@ "x-appwrite": { "method": "delete", "group": "presences", - "weight": 421, "cookies": false, "type": "", "demo": "presences\/delete.md", @@ -28884,7 +28995,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 1161, "cookies": false, "type": "", "demo": "project\/get.md", @@ -28930,7 +29040,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 1160, "cookies": false, "type": "", "demo": "project\/delete.md", @@ -28983,7 +29092,6 @@ "x-appwrite": { "method": "updateAuthMethod", "group": null, - "weight": 1210, "cookies": false, "type": "", "demo": "project\/update-auth-method.md", @@ -29025,7 +29133,6 @@ "phone" ], "x-enum-name": "ProjectAuthMethodId", - "x-enum-keys": [], "in": "path" }, { @@ -29072,7 +29179,6 @@ "x-appwrite": { "method": "listKeys", "group": "keys", - "weight": 1177, "cookies": false, "type": "", "demo": "project\/list-keys.md", @@ -29146,7 +29252,6 @@ "x-appwrite": { "method": "createKey", "group": "keys", - "weight": 1175, "cookies": false, "type": "", "demo": "project\/create-key.md", @@ -29290,8 +29395,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "expire": { @@ -29338,7 +29442,6 @@ "x-appwrite": { "method": "createEphemeralKey", "group": "keys", - "weight": 1176, "cookies": false, "type": "", "demo": "project\/create-ephemeral-key.md", @@ -29472,8 +29575,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "duration": { @@ -29516,7 +29618,6 @@ "x-appwrite": { "method": "getKey", "group": "keys", - "weight": 1178, "cookies": false, "type": "", "demo": "project\/get-key.md", @@ -29577,7 +29678,6 @@ "x-appwrite": { "method": "updateKey", "group": "keys", - "weight": 1180, "cookies": false, "type": "", "demo": "project\/update-key.md", @@ -29724,8 +29824,7 @@ "events.read", "usage.read" ], - "x-enum-name": "ProjectKeyScopes", - "x-enum-keys": [] + "x-enum-name": "ProjectKeyScopes" } }, "expire": { @@ -29764,7 +29863,6 @@ "x-appwrite": { "method": "deleteKey", "group": "keys", - "weight": 1179, "cookies": false, "type": "", "demo": "project\/delete-key.md", @@ -29827,7 +29925,6 @@ "x-appwrite": { "method": "updateLabels", "group": null, - "weight": 1162, "cookies": false, "type": "", "demo": "project\/update-labels.md", @@ -29900,7 +29997,6 @@ "x-appwrite": { "method": "listMockPhones", "group": "mocks", - "weight": 1195, "cookies": false, "type": "", "demo": "project\/list-mock-phones.md", @@ -29974,7 +30070,6 @@ "x-appwrite": { "method": "createMockPhone", "group": "mocks", - "weight": 1194, "cookies": false, "type": "", "demo": "project\/create-mock-phone.md", @@ -30051,7 +30146,6 @@ "x-appwrite": { "method": "getMockPhone", "group": "mocks", - "weight": 1196, "cookies": false, "type": "", "demo": "project\/get-mock-phone.md", @@ -30113,7 +30207,6 @@ "x-appwrite": { "method": "updateMockPhone", "group": "mocks", - "weight": 1197, "cookies": false, "type": "", "demo": "project\/update-mock-phone.md", @@ -30187,7 +30280,6 @@ "x-appwrite": { "method": "deleteMockPhone", "group": "mocks", - "weight": 1198, "cookies": false, "type": "", "demo": "project\/delete-mock-phone.md", @@ -30249,7 +30341,6 @@ "x-appwrite": { "method": "listOAuth2Providers", "group": "oauth2", - "weight": 1211, "cookies": false, "type": "", "demo": "project\/list-o-auth-2-providers.md", @@ -30325,7 +30416,6 @@ "x-appwrite": { "method": "updateOAuth2Amazon", "group": "oauth2", - "weight": 1238, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-amazon.md", @@ -30407,7 +30497,6 @@ "x-appwrite": { "method": "updateOAuth2Apple", "group": "oauth2", - "weight": 1253, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-apple.md", @@ -30501,7 +30590,6 @@ "x-appwrite": { "method": "updateOAuth2Auth0", "group": "oauth2", - "weight": 1247, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-auth-0.md", @@ -30589,7 +30677,6 @@ "x-appwrite": { "method": "updateOAuth2Authentik", "group": "oauth2", - "weight": 1246, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-authentik.md", @@ -30677,7 +30764,6 @@ "x-appwrite": { "method": "updateOAuth2Autodesk", "group": "oauth2", - "weight": 1221, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-autodesk.md", @@ -30759,7 +30845,6 @@ "x-appwrite": { "method": "updateOAuth2Bitbucket", "group": "oauth2", - "weight": 1218, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-bitbucket.md", @@ -30841,7 +30926,6 @@ "x-appwrite": { "method": "updateOAuth2Bitly", "group": "oauth2", - "weight": 1219, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-bitly.md", @@ -30923,7 +31007,6 @@ "x-appwrite": { "method": "updateOAuth2Box", "group": "oauth2", - "weight": 1220, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-box.md", @@ -31005,7 +31088,6 @@ "x-appwrite": { "method": "updateOAuth2Dailymotion", "group": "oauth2", - "weight": 1217, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-dailymotion.md", @@ -31087,7 +31169,6 @@ "x-appwrite": { "method": "updateOAuth2Discord", "group": "oauth2", - "weight": 1214, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-discord.md", @@ -31169,7 +31250,6 @@ "x-appwrite": { "method": "updateOAuth2Disqus", "group": "oauth2", - "weight": 1237, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-disqus.md", @@ -31251,7 +31331,6 @@ "x-appwrite": { "method": "updateOAuth2Dropbox", "group": "oauth2", - "weight": 1216, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-dropbox.md", @@ -31333,7 +31412,6 @@ "x-appwrite": { "method": "updateOAuth2Etsy", "group": "oauth2", - "weight": 1239, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-etsy.md", @@ -31415,7 +31493,6 @@ "x-appwrite": { "method": "updateOAuth2Facebook", "group": "oauth2", - "weight": 1240, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-facebook.md", @@ -31497,7 +31574,6 @@ "x-appwrite": { "method": "updateOAuth2Figma", "group": "oauth2", - "weight": 1215, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-figma.md", @@ -31579,7 +31655,6 @@ "x-appwrite": { "method": "updateOAuth2FusionAuth", "group": "oauth2", - "weight": 1248, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-fusion-auth.md", @@ -31667,7 +31742,6 @@ "x-appwrite": { "method": "updateOAuth2GitHub", "group": "oauth2", - "weight": 1213, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-git-hub.md", @@ -31749,7 +31823,6 @@ "x-appwrite": { "method": "updateOAuth2Gitlab", "group": "oauth2", - "weight": 1245, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-gitlab.md", @@ -31838,7 +31911,6 @@ "x-appwrite": { "method": "updateOAuth2Google", "group": "oauth2", - "weight": 1222, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-google.md", @@ -31894,8 +31966,7 @@ "consent", "select_account" ], - "x-enum-name": "ProjectOAuth2GooglePrompt", - "x-enum-keys": [] + "x-enum-name": "ProjectOAuth2GooglePrompt" } }, "enabled": { @@ -31936,7 +32007,6 @@ "x-appwrite": { "method": "updateOAuth2Keycloak", "group": "oauth2", - "weight": 1249, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-keycloak.md", @@ -32030,7 +32100,6 @@ "x-appwrite": { "method": "updateOAuth2Kick", "group": "oauth2", - "weight": 1252, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-kick.md", @@ -32112,7 +32181,6 @@ "x-appwrite": { "method": "updateOAuth2Linkedin", "group": "oauth2", - "weight": 1236, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-linkedin.md", @@ -32194,7 +32262,6 @@ "x-appwrite": { "method": "updateOAuth2Microsoft", "group": "oauth2", - "weight": 1254, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-microsoft.md", @@ -32282,7 +32349,6 @@ "x-appwrite": { "method": "updateOAuth2Notion", "group": "oauth2", - "weight": 1233, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-notion.md", @@ -32364,7 +32430,6 @@ "x-appwrite": { "method": "updateOAuth2Oidc", "group": "oauth2", - "weight": 1250, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-oidc.md", @@ -32474,7 +32539,6 @@ "x-appwrite": { "method": "updateOAuth2Okta", "group": "oauth2", - "weight": 1251, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-okta.md", @@ -32568,7 +32632,6 @@ "x-appwrite": { "method": "updateOAuth2Paypal", "group": "oauth2", - "weight": 1243, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-paypal.md", @@ -32650,7 +32713,6 @@ "x-appwrite": { "method": "updateOAuth2PaypalSandbox", "group": "oauth2", - "weight": 1244, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-paypal-sandbox.md", @@ -32732,7 +32794,6 @@ "x-appwrite": { "method": "updateOAuth2Podio", "group": "oauth2", - "weight": 1232, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-podio.md", @@ -32814,7 +32875,6 @@ "x-appwrite": { "method": "updateOAuth2Salesforce", "group": "oauth2", - "weight": 1234, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-salesforce.md", @@ -32896,7 +32956,6 @@ "x-appwrite": { "method": "updateOAuth2Slack", "group": "oauth2", - "weight": 1231, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-slack.md", @@ -32978,7 +33037,6 @@ "x-appwrite": { "method": "updateOAuth2Spotify", "group": "oauth2", - "weight": 1230, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-spotify.md", @@ -33060,7 +33118,6 @@ "x-appwrite": { "method": "updateOAuth2Stripe", "group": "oauth2", - "weight": 1229, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-stripe.md", @@ -33142,7 +33199,6 @@ "x-appwrite": { "method": "updateOAuth2Tradeshift", "group": "oauth2", - "weight": 1241, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-tradeshift.md", @@ -33224,7 +33280,6 @@ "x-appwrite": { "method": "updateOAuth2TradeshiftSandbox", "group": "oauth2", - "weight": 1242, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-tradeshift-sandbox.md", @@ -33306,7 +33361,6 @@ "x-appwrite": { "method": "updateOAuth2Twitch", "group": "oauth2", - "weight": 1228, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-twitch.md", @@ -33388,7 +33442,6 @@ "x-appwrite": { "method": "updateOAuth2WordPress", "group": "oauth2", - "weight": 1227, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-word-press.md", @@ -33470,7 +33523,6 @@ "x-appwrite": { "method": "updateOAuth2X", "group": "oauth2", - "weight": 1226, "cookies": false, "type": "", "demo": "project\/update-o-auth-2x.md", @@ -33552,7 +33604,6 @@ "x-appwrite": { "method": "updateOAuth2Yahoo", "group": "oauth2", - "weight": 1235, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-yahoo.md", @@ -33634,7 +33685,6 @@ "x-appwrite": { "method": "updateOAuth2Yandex", "group": "oauth2", - "weight": 1225, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-yandex.md", @@ -33716,7 +33766,6 @@ "x-appwrite": { "method": "updateOAuth2Zoho", "group": "oauth2", - "weight": 1224, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-zoho.md", @@ -33798,7 +33847,6 @@ "x-appwrite": { "method": "updateOAuth2Zoom", "group": "oauth2", - "weight": 1223, "cookies": false, "type": "", "demo": "project\/update-o-auth-2-zoom.md", @@ -34046,7 +34094,6 @@ "x-appwrite": { "method": "getOAuth2Provider", "group": "oauth2", - "weight": 1212, "cookies": false, "type": "", "demo": "project\/get-o-auth-2-provider.md", @@ -34121,12 +34168,9 @@ "yammer", "yandex", "zoho", - "zoom", - "githubImagine", - "googleImagine" + "zoom" ], "x-enum-name": "ProjectOAuthProviderId", - "x-enum-keys": [], "in": "path" } ] @@ -34156,7 +34200,6 @@ "x-appwrite": { "method": "listPlatforms", "group": "platforms", - "weight": 1181, "cookies": false, "type": "", "demo": "project\/list-platforms.md", @@ -34232,7 +34275,6 @@ "x-appwrite": { "method": "createAndroidPlatform", "group": "platforms", - "weight": 1185, "cookies": false, "type": "", "demo": "project\/create-android-platform.md", @@ -34316,7 +34358,6 @@ "x-appwrite": { "method": "updateAndroidPlatform", "group": "platforms", - "weight": 1190, "cookies": false, "type": "", "demo": "project\/update-android-platform.md", @@ -34402,7 +34443,6 @@ "x-appwrite": { "method": "createApplePlatform", "group": "platforms", - "weight": 1184, "cookies": false, "type": "", "demo": "project\/create-apple-platform.md", @@ -34486,7 +34526,6 @@ "x-appwrite": { "method": "updateApplePlatform", "group": "platforms", - "weight": 1189, "cookies": false, "type": "", "demo": "project\/update-apple-platform.md", @@ -34572,7 +34611,6 @@ "x-appwrite": { "method": "createLinuxPlatform", "group": "platforms", - "weight": 1187, "cookies": false, "type": "", "demo": "project\/create-linux-platform.md", @@ -34656,7 +34694,6 @@ "x-appwrite": { "method": "updateLinuxPlatform", "group": "platforms", - "weight": 1192, "cookies": false, "type": "", "demo": "project\/update-linux-platform.md", @@ -34742,7 +34779,6 @@ "x-appwrite": { "method": "createWebPlatform", "group": "platforms", - "weight": 1183, "cookies": false, "type": "", "demo": "project\/create-web-platform.md", @@ -34826,7 +34862,6 @@ "x-appwrite": { "method": "updateWebPlatform", "group": "platforms", - "weight": 1188, "cookies": false, "type": "", "demo": "project\/update-web-platform.md", @@ -34912,7 +34947,6 @@ "x-appwrite": { "method": "createWindowsPlatform", "group": "platforms", - "weight": 1186, "cookies": false, "type": "", "demo": "project\/create-windows-platform.md", @@ -34996,7 +35030,6 @@ "x-appwrite": { "method": "updateWindowsPlatform", "group": "platforms", - "weight": 1191, "cookies": false, "type": "", "demo": "project\/update-windows-platform.md", @@ -35106,7 +35139,6 @@ "x-appwrite": { "method": "getPlatform", "group": "platforms", - "weight": 1182, "cookies": false, "type": "", "demo": "project\/get-platform.md", @@ -35162,7 +35194,6 @@ "x-appwrite": { "method": "deletePlatform", "group": "platforms", - "weight": 1193, "cookies": false, "type": "", "demo": "project\/delete-platform.md", @@ -35223,7 +35254,6 @@ "x-appwrite": { "method": "listPolicies", "group": "policies", - "weight": 1199, "cookies": false, "type": "", "demo": "project\/list-policies.md", @@ -35302,7 +35332,6 @@ "x-appwrite": { "method": "updateDenyAliasedEmailPolicy", "group": "policies", - "weight": 1255, "cookies": false, "type": "", "demo": "project\/update-deny-aliased-email-policy.md", @@ -35377,7 +35406,6 @@ "x-appwrite": { "method": "updateDenyDisposableEmailPolicy", "group": "policies", - "weight": 1256, "cookies": false, "type": "", "demo": "project\/update-deny-disposable-email-policy.md", @@ -35452,7 +35480,6 @@ "x-appwrite": { "method": "updateDenyFreeEmailPolicy", "group": "policies", - "weight": 1257, "cookies": false, "type": "", "demo": "project\/update-deny-free-email-policy.md", @@ -35527,7 +35554,6 @@ "x-appwrite": { "method": "updateMembershipPrivacyPolicy", "group": "policies", - "weight": 1201, "cookies": false, "type": "", "demo": "project\/update-membership-privacy-policy.md", @@ -35619,7 +35645,6 @@ "x-appwrite": { "method": "updatePasswordDictionaryPolicy", "group": "policies", - "weight": 1202, "cookies": false, "type": "", "demo": "project\/update-password-dictionary-policy.md", @@ -35694,7 +35719,6 @@ "x-appwrite": { "method": "updatePasswordHistoryPolicy", "group": "policies", - "weight": 1203, "cookies": false, "type": "", "demo": "project\/update-password-history-policy.md", @@ -35771,7 +35795,6 @@ "x-appwrite": { "method": "updatePasswordPersonalDataPolicy", "group": "policies", - "weight": 1204, "cookies": false, "type": "", "demo": "project\/update-password-personal-data-policy.md", @@ -35846,7 +35869,6 @@ "x-appwrite": { "method": "updateSessionAlertPolicy", "group": "policies", - "weight": 1205, "cookies": false, "type": "", "demo": "project\/update-session-alert-policy.md", @@ -35921,7 +35943,6 @@ "x-appwrite": { "method": "updateSessionDurationPolicy", "group": "policies", - "weight": 1206, "cookies": false, "type": "", "demo": "project\/update-session-duration-policy.md", @@ -35997,7 +36018,6 @@ "x-appwrite": { "method": "updateSessionInvalidationPolicy", "group": "policies", - "weight": 1207, "cookies": false, "type": "", "demo": "project\/update-session-invalidation-policy.md", @@ -36072,7 +36092,6 @@ "x-appwrite": { "method": "updateSessionLimitPolicy", "group": "policies", - "weight": 1208, "cookies": false, "type": "", "demo": "project\/update-session-limit-policy.md", @@ -36149,7 +36168,6 @@ "x-appwrite": { "method": "updateUserLimitPolicy", "group": "policies", - "weight": 1209, "cookies": false, "type": "", "demo": "project\/update-user-limit-policy.md", @@ -36266,7 +36284,6 @@ "x-appwrite": { "method": "getPolicy", "group": "policies", - "weight": 1200, "cookies": false, "type": "", "demo": "project\/get-policy.md", @@ -36313,7 +36330,6 @@ "membership-privacy" ], "x-enum-name": "ProjectPolicyId", - "x-enum-keys": [], "in": "path" } ] @@ -36345,7 +36361,6 @@ "x-appwrite": { "method": "updateProtocol", "group": null, - "weight": 1163, "cookies": false, "type": "", "demo": "project\/update-protocol.md", @@ -36383,7 +36398,6 @@ "websocket" ], "x-enum-name": "ProjectProtocolId", - "x-enum-keys": [], "in": "path" }, { @@ -36432,7 +36446,6 @@ "x-appwrite": { "method": "updateService", "group": null, - "weight": 1164, "cookies": false, "type": "", "demo": "project\/update-service.md", @@ -36485,7 +36498,6 @@ "advisor" ], "x-enum-name": "ProjectServiceId", - "x-enum-keys": [], "in": "path" }, { @@ -36534,7 +36546,6 @@ "x-appwrite": { "method": "updateSMTP", "group": "smtp", - "weight": 1165, "cookies": false, "type": "", "demo": "project\/update-smtp.md", @@ -36626,7 +36637,6 @@ "ssl" ], "x-enum-name": "ProjectSMTPSecure", - "x-enum-keys": [], "x-nullable": true }, "enabled": { @@ -36662,7 +36672,6 @@ "x-appwrite": { "method": "createSMTPTest", "group": "smtp", - "weight": 1166, "cookies": false, "type": "", "demo": "project\/create-smtp-test.md", @@ -36735,7 +36744,6 @@ "x-appwrite": { "method": "listEmailTemplates", "group": "templates", - "weight": 1167, "cookies": false, "type": "", "demo": "project\/list-email-templates.md", @@ -36809,7 +36817,6 @@ "x-appwrite": { "method": "updateEmailTemplate", "group": "templates", - "weight": 1169, "cookies": false, "type": "", "demo": "project\/update-email-template.md", @@ -36854,8 +36861,7 @@ "sessionAlert", "otpSession" ], - "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateId" }, "locale": { "type": "string", @@ -36994,8 +37000,7 @@ "zh-tw", "zu" ], - "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [] + "x-enum-name": "ProjectEmailTemplateLocale" }, "subject": { "type": "string", @@ -37068,7 +37073,6 @@ "x-appwrite": { "method": "getEmailTemplate", "group": "templates", - "weight": 1168, "cookies": false, "type": "", "demo": "project\/get-email-template.md", @@ -37110,7 +37114,6 @@ "otpSession" ], "x-enum-name": "ProjectEmailTemplateId", - "x-enum-keys": [], "in": "path" }, { @@ -37253,7 +37256,6 @@ "zu" ], "x-enum-name": "ProjectEmailTemplateLocale", - "x-enum-keys": [], "in": "query" } ] @@ -37283,7 +37285,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 1171, "cookies": false, "type": "", "demo": "project\/list-variables.md", @@ -37357,7 +37358,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 1170, "cookies": false, "type": "", "demo": "project\/create-variable.md", @@ -37407,8 +37407,8 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only projects can read them during build and runtime.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -37445,7 +37445,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 1172, "cookies": false, "type": "", "demo": "project\/get-variable.md", @@ -37506,7 +37505,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 1174, "cookies": false, "type": "", "demo": "project\/update-variable.md", @@ -37589,7 +37587,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 1173, "cookies": false, "type": "", "demo": "project\/delete-variable.md", @@ -37650,7 +37647,6 @@ "x-appwrite": { "method": "listRules", "group": "rules", - "weight": 1267, "cookies": false, "type": "", "demo": "proxy\/list-rules.md", @@ -37726,7 +37722,6 @@ "x-appwrite": { "method": "createAPIRule", "group": "rules", - "weight": 1262, "cookies": false, "type": "", "demo": "proxy\/create-api-rule.md", @@ -37798,7 +37793,6 @@ "x-appwrite": { "method": "createFunctionRule", "group": "rules", - "weight": 1264, "cookies": false, "type": "", "demo": "proxy\/create-function-rule.md", @@ -37843,8 +37837,8 @@ "branch": { "type": "string", "description": "Name of VCS branch to deploy changes automatically", - "x-example": "<BRANCH>", - "default": "" + "default": "", + "x-example": "<BRANCH>" } }, "required": [ @@ -37882,7 +37876,6 @@ "x-appwrite": { "method": "createRedirectRule", "group": "rules", - "weight": 1265, "cookies": false, "type": "", "demo": "proxy\/create-redirect-rule.md", @@ -37935,12 +37928,12 @@ "307", "308" ], - "x-enum-name": null, + "x-enum-name": "RedirectStatusCode", "x-enum-keys": [ - "Moved Permanently 301", - "Found 302", - "Temporary Redirect 307", - "Permanent Redirect 308" + "MovedPermanently", + "Found", + "TemporaryRedirect", + "PermanentRedirect" ] }, "resourceId": { @@ -38001,7 +37994,6 @@ "x-appwrite": { "method": "createSiteRule", "group": "rules", - "weight": 1263, "cookies": false, "type": "", "demo": "proxy\/create-site-rule.md", @@ -38046,8 +38038,8 @@ "branch": { "type": "string", "description": "Name of VCS branch to deploy changes automatically", - "x-example": "<BRANCH>", - "default": "" + "default": "", + "x-example": "<BRANCH>" } }, "required": [ @@ -38083,7 +38075,6 @@ "x-appwrite": { "method": "getRule", "group": "rules", - "weight": 1266, "cookies": false, "type": "", "demo": "proxy\/get-rule.md", @@ -38139,7 +38130,6 @@ "x-appwrite": { "method": "deleteRule", "group": "rules", - "weight": 1268, "cookies": false, "type": "", "demo": "proxy\/delete-rule.md", @@ -38202,7 +38192,6 @@ "x-appwrite": { "method": "updateRuleStatus", "group": "rules", - "weight": 1269, "cookies": false, "type": "", "demo": "proxy\/update-rule-status.md", @@ -38263,7 +38252,6 @@ "x-appwrite": { "method": "listReports", "group": "reports", - "weight": 695, "cookies": false, "type": "", "demo": "advisor\/list-reports.md", @@ -38338,7 +38326,6 @@ "x-appwrite": { "method": "getReport", "group": "reports", - "weight": 694, "cookies": false, "type": "", "demo": "advisor\/get-report.md", @@ -38395,7 +38382,6 @@ "x-appwrite": { "method": "deleteReport", "group": "reports", - "weight": 696, "cookies": false, "type": "", "demo": "advisor\/delete-report.md", @@ -38457,7 +38443,6 @@ "x-appwrite": { "method": "listInsights", "group": "insights", - "weight": 698, "cookies": false, "type": "", "demo": "advisor\/list-insights.md", @@ -38540,7 +38525,6 @@ "x-appwrite": { "method": "getInsight", "group": "insights", - "weight": 697, "cookies": false, "type": "", "demo": "advisor\/get-insight.md", @@ -38610,7 +38594,6 @@ "x-appwrite": { "method": "list", "group": "sites", - "weight": 479, "cookies": false, "type": "", "demo": "sites\/list.md", @@ -38693,7 +38676,6 @@ "x-appwrite": { "method": "create", "group": "sites", - "weight": 972, "cookies": false, "type": "", "demo": "sites\/create.md", @@ -38756,51 +38738,50 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "enabled": { "type": "boolean", "description": "Is site enabled? When set to 'disabled', users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "timeout": { "type": "integer", "description": "Maximum request time in seconds.", - "x-example": 1, "default": 30, + "x-example": 1, "format": "int32" }, "installCommand": { "type": "string", "description": "Install Command.", - "x-example": "<INSTALL_COMMAND>", - "default": "" + "default": "", + "x-example": "<INSTALL_COMMAND>" }, "buildCommand": { "type": "string", "description": "Build Command.", - "x-example": "<BUILD_COMMAND>", - "default": "" + "default": "", + "x-example": "<BUILD_COMMAND>" }, "startCommand": { "type": "string", "description": "Custom start command. Leave empty to use default.", - "x-example": "<START_COMMAND>", - "default": "" + "default": "", + "x-example": "<START_COMMAND>" }, "outputDirectory": { "type": "string", "description": "Output Directory for site.", - "x-example": "<OUTPUT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<OUTPUT_DIRECTORY>" }, "buildRuntime": { "type": "string", @@ -38859,6 +38840,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -38898,10 +38880,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteBuildRuntime" }, "adapter": { "type": "string", @@ -38911,62 +38893,79 @@ "static", "ssr" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteAdapter" }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", - "x-example": "<INSTALLATION_ID>", - "default": "" + "default": "", + "x-example": "<INSTALLATION_ID>" }, "fallbackFile": { "type": "string", "description": "Fallback file for single page application sites.", - "x-example": "<FALLBACK_FILE>", - "default": "" + "default": "", + "x-example": "<FALLBACK_FILE>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the site.", - "x-example": "<PROVIDER_REPOSITORY_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the site.", - "x-example": "<PROVIDER_BRANCH>", - "default": "" + "default": "", + "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to site code in the linked repo.", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" + }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "default": [], + "x-example": null, + "items": { + "type": "string" + } }, "buildSpecification": { "type": "string", "description": "Build specification for the site deployments.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the SSR executions.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" } }, @@ -39005,7 +39004,6 @@ "x-appwrite": { "method": "listFrameworks", "group": "frameworks", - "weight": 482, "cookies": false, "type": "", "demo": "sites\/list-frameworks.md", @@ -39056,7 +39054,6 @@ "x-appwrite": { "method": "listSpecifications", "group": "frameworks", - "weight": 505, "cookies": false, "type": "", "demo": "sites\/list-specifications.md", @@ -39107,7 +39104,6 @@ "x-appwrite": { "method": "get", "group": "sites", - "weight": 478, "cookies": false, "type": "", "demo": "sites\/get.md", @@ -39168,7 +39164,6 @@ "x-appwrite": { "method": "update", "group": "sites", - "weight": 973, "cookies": false, "type": "", "demo": "sites\/update.md", @@ -39234,51 +39229,50 @@ "vite", "other" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteFramework" }, "enabled": { "type": "boolean", "description": "Is site enabled? When set to 'disabled', users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "logging": { "type": "boolean", "description": "When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "timeout": { "type": "integer", "description": "Maximum request time in seconds.", - "x-example": 1, "default": 30, + "x-example": 1, "format": "int32" }, "installCommand": { "type": "string", "description": "Install Command.", - "x-example": "<INSTALL_COMMAND>", - "default": "" + "default": "", + "x-example": "<INSTALL_COMMAND>" }, "buildCommand": { "type": "string", "description": "Build Command.", - "x-example": "<BUILD_COMMAND>", - "default": "" + "default": "", + "x-example": "<BUILD_COMMAND>" }, "startCommand": { "type": "string", "description": "Custom start command. Leave empty to use default.", - "x-example": "<START_COMMAND>", - "default": "" + "default": "", + "x-example": "<START_COMMAND>" }, "outputDirectory": { "type": "string", "description": "Output Directory for site.", - "x-example": "<OUTPUT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<OUTPUT_DIRECTORY>" }, "buildRuntime": { "type": "string", @@ -39337,6 +39331,7 @@ "dart-3.9", "dart-3.10", "dart-3.11", + "dart-3.12", "dotnet-6.0", "dotnet-7.0", "dotnet-8.0", @@ -39376,10 +39371,10 @@ "flutter-3.32", "flutter-3.35", "flutter-3.38", - "flutter-3.41" + "flutter-3.41", + "flutter-3.44" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteBuildRuntime" }, "adapter": { "type": "string", @@ -39389,62 +39384,79 @@ "static", "ssr" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "SiteAdapter" }, "fallbackFile": { "type": "string", "description": "Fallback file for single page application sites.", - "x-example": "<FALLBACK_FILE>", - "default": "" + "default": "", + "x-example": "<FALLBACK_FILE>" }, "installationId": { "type": "string", "description": "Appwrite Installation ID for VCS (Version Control System) deployment.", - "x-example": "<INSTALLATION_ID>", - "default": "" + "default": "", + "x-example": "<INSTALLATION_ID>" }, "providerRepositoryId": { "type": "string", "description": "Repository ID of the repo linked to the site.", - "x-example": "<PROVIDER_REPOSITORY_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_REPOSITORY_ID>" }, "providerBranch": { "type": "string", "description": "Production branch for the repo linked to the site.", - "x-example": "<PROVIDER_BRANCH>", - "default": "" + "default": "", + "x-example": "<PROVIDER_BRANCH>" }, "providerSilentMode": { "type": "boolean", "description": "Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "providerRootDirectory": { "type": "string", "description": "Path to site code in the linked repo.", - "x-example": "<PROVIDER_ROOT_DIRECTORY>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ROOT_DIRECTORY>" + }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all branches.", + "x-example": null, + "x-nullable": true, + "items": { + "type": "string" + } + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns to trigger automatic deployments. Supports wildcards. Leave empty to deploy on all file changes.", + "x-example": null, + "x-nullable": true, + "items": { + "type": "string" + } }, "buildSpecification": { "type": "string", "description": "Build specification for the site deployments.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "runtimeSpecification": { "type": "string", "description": "Runtime specification for the SSR executions.", - "x-example": null, - "default": {} + "default": {}, + "x-example": null }, "deploymentRetention": { "type": "integer", "description": "Days to keep non-active deployments before deletion. Value 0 means all deployments will be kept.", - "x-example": 0, "default": 0, + "x-example": 0, "format": "int32" } }, @@ -39476,7 +39488,6 @@ "x-appwrite": { "method": "delete", "group": "sites", - "weight": 481, "cookies": false, "type": "", "demo": "sites\/delete.md", @@ -39539,7 +39550,6 @@ "x-appwrite": { "method": "updateSiteDeployment", "group": "sites", - "weight": 488, "cookies": false, "type": "", "demo": "sites\/update-site-deployment.md", @@ -39617,7 +39627,6 @@ "x-appwrite": { "method": "listDeployments", "group": "deployments", - "weight": 487, "cookies": false, "type": "", "demo": "sites\/list-deployments.md", @@ -39708,7 +39717,6 @@ "x-appwrite": { "method": "createDeployment", "group": "deployments", - "weight": 483, "cookies": false, "type": "upload", "demo": "sites\/create-deployment.md", @@ -39811,7 +39819,6 @@ "x-appwrite": { "method": "createDuplicateDeployment", "group": "deployments", - "weight": 491, "cookies": false, "type": "", "demo": "sites\/create-duplicate-deployment.md", @@ -39891,7 +39898,6 @@ "x-appwrite": { "method": "createTemplateDeployment", "group": "deployments", - "weight": 484, "cookies": false, "type": "", "demo": "sites\/create-template-deployment.md", @@ -39955,8 +39961,7 @@ "commit", "tag" ], - "x-enum-name": "TemplateReferenceType", - "x-enum-keys": [] + "x-enum-name": "TemplateReferenceType" }, "reference": { "type": "string", @@ -39966,8 +39971,8 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -40008,7 +40013,6 @@ "x-appwrite": { "method": "createVcsDeployment", "group": "deployments", - "weight": 485, "cookies": false, "type": "", "demo": "sites\/create-vcs-deployment.md", @@ -40057,8 +40061,7 @@ "commit", "tag" ], - "x-enum-name": "VCSReferenceType", - "x-enum-keys": [] + "x-enum-name": "VCSReferenceType" }, "reference": { "type": "string", @@ -40068,8 +40071,8 @@ "activate": { "type": "boolean", "description": "Automatically activate the deployment when it is finished building.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -40105,7 +40108,6 @@ "x-appwrite": { "method": "getDeployment", "group": "deployments", - "weight": 486, "cookies": false, "type": "", "demo": "sites\/get-deployment.md", @@ -40169,7 +40171,6 @@ "x-appwrite": { "method": "deleteDeployment", "group": "deployments", - "weight": 489, "cookies": false, "type": "", "demo": "sites\/delete-deployment.md", @@ -40238,7 +40239,6 @@ "x-appwrite": { "method": "getDeploymentDownload", "group": "deployments", - "weight": 490, "cookies": false, "type": "location", "demo": "sites\/get-deployment-download.md", @@ -40292,7 +40292,6 @@ "output" ], "x-enum-name": "DeploymentDownloadType", - "x-enum-keys": [], "default": "source", "in": "query" } @@ -40325,7 +40324,6 @@ "x-appwrite": { "method": "updateDeploymentStatus", "group": "deployments", - "weight": 492, "cookies": false, "type": "", "demo": "sites\/update-deployment-status.md", @@ -40394,7 +40392,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 494, "cookies": false, "type": "", "demo": "sites\/list-logs.md", @@ -40476,7 +40473,6 @@ "x-appwrite": { "method": "getLog", "group": "logs", - "weight": 493, "cookies": false, "type": "", "demo": "sites\/get-log.md", @@ -40542,7 +40538,6 @@ "x-appwrite": { "method": "deleteLog", "group": "logs", - "weight": 495, "cookies": false, "type": "", "demo": "sites\/delete-log.md", @@ -40611,7 +40606,6 @@ "x-appwrite": { "method": "listVariables", "group": "variables", - "weight": 498, "cookies": false, "type": "", "demo": "sites\/list-variables.md", @@ -40693,7 +40687,6 @@ "x-appwrite": { "method": "createVariable", "group": "variables", - "weight": 974, "cookies": false, "type": "", "demo": "sites\/create-variable.md", @@ -40751,8 +40744,8 @@ "secret": { "type": "boolean", "description": "Secret variables can be updated or deleted, but only sites can read them during build and runtime.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -40789,7 +40782,6 @@ "x-appwrite": { "method": "getVariable", "group": "variables", - "weight": 497, "cookies": false, "type": "", "demo": "sites\/get-variable.md", @@ -40858,7 +40850,6 @@ "x-appwrite": { "method": "updateVariable", "group": "variables", - "weight": 499, "cookies": false, "type": "", "demo": "sites\/update-variable.md", @@ -40949,7 +40940,6 @@ "x-appwrite": { "method": "deleteVariable", "group": "variables", - "weight": 500, "cookies": false, "type": "", "demo": "sites\/delete-variable.md", @@ -41018,7 +41008,6 @@ "x-appwrite": { "method": "listBuckets", "group": "buckets", - "weight": 550, "cookies": false, "type": "", "demo": "storage\/list-buckets.md", @@ -41102,7 +41091,6 @@ "x-appwrite": { "method": "createBucket", "group": "buckets", - "weight": 548, "cookies": false, "type": "", "demo": "storage\/create-bucket.md", @@ -41157,27 +41145,27 @@ "fileSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual file. A user needs one of file or bucket level permissions to access a file. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is bucket enabled? When set to 'disabled', users cannot access the files in this bucket but Server SDKs with and API key can still access the bucket. No files are lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "maximumFileSize": { "type": "integer", - "description": "Maximum file size allowed in bytes. Maximum allowed value is 5GB.", - "x-example": 1, + "description": "Maximum file size allowed in bytes. Maximum allowed value is 0B.", "default": {}, + "x-example": 1, "format": "int32" }, "allowedFileExtensions": { "type": "array", "description": "Allowed file extensions. Maximum of 100 extensions are allowed, each 64 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -41185,33 +41173,32 @@ "compression": { "type": "string", "description": "Compression algorithm chosen for compression. Can be one of none, [gzip](https:\/\/en.wikipedia.org\/wiki\/Gzip), or [zstd](https:\/\/en.wikipedia.org\/wiki\/Zstd), For file size above 20MB compression is skipped even if it's enabled", - "x-example": "none", "default": "none", + "x-example": "none", "enum": [ "none", "gzip", "zstd" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Compression" }, "encryption": { "type": "boolean", "description": "Is encryption enabled? For file size above 20MB encryption is skipped even if it's enabled", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "antivirus": { "type": "boolean", "description": "Is virus scanning enabled? For file size above 20MB AntiVirus scanning is skipped even if it's enabled", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "transformations": { "type": "boolean", "description": "Are image transformations enabled?", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -41247,7 +41234,6 @@ "x-appwrite": { "method": "getBucket", "group": "buckets", - "weight": 549, "cookies": false, "type": "", "demo": "storage\/get-bucket.md", @@ -41309,7 +41295,6 @@ "x-appwrite": { "method": "updateBucket", "group": "buckets", - "weight": 551, "cookies": false, "type": "", "demo": "storage\/update-bucket.md", @@ -41367,27 +41352,27 @@ "fileSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual file. A user needs one of file or bucket level permissions to access a file. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is bucket enabled? When set to 'disabled', users cannot access the files in this bucket but Server SDKs with and API key can still access the bucket. No files are lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "maximumFileSize": { "type": "integer", - "description": "Maximum file size allowed in bytes. Maximum allowed value is 5GB.", - "x-example": 1, + "description": "Maximum file size allowed in bytes. Maximum allowed value is 0B.", "default": {}, + "x-example": 1, "format": "int32" }, "allowedFileExtensions": { "type": "array", "description": "Allowed file extensions. Maximum of 100 extensions are allowed, each 64 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -41395,33 +41380,32 @@ "compression": { "type": "string", "description": "Compression algorithm chosen for compression. Can be one of none, [gzip](https:\/\/en.wikipedia.org\/wiki\/Gzip), or [zstd](https:\/\/en.wikipedia.org\/wiki\/Zstd), For file size above 20MB compression is skipped even if it's enabled", - "x-example": "none", "default": "none", + "x-example": "none", "enum": [ "none", "gzip", "zstd" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "Compression" }, "encryption": { "type": "boolean", "description": "Is encryption enabled? For file size above 20MB encryption is skipped even if it's enabled", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "antivirus": { "type": "boolean", "description": "Is virus scanning enabled? For file size above 20MB AntiVirus scanning is skipped even if it's enabled", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "transformations": { "type": "boolean", "description": "Are image transformations enabled?", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -41451,7 +41435,6 @@ "x-appwrite": { "method": "deleteBucket", "group": "buckets", - "weight": 552, "cookies": false, "type": "", "demo": "storage\/delete-bucket.md", @@ -41513,7 +41496,6 @@ "x-appwrite": { "method": "listFiles", "group": "files", - "weight": 555, "cookies": false, "type": "", "demo": "storage\/list-files.md", @@ -41608,7 +41590,6 @@ "x-appwrite": { "method": "createFile", "group": "files", - "weight": 1260, "cookies": false, "type": "upload", "demo": "storage\/create-file.md", @@ -41701,7 +41682,6 @@ "x-appwrite": { "method": "getFile", "group": "files", - "weight": 554, "cookies": false, "type": "", "demo": "storage\/get-file.md", @@ -41774,7 +41754,6 @@ "x-appwrite": { "method": "updateFile", "group": "files", - "weight": 556, "cookies": false, "type": "", "demo": "storage\/update-file.md", @@ -41865,7 +41844,6 @@ "x-appwrite": { "method": "deleteFile", "group": "files", - "weight": 557, "cookies": false, "type": "", "demo": "storage\/delete-file.md", @@ -41938,7 +41916,6 @@ "x-appwrite": { "method": "getFileDownload", "group": "files", - "weight": 559, "cookies": false, "type": "location", "demo": "storage\/get-file-download.md", @@ -42020,7 +41997,6 @@ "x-appwrite": { "method": "getFilePreview", "group": "files", - "weight": 558, "cookies": false, "type": "location", "demo": "storage\/get-file-preview.md", @@ -42104,7 +42080,6 @@ "bottom-right" ], "x-enum-name": "ImageGravity", - "x-enum-keys": [], "default": "center", "in": "query" }, @@ -42190,7 +42165,6 @@ "gif" ], "x-enum-name": "ImageFormat", - "x-enum-keys": [], "in": "query" }, { @@ -42229,7 +42203,6 @@ "x-appwrite": { "method": "getFileView", "group": "files", - "weight": 560, "cookies": false, "type": "location", "demo": "storage\/get-file-view.md", @@ -42311,7 +42284,6 @@ "x-appwrite": { "method": "list", "group": "tablesdb", - "weight": 780, "cookies": false, "type": "", "demo": "tablesdb\/list.md", @@ -42395,7 +42367,6 @@ "x-appwrite": { "method": "create", "group": "tablesdb", - "weight": 776, "cookies": false, "type": "", "demo": "tablesdb\/create.md", @@ -42441,8 +42412,8 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -42478,7 +42449,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 849, "cookies": false, "type": "", "demo": "tablesdb\/list-transactions.md", @@ -42550,7 +42520,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 845, "cookies": false, "type": "", "demo": "tablesdb\/create-transaction.md", @@ -42592,8 +42561,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -42626,7 +42595,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 846, "cookies": false, "type": "", "demo": "tablesdb\/get-transaction.md", @@ -42694,7 +42662,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 847, "cookies": false, "type": "", "demo": "tablesdb\/update-transaction.md", @@ -42744,14 +42711,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -42778,7 +42745,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 848, "cookies": false, "type": "", "demo": "tablesdb\/delete-transaction.md", @@ -42848,7 +42814,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 850, "cookies": false, "type": "", "demo": "tablesdb\/create-operations.md", @@ -42898,8 +42863,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"tableId\": \"<TABLE_ID>\",\n\t \"rowId\": \"<ROW_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"tableId\": \"<TABLE_ID>\",\n\t \"rowId\": \"<ROW_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -42934,7 +42899,6 @@ "x-appwrite": { "method": "get", "group": "tablesdb", - "weight": 777, "cookies": false, "type": "", "demo": "tablesdb\/get.md", @@ -42996,7 +42960,6 @@ "x-appwrite": { "method": "update", "group": "tablesdb", - "weight": 778, "cookies": false, "type": "", "demo": "tablesdb\/update.md", @@ -43045,8 +43008,8 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } } } @@ -43073,7 +43036,6 @@ "x-appwrite": { "method": "delete", "group": "tablesdb", - "weight": 779, "cookies": false, "type": "", "demo": "tablesdb\/delete.md", @@ -43135,7 +43097,6 @@ "x-appwrite": { "method": "listTables", "group": "tables", - "weight": 787, "cookies": false, "type": "", "demo": "tablesdb\/list-tables.md", @@ -43230,7 +43191,6 @@ "x-appwrite": { "method": "createTable", "group": "tables", - "weight": 783, "cookies": false, "type": "", "demo": "tablesdb\/create-table.md", @@ -43296,20 +43256,20 @@ "rowSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual rows. A user needs one of row or table level permissions to access a row. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is table enabled? When set to 'disabled', users cannot access the table but Server SDKs with and API key can still read and write to the table. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "columns": { "type": "array", "description": "Array of column definitions to create. Each column should contain: key (string), type (string: string, integer, float, boolean, datetime, relationship), size (integer, required for string type), required (boolean, optional), default (mixed, optional), array (boolean, optional), and type-specific options.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -43317,8 +43277,8 @@ "indexes": { "type": "array", "description": "Array of index definitions to create. Each index should contain: key (string), type (string: key, fulltext, unique, spatial), attributes (array of column keys), orders (array of ASC\/DESC, optional), and lengths (array of integers, optional).", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -43357,7 +43317,6 @@ "x-appwrite": { "method": "getTable", "group": "tables", - "weight": 784, "cookies": false, "type": "", "demo": "tablesdb\/get-table.md", @@ -43430,7 +43389,6 @@ "x-appwrite": { "method": "updateTable", "group": "tables", - "weight": 785, "cookies": false, "type": "", "demo": "tablesdb\/update-table.md", @@ -43499,20 +43457,20 @@ "rowSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual rows. A user needs one of row or table-level permissions to access a row. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is table enabled? When set to 'disabled', users cannot access the table but Server SDKs with and API key can still read and write to the table. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "purge": { "type": "boolean", "description": "When true, purge all cached list responses for this table as part of the update. Use this to force readers to see fresh data immediately instead of waiting for the cache TTL to expire.", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -43539,7 +43497,6 @@ "x-appwrite": { "method": "deleteTable", "group": "tables", - "weight": 786, "cookies": false, "type": "", "demo": "tablesdb\/delete-table.md", @@ -43612,7 +43569,6 @@ "x-appwrite": { "method": "listColumns", "group": "columns", - "weight": 792, "cookies": false, "type": "", "demo": "tablesdb\/list-columns.md", @@ -43710,7 +43666,6 @@ "x-appwrite": { "method": "createBigIntColumn", "group": "columns", - "weight": 805, "cookies": false, "type": "", "demo": "tablesdb\/create-big-int-column.md", @@ -43798,8 +43753,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -43837,7 +43792,6 @@ "x-appwrite": { "method": "updateBigIntColumn", "group": "columns", - "weight": 806, "cookies": false, "type": "", "demo": "tablesdb\/update-big-int-column.md", @@ -43966,7 +43920,6 @@ "x-appwrite": { "method": "createBooleanColumn", "group": "columns", - "weight": 793, "cookies": false, "type": "", "demo": "tablesdb\/create-boolean-column.md", @@ -44039,8 +43992,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -44078,7 +44031,6 @@ "x-appwrite": { "method": "updateBooleanColumn", "group": "columns", - "weight": 794, "cookies": false, "type": "", "demo": "tablesdb\/update-boolean-column.md", @@ -44192,7 +44144,6 @@ "x-appwrite": { "method": "createDatetimeColumn", "group": "columns", - "weight": 795, "cookies": false, "type": "", "demo": "tablesdb\/create-datetime-column.md", @@ -44266,8 +44217,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -44305,7 +44256,6 @@ "x-appwrite": { "method": "updateDatetimeColumn", "group": "columns", - "weight": 796, "cookies": false, "type": "", "demo": "tablesdb\/update-datetime-column.md", @@ -44420,7 +44370,6 @@ "x-appwrite": { "method": "createEmailColumn", "group": "columns", - "weight": 797, "cookies": false, "type": "", "demo": "tablesdb\/create-email-column.md", @@ -44494,8 +44443,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -44533,7 +44482,6 @@ "x-appwrite": { "method": "updateEmailColumn", "group": "columns", - "weight": 798, "cookies": false, "type": "", "demo": "tablesdb\/update-email-column.md", @@ -44648,7 +44596,6 @@ "x-appwrite": { "method": "createEnumColumn", "group": "columns", - "weight": 799, "cookies": false, "type": "", "demo": "tablesdb\/create-enum-column.md", @@ -44729,8 +44676,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -44769,7 +44716,6 @@ "x-appwrite": { "method": "updateEnumColumn", "group": "columns", - "weight": 800, "cookies": false, "type": "", "demo": "tablesdb\/update-enum-column.md", @@ -44892,7 +44838,6 @@ "x-appwrite": { "method": "createFloatColumn", "group": "columns", - "weight": 801, "cookies": false, "type": "", "demo": "tablesdb\/create-float-column.md", @@ -44980,8 +44925,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -45019,7 +44964,6 @@ "x-appwrite": { "method": "updateFloatColumn", "group": "columns", - "weight": 802, "cookies": false, "type": "", "demo": "tablesdb\/update-float-column.md", @@ -45148,7 +45092,6 @@ "x-appwrite": { "method": "createIntegerColumn", "group": "columns", - "weight": 803, "cookies": false, "type": "", "demo": "tablesdb\/create-integer-column.md", @@ -45236,8 +45179,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -45275,7 +45218,6 @@ "x-appwrite": { "method": "updateIntegerColumn", "group": "columns", - "weight": 804, "cookies": false, "type": "", "demo": "tablesdb\/update-integer-column.md", @@ -45404,7 +45346,6 @@ "x-appwrite": { "method": "createIpColumn", "group": "columns", - "weight": 807, "cookies": false, "type": "", "demo": "tablesdb\/create-ip-column.md", @@ -45477,8 +45418,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -45516,7 +45457,6 @@ "x-appwrite": { "method": "updateIpColumn", "group": "columns", - "weight": 808, "cookies": false, "type": "", "demo": "tablesdb\/update-ip-column.md", @@ -45630,7 +45570,6 @@ "x-appwrite": { "method": "createLineColumn", "group": "columns", - "weight": 809, "cookies": false, "type": "", "demo": "tablesdb\/create-line-column.md", @@ -45736,7 +45675,6 @@ "x-appwrite": { "method": "updateLineColumn", "group": "columns", - "weight": 810, "cookies": false, "type": "", "demo": "tablesdb\/update-line-column.md", @@ -45849,7 +45787,6 @@ "x-appwrite": { "method": "createLongtextColumn", "group": "columns", - "weight": 827, "cookies": false, "type": "", "demo": "tablesdb\/create-longtext-column.md", @@ -45922,14 +45859,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -45967,7 +45904,6 @@ "x-appwrite": { "method": "updateLongtextColumn", "group": "columns", - "weight": 828, "cookies": false, "type": "", "demo": "tablesdb\/update-longtext-column.md", @@ -46081,7 +46017,6 @@ "x-appwrite": { "method": "createMediumtextColumn", "group": "columns", - "weight": 825, "cookies": false, "type": "", "demo": "tablesdb\/create-mediumtext-column.md", @@ -46154,14 +46089,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -46199,7 +46134,6 @@ "x-appwrite": { "method": "updateMediumtextColumn", "group": "columns", - "weight": 826, "cookies": false, "type": "", "demo": "tablesdb\/update-mediumtext-column.md", @@ -46313,7 +46247,6 @@ "x-appwrite": { "method": "createPointColumn", "group": "columns", - "weight": 811, "cookies": false, "type": "", "demo": "tablesdb\/create-point-column.md", @@ -46419,7 +46352,6 @@ "x-appwrite": { "method": "updatePointColumn", "group": "columns", - "weight": 812, "cookies": false, "type": "", "demo": "tablesdb\/update-point-column.md", @@ -46532,7 +46464,6 @@ "x-appwrite": { "method": "createPolygonColumn", "group": "columns", - "weight": 813, "cookies": false, "type": "", "demo": "tablesdb\/create-polygon-column.md", @@ -46638,7 +46569,6 @@ "x-appwrite": { "method": "updatePolygonColumn", "group": "columns", - "weight": 814, "cookies": false, "type": "", "demo": "tablesdb\/update-polygon-column.md", @@ -46751,7 +46681,6 @@ "x-appwrite": { "method": "createRelationshipColumn", "group": "columns", - "weight": 815, "cookies": false, "type": "", "demo": "tablesdb\/create-relationship-column.md", @@ -46820,14 +46749,13 @@ "manyToMany", "oneToMany" ], - "x-enum-name": "RelationshipType", - "x-enum-keys": [] + "x-enum-name": "RelationshipType" }, "twoWay": { "type": "boolean", "description": "Is Two Way?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "key": { "type": "string", @@ -46844,15 +46772,14 @@ "onDelete": { "type": "string", "description": "Constraints option", - "x-example": "cascade", "default": "restrict", + "x-example": "cascade", "enum": [ "cascade", "restrict", "setNull" ], - "x-enum-name": "RelationMutate", - "x-enum-keys": [] + "x-enum-name": "RelationMutate" } }, "required": [ @@ -46890,7 +46817,6 @@ "x-appwrite": { "method": "createStringColumn", "group": "columns", - "weight": 817, "cookies": false, "type": "", "demo": "tablesdb\/create-string-column.md", @@ -46973,14 +46899,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -47019,7 +46945,6 @@ "x-appwrite": { "method": "updateStringColumn", "group": "columns", - "weight": 818, "cookies": false, "type": "", "demo": "tablesdb\/update-string-column.md", @@ -47144,7 +47069,6 @@ "x-appwrite": { "method": "createTextColumn", "group": "columns", - "weight": 823, "cookies": false, "type": "", "demo": "tablesdb\/create-text-column.md", @@ -47217,14 +47141,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -47262,7 +47186,6 @@ "x-appwrite": { "method": "updateTextColumn", "group": "columns", - "weight": 824, "cookies": false, "type": "", "demo": "tablesdb\/update-text-column.md", @@ -47376,7 +47299,6 @@ "x-appwrite": { "method": "createUrlColumn", "group": "columns", - "weight": 819, "cookies": false, "type": "", "demo": "tablesdb\/create-url-column.md", @@ -47450,8 +47372,8 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -47489,7 +47411,6 @@ "x-appwrite": { "method": "updateUrlColumn", "group": "columns", - "weight": 820, "cookies": false, "type": "", "demo": "tablesdb\/update-url-column.md", @@ -47604,7 +47525,6 @@ "x-appwrite": { "method": "createVarcharColumn", "group": "columns", - "weight": 821, "cookies": false, "type": "", "demo": "tablesdb\/create-varchar-column.md", @@ -47683,14 +47603,14 @@ "array": { "type": "boolean", "description": "Is column an array?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "encrypt": { "type": "boolean", "description": "Toggle encryption for the column. Encryption enhances security by not storing any plain text values in the database. However, encrypted columns cannot be queried.", - "x-example": false, - "default": false + "default": false, + "x-example": false } }, "required": [ @@ -47729,7 +47649,6 @@ "x-appwrite": { "method": "updateVarcharColumn", "group": "columns", - "weight": 822, "cookies": false, "type": "", "demo": "tablesdb\/update-varchar-column.md", @@ -47930,7 +47849,6 @@ "x-appwrite": { "method": "getColumn", "group": "columns", - "weight": 790, "cookies": false, "type": "", "demo": "tablesdb\/get-column.md", @@ -48007,7 +47925,6 @@ "x-appwrite": { "method": "deleteColumn", "group": "columns", - "weight": 791, "cookies": false, "type": "", "demo": "tablesdb\/delete-column.md", @@ -48091,7 +48008,6 @@ "x-appwrite": { "method": "updateRelationshipColumn", "group": "columns", - "weight": 816, "cookies": false, "type": "", "demo": "tablesdb\/update-relationship-column.md", @@ -48162,7 +48078,6 @@ "setNull" ], "x-enum-name": "RelationMutate", - "x-enum-keys": [], "x-nullable": true }, "newKey": { @@ -48201,7 +48116,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 832, "cookies": false, "type": "", "demo": "tablesdb\/list-indexes.md", @@ -48296,7 +48210,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 829, "cookies": false, "type": "", "demo": "tablesdb\/create-index.md", @@ -48364,8 +48277,7 @@ "unique", "spatial" ], - "x-enum-name": "TablesDBIndexType", - "x-enum-keys": [] + "x-enum-name": "TablesDBIndexType" }, "columns": { "type": "array", @@ -48378,23 +48290,22 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "integer" } @@ -48434,7 +48345,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 830, "cookies": false, "type": "", "demo": "tablesdb\/get-index.md", @@ -48510,7 +48420,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 831, "cookies": false, "type": "", "demo": "tablesdb\/delete-index.md", @@ -48591,7 +48500,6 @@ "x-appwrite": { "method": "listRows", "group": "rows", - "weight": 919, "cookies": false, "type": "", "demo": "tablesdb\/list-rows.md", @@ -48706,7 +48614,6 @@ "x-appwrite": { "method": "createRow", "group": "rows", - "weight": 833, "cookies": false, "type": "", "demo": "tablesdb\/create-row.md", @@ -48827,14 +48734,14 @@ "rowId": { "type": "string", "description": "Row ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<ROW_ID>", - "default": "" + "default": "", + "x-example": "<ROW_ID>" }, "data": { "type": "object", "description": "Row data as JSON object.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":30,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -48848,8 +48755,8 @@ "rows": { "type": "array", "description": "Array of rows data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -48890,7 +48797,6 @@ "x-appwrite": { "method": "upsertRows", "group": "rows", - "weight": 838, "cookies": false, "type": "", "demo": "tablesdb\/upsert-rows.md", @@ -49020,7 +48926,6 @@ "x-appwrite": { "method": "updateRows", "group": "rows", - "weight": 836, "cookies": false, "type": "", "demo": "tablesdb\/update-rows.md", @@ -49075,14 +48980,14 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only column and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -49123,7 +49028,6 @@ "x-appwrite": { "method": "deleteRows", "group": "rows", - "weight": 840, "cookies": false, "type": "", "demo": "tablesdb\/delete-rows.md", @@ -49178,8 +49082,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -49220,7 +49124,6 @@ "x-appwrite": { "method": "getRow", "group": "rows", - "weight": 834, "cookies": false, "type": "", "demo": "tablesdb\/get-row.md", @@ -49324,7 +49227,6 @@ "x-appwrite": { "method": "upsertRow", "group": "rows", - "weight": 837, "cookies": false, "type": "", "demo": "tablesdb\/upsert-row.md", @@ -49423,8 +49325,8 @@ "data": { "type": "object", "description": "Row data as JSON object. Include all required columns of the row to be created or updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -49471,7 +49373,6 @@ "x-appwrite": { "method": "updateRow", "group": "rows", - "weight": 835, "cookies": false, "type": "", "demo": "tablesdb\/update-row.md", @@ -49537,8 +49438,8 @@ "data": { "type": "object", "description": "Row data as JSON object. Include only columns and value pairs to be updated.", - "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}", - "default": [] + "default": [], + "x-example": "{\"username\":\"walter.obrien\",\"email\":\"walter.obrien@example.com\",\"fullName\":\"Walter O'Brien\",\"age\":33,\"isAdmin\":false}" }, "permissions": { "type": "array", @@ -49580,7 +49481,6 @@ "x-appwrite": { "method": "deleteRow", "group": "rows", - "weight": 839, "cookies": false, "type": "", "demo": "tablesdb\/delete-row.md", @@ -49681,7 +49581,6 @@ "x-appwrite": { "method": "decrementRowColumn", "group": "rows", - "weight": 844, "cookies": false, "type": "", "demo": "tablesdb\/decrement-row-column.md", @@ -49754,8 +49653,8 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "min": { @@ -49803,7 +49702,6 @@ "x-appwrite": { "method": "incrementRowColumn", "group": "rows", - "weight": 843, "cookies": false, "type": "", "demo": "tablesdb\/increment-row-column.md", @@ -49876,8 +49774,8 @@ "value": { "type": "number", "description": "Value to increment the column by. The value must be a number.", - "x-example": null, "default": 1, + "x-example": null, "format": "float" }, "max": { @@ -49923,7 +49821,6 @@ "x-appwrite": { "method": "list", "group": "teams", - "weight": 531, "cookies": false, "type": "", "demo": "teams\/list.md", @@ -50010,7 +49907,6 @@ "x-appwrite": { "method": "create", "group": "teams", - "weight": 529, "cookies": false, "type": "", "demo": "teams\/create.md", @@ -50059,10 +49955,10 @@ "roles": { "type": "array", "description": "Array of strings. Use this param to set the roles in the team for the user who created it. The default role is **owner**. A role can be any string. Learn more about [roles and permissions](https:\/\/appwrite.io\/docs\/permissions). Maximum of 100 roles are allowed, each 32 characters long.", - "x-example": null, "default": [ "owner" ], + "x-example": null, "items": { "type": "string" } @@ -50101,7 +49997,6 @@ "x-appwrite": { "method": "get", "group": "teams", - "weight": 530, "cookies": false, "type": "", "demo": "teams\/get.md", @@ -50166,7 +50061,6 @@ "x-appwrite": { "method": "updateName", "group": "teams", - "weight": 533, "cookies": false, "type": "", "demo": "teams\/update-name.md", @@ -50243,7 +50137,6 @@ "x-appwrite": { "method": "delete", "group": "teams", - "weight": 532, "cookies": false, "type": "", "demo": "teams\/delete.md", @@ -50308,7 +50201,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 538, "cookies": false, "type": "", "demo": "teams\/list-memberships.md", @@ -50403,7 +50295,6 @@ "x-appwrite": { "method": "createMembership", "group": "memberships", - "weight": 536, "cookies": false, "type": "", "demo": "teams\/create-membership.md", @@ -50450,21 +50341,21 @@ "email": { "type": "string", "description": "Email of the new team member.", - "x-example": "email@example.com", "default": "", + "x-example": "email@example.com", "format": "email" }, "userId": { "type": "string", "description": "ID of the user to be added to a team.", - "x-example": "<USER_ID>", - "default": "" + "default": "", + "x-example": "<USER_ID>" }, "phone": { "type": "string", "description": "Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.", - "x-example": "+12065550100", "default": "", + "x-example": "+12065550100", "format": "phone" }, "roles": { @@ -50478,15 +50369,15 @@ "url": { "type": "string", "description": "URL to redirect the user back to your app from the invitation email. This parameter is not required when an API key is supplied. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https:\/\/cheatsheetseries.owasp.org\/cheatsheets\/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.", - "x-example": "https:\/\/example.com", "default": "", + "x-example": "https:\/\/example.com", "format": "url" }, "name": { "type": "string", "description": "Name of the new team member. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -50521,7 +50412,6 @@ "x-appwrite": { "method": "getMembership", "group": "memberships", - "weight": 537, "cookies": false, "type": "", "demo": "teams\/get-membership.md", @@ -50594,7 +50484,6 @@ "x-appwrite": { "method": "updateMembership", "group": "memberships", - "weight": 539, "cookies": false, "type": "", "demo": "teams\/update-membership.md", @@ -50682,7 +50571,6 @@ "x-appwrite": { "method": "deleteMembership", "group": "memberships", - "weight": 1261, "cookies": false, "type": "", "demo": "teams\/delete-membership.md", @@ -50757,7 +50645,6 @@ "x-appwrite": { "method": "updateMembershipStatus", "group": "memberships", - "weight": 541, "cookies": false, "type": "", "demo": "teams\/update-membership-status.md", @@ -50852,7 +50739,6 @@ "x-appwrite": { "method": "getPrefs", "group": "teams", - "weight": 534, "cookies": false, "type": "", "demo": "teams\/get-prefs.md", @@ -50916,7 +50802,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "teams", - "weight": 535, "cookies": false, "type": "", "demo": "teams\/update-prefs.md", @@ -50962,8 +50847,8 @@ "prefs": { "type": "object", "description": "Prefs key-value JSON object.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -50998,7 +50883,6 @@ "x-appwrite": { "method": "list", "group": "files", - "weight": 545, "cookies": false, "type": "", "demo": "tokens\/list.md", @@ -51088,7 +50972,6 @@ "x-appwrite": { "method": "createFileToken", "group": "files", - "weight": 543, "cookies": false, "type": "", "demo": "tokens\/create-file-token.md", @@ -51173,7 +51056,6 @@ "x-appwrite": { "method": "get", "group": "tokens", - "weight": 544, "cookies": false, "type": "", "demo": "tokens\/get.md", @@ -51234,7 +51116,6 @@ "x-appwrite": { "method": "update", "group": "tokens", - "weight": 546, "cookies": false, "type": "", "demo": "tokens\/update.md", @@ -51306,7 +51187,6 @@ "x-appwrite": { "method": "delete", "group": "tokens", - "weight": 547, "cookies": false, "type": "", "demo": "tokens\/delete.md", @@ -51367,7 +51247,6 @@ "x-appwrite": { "method": "listEvents", "group": "events", - "weight": 1273, "cookies": false, "type": "", "demo": "usage\/list-events.md", @@ -51441,7 +51320,6 @@ "x-appwrite": { "method": "listGauges", "group": "gauges", - "weight": 1274, "cookies": false, "type": "", "demo": "usage\/list-gauges.md", @@ -51515,7 +51393,6 @@ "x-appwrite": { "method": "list", "group": "users", - "weight": 70, "cookies": false, "type": "", "demo": "users\/list.md", @@ -51599,7 +51476,6 @@ "x-appwrite": { "method": "create", "group": "users", - "weight": 61, "cookies": false, "type": "", "demo": "users\/create.md", @@ -51654,14 +51530,14 @@ "password": { "type": "string", "description": "Plain text user password. Must be at least 8 chars.", - "x-example": null, - "default": "" + "default": "", + "x-example": null }, "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -51698,7 +51574,6 @@ "x-appwrite": { "method": "createArgon2User", "group": "users", - "weight": 64, "cookies": false, "type": "", "demo": "users\/create-argon-2-user.md", @@ -51751,8 +51626,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -51791,7 +51666,6 @@ "x-appwrite": { "method": "createBcryptUser", "group": "users", - "weight": 62, "cookies": false, "type": "", "demo": "users\/create-bcrypt-user.md", @@ -51844,8 +51718,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -51882,7 +51756,6 @@ "x-appwrite": { "method": "listIdentities", "group": "identities", - "weight": 78, "cookies": false, "type": "", "demo": "users\/list-identities.md", @@ -51963,7 +51836,6 @@ "x-appwrite": { "method": "deleteIdentity", "group": "identities", - "weight": 102, "cookies": false, "type": "", "demo": "users\/delete-identity.md", @@ -52027,7 +51899,6 @@ "x-appwrite": { "method": "createMD5User", "group": "users", - "weight": 63, "cookies": false, "type": "", "demo": "users\/create-md-5-user.md", @@ -52080,8 +51951,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -52120,7 +51991,6 @@ "x-appwrite": { "method": "createPHPassUser", "group": "users", - "weight": 66, "cookies": false, "type": "", "demo": "users\/create-ph-pass-user.md", @@ -52173,8 +52043,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -52213,7 +52083,6 @@ "x-appwrite": { "method": "createScryptUser", "group": "users", - "weight": 67, "cookies": false, "type": "", "demo": "users\/create-scrypt-user.md", @@ -52295,8 +52164,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -52340,7 +52209,6 @@ "x-appwrite": { "method": "createScryptModifiedUser", "group": "users", - "weight": 68, "cookies": false, "type": "", "demo": "users\/create-scrypt-modified-user.md", @@ -52408,8 +52276,8 @@ "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -52451,7 +52319,6 @@ "x-appwrite": { "method": "createSHAUser", "group": "users", - "weight": 65, "cookies": false, "type": "", "demo": "users\/create-sha-user.md", @@ -52518,14 +52385,13 @@ "sha3-384", "sha3-512" ], - "x-enum-name": "PasswordHash", - "x-enum-keys": [] + "x-enum-name": "PasswordHash" }, "name": { "type": "string", "description": "User name. Max length: 128 chars.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -52562,7 +52428,6 @@ "x-appwrite": { "method": "get", "group": "users", - "weight": 71, "cookies": false, "type": "", "demo": "users\/get.md", @@ -52619,7 +52484,6 @@ "x-appwrite": { "method": "delete", "group": "users", - "weight": 100, "cookies": false, "type": "", "demo": "users\/delete.md", @@ -52683,7 +52547,6 @@ "x-appwrite": { "method": "updateEmail", "group": "users", - "weight": 85, "cookies": false, "type": "", "demo": "users\/update-email.md", @@ -52765,7 +52628,6 @@ "x-appwrite": { "method": "updateImpersonator", "group": "users", - "weight": 81, "cookies": false, "type": "", "demo": "users\/update-impersonator.md", @@ -52846,7 +52708,6 @@ "x-appwrite": { "method": "createJWT", "group": "sessions", - "weight": 103, "cookies": false, "type": "", "demo": "users\/create-jwt.md", @@ -52890,14 +52751,14 @@ "sessionId": { "type": "string", "description": "Session ID. Use the string 'recent' to use the most recent session. Defaults to the most recent session.", - "x-example": "<SESSION_ID>", - "default": "" + "default": "", + "x-example": "<SESSION_ID>" }, "duration": { "type": "integer", "description": "Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.", - "x-example": 0, "default": 900, + "x-example": 0, "format": "int32" } } @@ -52932,7 +52793,6 @@ "x-appwrite": { "method": "updateLabels", "group": "users", - "weight": 80, "cookies": false, "type": "", "demo": "users\/update-labels.md", @@ -53014,7 +52874,6 @@ "x-appwrite": { "method": "listLogs", "group": "logs", - "weight": 76, "cookies": false, "type": "", "demo": "users\/list-logs.md", @@ -53097,7 +52956,6 @@ "x-appwrite": { "method": "listMemberships", "group": "memberships", - "weight": 75, "cookies": false, "type": "", "demo": "users\/list-memberships.md", @@ -53191,7 +53049,6 @@ "x-appwrite": { "method": "updateMfa", "group": "users", - "weight": 90, "cookies": false, "type": "", "demo": "users\/update-mfa.md", @@ -53329,7 +53186,6 @@ "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", - "weight": 95, "cookies": false, "type": "", "demo": "users\/delete-mfa-authenticator.md", @@ -53434,7 +53290,6 @@ "totp" ], "x-enum-name": "AuthenticatorType", - "x-enum-keys": [], "in": "path" } ] @@ -53464,7 +53319,6 @@ "x-appwrite": { "method": "listMfaFactors", "group": "mfa", - "weight": 91, "cookies": false, "type": "", "demo": "users\/list-mfa-factors.md", @@ -53584,7 +53438,6 @@ "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", - "weight": 92, "cookies": false, "type": "", "demo": "users\/get-mfa-recovery-codes.md", @@ -53704,7 +53557,6 @@ "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", - "weight": 94, "cookies": false, "type": "", "demo": "users\/update-mfa-recovery-codes.md", @@ -53824,7 +53676,6 @@ "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", - "weight": 93, "cookies": false, "type": "", "demo": "users\/create-mfa-recovery-codes.md", @@ -53946,7 +53797,6 @@ "x-appwrite": { "method": "updateName", "group": "users", - "weight": 83, "cookies": false, "type": "", "demo": "users\/update-name.md", @@ -54027,7 +53877,6 @@ "x-appwrite": { "method": "updatePassword", "group": "users", - "weight": 84, "cookies": false, "type": "", "demo": "users\/update-password.md", @@ -54108,7 +53957,6 @@ "x-appwrite": { "method": "updatePhone", "group": "users", - "weight": 86, "cookies": false, "type": "", "demo": "users\/update-phone.md", @@ -54188,7 +54036,6 @@ "x-appwrite": { "method": "getPrefs", "group": "users", - "weight": 72, "cookies": false, "type": "", "demo": "users\/get-prefs.md", @@ -54250,7 +54097,6 @@ "x-appwrite": { "method": "updatePrefs", "group": "users", - "weight": 88, "cookies": false, "type": "", "demo": "users\/update-prefs.md", @@ -54294,8 +54140,8 @@ "prefs": { "type": "object", "description": "Prefs key-value JSON object.", - "x-example": "{}", - "default": {} + "default": {}, + "x-example": "{}" } }, "required": [ @@ -54330,7 +54176,6 @@ "x-appwrite": { "method": "listSessions", "group": "sessions", - "weight": 74, "cookies": false, "type": "", "demo": "users\/list-sessions.md", @@ -54404,7 +54249,6 @@ "x-appwrite": { "method": "createSession", "group": "sessions", - "weight": 96, "cookies": false, "type": "", "demo": "users\/create-session.md", @@ -54464,7 +54308,6 @@ "x-appwrite": { "method": "deleteSessions", "group": "sessions", - "weight": 99, "cookies": false, "type": "", "demo": "users\/delete-sessions.md", @@ -54526,7 +54369,6 @@ "x-appwrite": { "method": "deleteSession", "group": "sessions", - "weight": 98, "cookies": false, "type": "", "demo": "users\/delete-session.md", @@ -54601,7 +54443,6 @@ "x-appwrite": { "method": "updateStatus", "group": "users", - "weight": 79, "cookies": false, "type": "", "demo": "users\/update-status.md", @@ -54680,7 +54521,6 @@ "x-appwrite": { "method": "listTargets", "group": "targets", - "weight": 77, "cookies": false, "type": "", "demo": "users\/list-targets.md", @@ -54763,7 +54603,6 @@ "x-appwrite": { "method": "createTarget", "group": "targets", - "weight": 69, "cookies": false, "type": "", "demo": "users\/create-target.md", @@ -54818,8 +54657,7 @@ "sms", "push" ], - "x-enum-name": "MessagingProviderType", - "x-enum-keys": [] + "x-enum-name": "MessagingProviderType" }, "identifier": { "type": "string", @@ -54829,14 +54667,14 @@ "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", - "x-example": "<PROVIDER_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ID>" }, "name": { "type": "string", "description": "Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } }, "required": [ @@ -54873,7 +54711,6 @@ "x-appwrite": { "method": "getTarget", "group": "targets", - "weight": 73, "cookies": false, "type": "", "demo": "users\/get-target.md", @@ -54943,7 +54780,6 @@ "x-appwrite": { "method": "updateTarget", "group": "targets", - "weight": 89, "cookies": false, "type": "", "demo": "users\/update-target.md", @@ -54995,20 +54831,20 @@ "identifier": { "type": "string", "description": "The target identifier (token, email, phone etc.)", - "x-example": "<IDENTIFIER>", - "default": "" + "default": "", + "x-example": "<IDENTIFIER>" }, "providerId": { "type": "string", "description": "Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.", - "x-example": "<PROVIDER_ID>", - "default": "" + "default": "", + "x-example": "<PROVIDER_ID>" }, "name": { "type": "string", "description": "Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.", - "x-example": "<NAME>", - "default": "" + "default": "", + "x-example": "<NAME>" } } } @@ -55035,7 +54871,6 @@ "x-appwrite": { "method": "deleteTarget", "group": "targets", - "weight": 101, "cookies": false, "type": "", "demo": "users\/delete-target.md", @@ -55107,7 +54942,6 @@ "x-appwrite": { "method": "createToken", "group": "sessions", - "weight": 97, "cookies": false, "type": "", "demo": "users\/create-token.md", @@ -55151,15 +54985,15 @@ "length": { "type": "integer", "description": "Token length in characters. The default length is 6 characters", - "x-example": 4, "default": 6, + "x-example": 4, "format": "int32" }, "expire": { "type": "integer", "description": "Token expiration period in seconds. The default expiration is 15 minutes.", - "x-example": 60, "default": 900, + "x-example": 60, "format": "int32" } } @@ -55194,7 +55028,6 @@ "x-appwrite": { "method": "updateEmailVerification", "group": "users", - "weight": 87, "cookies": false, "type": "", "demo": "users\/update-email-verification.md", @@ -55275,7 +55108,6 @@ "x-appwrite": { "method": "updatePhoneVerification", "group": "users", - "weight": 82, "cookies": false, "type": "", "demo": "users\/update-phone-verification.md", @@ -55354,7 +55186,6 @@ "x-appwrite": { "method": "list", "group": "vectorsdb", - "weight": 924, "cookies": false, "type": "", "demo": "vectorsdb\/list.md", @@ -55429,7 +55260,6 @@ "x-appwrite": { "method": "create", "group": "vectorsdb", - "weight": 925, "cookies": false, "type": "", "demo": "vectorsdb\/create.md", @@ -55475,8 +55305,8 @@ "enabled": { "type": "boolean", "description": "Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -55514,7 +55344,6 @@ "x-appwrite": { "method": "createTextEmbeddings", "group": "documents", - "weight": 911, "cookies": false, "type": "", "demo": "vectorsdb\/create-text-embeddings.md", @@ -55586,13 +55415,12 @@ "model": { "type": "string", "description": "The embedding model to use for generating vector embeddings.", - "x-example": "embeddinggemma", "default": "embeddinggemma", + "x-example": "embeddinggemma", "enum": [ "embeddinggemma" ], - "x-enum-name": null, - "x-enum-keys": [] + "x-enum-name": "EmbeddingModel" } }, "required": [ @@ -55627,7 +55455,6 @@ "x-appwrite": { "method": "listTransactions", "group": "transactions", - "weight": 916, "cookies": false, "type": "", "demo": "vectorsdb\/list-transactions.md", @@ -55696,7 +55523,6 @@ "x-appwrite": { "method": "createTransaction", "group": "transactions", - "weight": 912, "cookies": false, "type": "", "demo": "vectorsdb\/create-transaction.md", @@ -55735,8 +55561,8 @@ "ttl": { "type": "integer", "description": "Seconds before the transaction expires.", - "x-example": 60, "default": 300, + "x-example": 60, "format": "int32" } } @@ -55769,7 +55595,6 @@ "x-appwrite": { "method": "getTransaction", "group": "transactions", - "weight": 913, "cookies": false, "type": "", "demo": "vectorsdb\/get-transaction.md", @@ -55834,7 +55659,6 @@ "x-appwrite": { "method": "updateTransaction", "group": "transactions", - "weight": 914, "cookies": false, "type": "", "demo": "vectorsdb\/update-transaction.md", @@ -55881,14 +55705,14 @@ "commit": { "type": "boolean", "description": "Commit transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "rollback": { "type": "boolean", "description": "Rollback transaction?", - "x-example": false, - "default": false + "default": false, + "x-example": false } } } @@ -55915,7 +55739,6 @@ "x-appwrite": { "method": "deleteTransaction", "group": "transactions", - "weight": 915, "cookies": false, "type": "", "demo": "vectorsdb\/delete-transaction.md", @@ -55982,7 +55805,6 @@ "x-appwrite": { "method": "createOperations", "group": "transactions", - "weight": 917, "cookies": false, "type": "", "demo": "vectorsdb\/create-operations.md", @@ -56029,8 +55851,8 @@ "operations": { "type": "array", "description": "Array of staged operations.", - "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "default": [], + "x-example": "[\n\t {\n\t \"action\": \"create\",\n\t \"databaseId\": \"<DATABASE_ID>\",\n\t \"collectionId\": \"<COLLECTION_ID>\",\n\t \"documentId\": \"<DOCUMENT_ID>\",\n\t \"data\": {\n\t \"name\": \"Walter O'Brien\"\n\t }\n\t }\n\t]", "items": { "type": "object" } @@ -56065,7 +55887,6 @@ "x-appwrite": { "method": "get", "group": "vectorsdb", - "weight": 886, "cookies": false, "type": "", "demo": "vectorsdb\/get.md", @@ -56127,7 +55948,6 @@ "x-appwrite": { "method": "update", "group": "vectorsdb", - "weight": 887, "cookies": false, "type": "", "demo": "vectorsdb\/update.md", @@ -56176,8 +55996,8 @@ "enabled": { "type": "boolean", "description": "Is database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -56207,7 +56027,6 @@ "x-appwrite": { "method": "delete", "group": "vectorsdb", - "weight": 926, "cookies": false, "type": "", "demo": "vectorsdb\/delete.md", @@ -56269,7 +56088,6 @@ "x-appwrite": { "method": "listCollections", "group": "collections", - "weight": 896, "cookies": false, "type": "", "demo": "vectorsdb\/list-collections.md", @@ -56361,7 +56179,6 @@ "x-appwrite": { "method": "createCollection", "group": "collections", - "weight": 892, "cookies": false, "type": "", "demo": "vectorsdb\/create-collection.md", @@ -56429,14 +56246,14 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -56473,7 +56290,6 @@ "x-appwrite": { "method": "getCollection", "group": "collections", - "weight": 893, "cookies": false, "type": "", "demo": "vectorsdb\/get-collection.md", @@ -56543,7 +56359,6 @@ "x-appwrite": { "method": "updateCollection", "group": "collections", - "weight": 894, "cookies": false, "type": "", "demo": "vectorsdb\/update-collection.md", @@ -56614,14 +56429,14 @@ "documentSecurity": { "type": "boolean", "description": "Enables configuring permissions for individual documents. A user needs one of document or collection level permissions to access a document. [Learn more about permissions](https:\/\/appwrite.io\/docs\/permissions).", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "enabled": { "type": "boolean", "description": "Is collection enabled? When set to 'disabled', users cannot access the collection but Server SDKs with and API key can still read and write to the collection. No data is lost when this is toggled.", - "x-example": false, - "default": true + "default": true, + "x-example": false } }, "required": [ @@ -56651,7 +56466,6 @@ "x-appwrite": { "method": "deleteCollection", "group": "collections", - "weight": 895, "cookies": false, "type": "", "demo": "vectorsdb\/delete-collection.md", @@ -56721,7 +56535,6 @@ "x-appwrite": { "method": "listDocuments", "group": "documents", - "weight": 906, "cookies": false, "type": "", "demo": "vectorsdb\/list-documents.md", @@ -56833,7 +56646,6 @@ "x-appwrite": { "method": "createDocument", "group": "documents", - "weight": 902, "cookies": false, "type": "", "demo": "vectorsdb\/create-document.md", @@ -56949,14 +56761,14 @@ "documentId": { "type": "string", "description": "Document ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.", - "x-example": "<DOCUMENT_ID>", - "default": "" + "default": "", + "x-example": "<DOCUMENT_ID>" }, "data": { "type": "object", "description": "Document data as JSON object.", - "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }", - "default": [] + "default": [], + "x-example": "{\"embeddings\": [0.12, -0.55, 0.88, 1.02], \"metadata\": {\"key\":\"value\"} }" }, "permissions": { "type": "array", @@ -56969,8 +56781,8 @@ "documents": { "type": "array", "description": "Array of documents data as JSON objects.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "object" } @@ -57010,7 +56822,6 @@ "x-appwrite": { "method": "upsertDocuments", "group": "documents", - "weight": 909, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-documents.md", @@ -57136,7 +56947,6 @@ "x-appwrite": { "method": "updateDocuments", "group": "documents", - "weight": 908, "cookies": false, "type": "", "demo": "vectorsdb\/update-documents.md", @@ -57188,14 +56998,14 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only attribute and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -57235,7 +57045,6 @@ "x-appwrite": { "method": "deleteDocuments", "group": "documents", - "weight": 910, "cookies": false, "type": "", "demo": "vectorsdb\/delete-documents.md", @@ -57287,8 +57096,8 @@ "queries": { "type": "array", "description": "Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https:\/\/appwrite.io\/docs\/queries). Maximum of 100 queries are allowed, each 4096 characters long.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string" } @@ -57328,7 +57137,6 @@ "x-appwrite": { "method": "getDocument", "group": "documents", - "weight": 905, "cookies": false, "type": "", "demo": "vectorsdb\/get-document.md", @@ -57429,7 +57237,6 @@ "x-appwrite": { "method": "upsertDocument", "group": "documents", - "weight": 904, "cookies": false, "type": "", "demo": "vectorsdb\/upsert-document.md", @@ -57525,8 +57332,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include all required fields of the document to be created or updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -57571,7 +57378,6 @@ "x-appwrite": { "method": "updateDocument", "group": "documents", - "weight": 903, "cookies": false, "type": "", "demo": "vectorsdb\/update-document.md", @@ -57634,8 +57440,8 @@ "data": { "type": "object", "description": "Document data as JSON object. Include only fields and value pairs to be updated.", - "x-example": "{}", - "default": [] + "default": [], + "x-example": "{}" }, "permissions": { "type": "array", @@ -57675,7 +57481,6 @@ "x-appwrite": { "method": "deleteDocument", "group": "documents", - "weight": 907, "cookies": false, "type": "", "demo": "vectorsdb\/delete-document.md", @@ -57770,7 +57575,6 @@ "x-appwrite": { "method": "listIndexes", "group": "indexes", - "weight": 901, "cookies": false, "type": "", "demo": "vectorsdb\/list-indexes.md", @@ -57861,7 +57665,6 @@ "x-appwrite": { "method": "createIndex", "group": "indexes", - "weight": 898, "cookies": false, "type": "", "demo": "vectorsdb\/create-index.md", @@ -57927,8 +57730,7 @@ "key", "unique" ], - "x-enum-name": "VectorsDBIndexType", - "x-enum-keys": [] + "x-enum-name": "VectorsDBIndexType" }, "attributes": { "type": "array", @@ -57941,23 +57743,22 @@ "orders": { "type": "array", "description": "Array of index orders. Maximum of 100 orders are allowed.", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "string", "enum": [ "asc", "desc" ], - "x-enum-name": "OrderBy", - "x-enum-keys": [] + "x-enum-name": "OrderBy" } }, "lengths": { "type": "array", "description": "Length of index. Maximum of 100", - "x-example": null, "default": [], + "x-example": null, "items": { "type": "integer" } @@ -57997,7 +57798,6 @@ "x-appwrite": { "method": "getIndex", "group": "indexes", - "weight": 899, "cookies": false, "type": "", "demo": "vectorsdb\/get-index.md", @@ -58069,7 +57869,6 @@ "x-appwrite": { "method": "deleteIndex", "group": "indexes", - "weight": 900, "cookies": false, "type": "", "demo": "vectorsdb\/delete-index.md", @@ -58146,7 +57945,6 @@ "x-appwrite": { "method": "list", "group": null, - "weight": 578, "cookies": false, "type": "", "demo": "webhooks\/list.md", @@ -58220,7 +58018,6 @@ "x-appwrite": { "method": "create", "group": null, - "weight": 577, "cookies": false, "type": "", "demo": "webhooks\/create.md", @@ -58278,26 +58075,26 @@ "enabled": { "type": "boolean", "description": "Enable or disable a webhook.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "tls": { "type": "boolean", "description": "Certificate verification, false for disabled or true for enabled.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "authUsername": { "type": "string", "description": "Webhook HTTP user. Max length: 256 chars.", - "x-example": "<AUTH_USERNAME>", - "default": "" + "default": "", + "x-example": "<AUTH_USERNAME>" }, "authPassword": { "type": "string", "description": "Webhook HTTP password. Max length: 256 chars.", - "x-example": "<AUTH_PASSWORD>", - "default": "" + "default": "", + "x-example": "<AUTH_PASSWORD>" }, "secret": { "type": "string", @@ -58341,7 +58138,6 @@ "x-appwrite": { "method": "get", "group": null, - "weight": 579, "cookies": false, "type": "", "demo": "webhooks\/get.md", @@ -58402,7 +58198,6 @@ "x-appwrite": { "method": "update", "group": null, - "weight": 581, "cookies": false, "type": "", "demo": "webhooks\/update.md", @@ -58463,26 +58258,26 @@ "enabled": { "type": "boolean", "description": "Enable or disable a webhook.", - "x-example": false, - "default": true + "default": true, + "x-example": false }, "tls": { "type": "boolean", "description": "Certificate verification, false for disabled or true for enabled.", - "x-example": false, - "default": false + "default": false, + "x-example": false }, "authUsername": { "type": "string", "description": "Webhook HTTP user. Max length: 256 chars.", - "x-example": "<AUTH_USERNAME>", - "default": "" + "default": "", + "x-example": "<AUTH_USERNAME>" }, "authPassword": { "type": "string", "description": "Webhook HTTP password. Max length: 256 chars.", - "x-example": "<AUTH_PASSWORD>", - "default": "" + "default": "", + "x-example": "<AUTH_PASSWORD>" } }, "required": [ @@ -58514,7 +58309,6 @@ "x-appwrite": { "method": "delete", "group": null, - "weight": 580, "cookies": false, "type": "", "demo": "webhooks\/delete.md", @@ -58577,7 +58371,6 @@ "x-appwrite": { "method": "updateSecret", "group": null, - "weight": 582, "cookies": false, "type": "", "demo": "webhooks\/update-secret.md", @@ -59382,6 +59175,35 @@ "executions": "" } }, + "projectList": { + "description": "Projects List", + "type": "object", + "properties": { + "total": { + "type": "integer", + "description": "Total number of projects that matched your query.", + "x-example": 5, + "format": "int32" + }, + "projects": { + "type": "array", + "description": "List of projects.", + "items": { + "type": "object", + "$ref": "#\/definitions\/project" + }, + "x-example": "" + } + }, + "required": [ + "total", + "projects" + ], + "example": { + "total": 5, + "projects": "" + } + }, "webhookList": { "description": "Webhooks List", "type": "object", @@ -66878,6 +66700,28 @@ "description": "Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests", "x-example": false }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all branches.", + "items": { + "type": "string" + }, + "x-example": [ + "main", + "feat\/*" + ] + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all file changes.", + "items": { + "type": "string" + }, + "x-example": [ + "src\/**", + "!docs\/**" + ] + }, "buildSpecification": { "type": "string", "description": "Machine specification for deployment builds.", @@ -66932,6 +66776,8 @@ "providerBranch", "providerRootDirectory", "providerSilentMode", + "providerBranches", + "providerPaths", "buildSpecification", "runtimeSpecification", "buildRuntime", @@ -66966,6 +66812,14 @@ "providerBranch": "main", "providerRootDirectory": "sites\/helloWorld", "providerSilentMode": false, + "providerBranches": [ + "main", + "feat\/*" + ], + "providerPaths": [ + "src\/**", + "!docs\/**" + ], "buildSpecification": "s-1vcpu-512mb", "runtimeSpecification": "s-1vcpu-512mb", "buildRuntime": "node-22", @@ -67132,6 +66986,28 @@ "description": "Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests", "x-example": false }, + "providerBranches": { + "type": "array", + "description": "List of branch name patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all branches.", + "items": { + "type": "string" + }, + "x-example": [ + "main", + "feat\/*" + ] + }, + "providerPaths": { + "type": "array", + "description": "List of file path patterns that trigger automatic deployments. Supports glob wildcards. Empty list deploys on all file changes.", + "items": { + "type": "string" + }, + "x-example": [ + "src\/**", + "!docs\/**" + ] + }, "buildSpecification": { "type": "string", "description": "Machine specification for deployment builds.", @@ -67172,6 +67048,8 @@ "providerBranch", "providerRootDirectory", "providerSilentMode", + "providerBranches", + "providerPaths", "buildSpecification", "runtimeSpecification" ], @@ -67204,6 +67082,14 @@ "providerBranch": "main", "providerRootDirectory": "functions\/helloWorld", "providerSilentMode": false, + "providerBranches": [ + "main", + "feat\/*" + ], + "providerPaths": [ + "src\/**", + "!docs\/**" + ], "buildSpecification": "s-1vcpu-512mb", "runtimeSpecification": "s-1vcpu-512mb" } @@ -72559,24 +72445,24 @@ "description": "Event ID.", "x-example": "5e5ea5c16897e" }, - "userType": { + "actorType": { "type": "string", - "description": "User type.", + "description": "Actor type.", "x-example": "user" }, - "userId": { + "actorId": { "type": "string", - "description": "User ID.", + "description": "Actor ID.", "x-example": "610fc2f985ee0" }, - "userEmail": { + "actorEmail": { "type": "string", - "description": "User Email.", + "description": "Actor Email.", "x-example": "john@appwrite.io" }, - "userName": { + "actorName": { "type": "string", - "description": "User Name.", + "description": "Actor Name.", "x-example": "John Doe" }, "resourceParent": { @@ -72717,10 +72603,10 @@ }, "required": [ "$id", - "userType", - "userId", - "userEmail", - "userName", + "actorType", + "actorId", + "actorEmail", + "actorName", "resourceParent", "resourceType", "resourceId", @@ -72751,10 +72637,10 @@ ], "example": { "$id": "5e5ea5c16897e", - "userType": "user", - "userId": "610fc2f985ee0", - "userEmail": "john@appwrite.io", - "userName": "John Doe", + "actorType": "user", + "actorId": "610fc2f985ee0", + "actorEmail": "john@appwrite.io", + "actorName": "John Doe", "resourceParent": "database\/ID", "resourceType": "collection", "resourceId": "610fc2f985ee0",